List of usage examples for org.objectweb.asm.util Printer TYPES
String[] TYPES
To view the source code for org.objectweb.asm.util Printer TYPES.
Click Source Link
From source file:org.evosuite.graphs.cfg.ASMWrapper.java
License:Open Source License
/** * <p>//from w w w . ja v a 2 s . c om * getType * </p> * * @return a {@link java.lang.String} object. */ public String getType() { // TODO explain String type = ""; if (asmNode.getType() >= 0 && asmNode.getType() < Printer.TYPES.length) type = Printer.TYPES[asmNode.getType()]; return type; }