List of usage examples for org.objectweb.asm.util Textifier subclass-usage
From source file com.github.anba.es6draft.compiler.assembler.SimpleTypeTextifier.java
/** * Modified {@link Textifier} to strip package names from class names. */ public final class SimpleTypeTextifier extends Textifier { public SimpleTypeTextifier() { super(Opcodes.ASM5);
From source file de.tuberlin.uebb.jbop.optimizer.utils.ClassNodeBuilderTextifier.java
/** * The Class ClassNodeBuilderTextifier. * * @author Christopher Ewest */ class ClassNodeBuilderTextifier extends Textifier {
From source file de.tuberlin.uebb.jbop.optimizer.utils.ExtendedTextifier.java
/** * The Class ExtendedTextifier. * * @author Christopher Ewest */ class ExtendedTextifier extends Textifier {
From source file nova.core.wrapper.mc.forge.v17.asm.lib.InsnListPrinter.java
public class InsnListPrinter extends Textifier { private boolean buildingLabelMap = false; public InsnListPrinter() { super(Opcodes.ASM5); }
From source file nova.core.wrapper.mc.forge.v18.asm.lib.InsnListPrinter.java
public class InsnListPrinter extends Textifier { private boolean buildingLabelMap = false; public InsnListPrinter() { super(Opcodes.ASM5); }
From source file org.codehaus.groovy.classgen.asm.util.LoggableTextifier.java
/** * Logging bytecode generation, which can make debugging easy * * @since 2.5.0 */ public class LoggableTextifier extends Textifier {