Java Code Examples for org.objectweb.asm.util.ASMifier#main()

The following examples show how to use org.objectweb.asm.util.ASMifier#main() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: JO.java    From groovy with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
        ASMifier.main(new String[]{"target/classes/groovy/swing/SwingBuilder.class"});
//        ASMifierClassVisitor.main(new String[]{"target/classes/org/codehaus/groovy/runtime/callsite/PogoMetaMethodSite.class"});
//        ASMifierClassVisitor.main(new String[]{"target/test-classes/spectralnorm.class"});
//        ASMifierClassVisitor.main(new String[]{"target/test-classes/groovy/bugs/CustomMetaClassTest.class"});
    }
 
Example 2
Source File: ASMTest.java    From attic-polygene-java with Apache License 2.0 4 votes vote down vote up
@Test
public void generateASM()
    throws Exception
{
    ASMifier.main( new String[]{ SomeMixin_Stubx.class.getName() } );
}
 
Example 3
Source File: ASMSource.java    From beetl2.0 with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
/**
 * @param args
 */
public static void main(String[] args) throws Exception {
	// TODO Auto-generated method stub
	ASMifier.main(new String[] { "org.beetl.performance.lab.asm.PrivateTestGet" });

}
 
Example 4
Source File: ASMSource.java    From beetl2.0 with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
/**
 * @param args
 */
public static void main(String[] args) throws Exception {
	// TODO Auto-generated method stub
	ASMifier.main(new String[] { "com.beetl.performance.lab.asm.field.UserIdFiledAccess" });

}
 
Example 5
Source File: ASMSource.java    From beetl2.0 with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
/**
 * @param args
 */
public static void main(String[] args) throws Exception {
	// TODO Auto-generated method stub
	ASMifier.main(new String[] { "org.beetl.performance.lab.asm.PrivateTestGet" });

}
 
Example 6
Source File: ASMSource.java    From beetl2.0 with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
/**
 * @param args
 */
public static void main(String[] args) throws Exception {
	// TODO Auto-generated method stub
	ASMifier.main(new String[] { "com.beetl.performance.lab.asm.field.UserIdFiledAccess" });

}