Exemplo n.º 1
0
 public static String[] getInstructions() {
   String[] is = new String[instructions.size()];
   int i = 0;
   for (AbstractInsnNode node : instructions) {
     is[i++] = NodePrinter.print(node);
   }
   return is;
 }
Exemplo n.º 2
0
 public static void log() {
   logger.debug("--- TRACE ---");
   int nodeIndex = 0;
   for (AbstractInsnNode node : instructions) {
     logger.debug("[{}] {}", nodeIndex++, NodePrinter.print(node));
   }
   logger.debug("-------------");
 }
Exemplo n.º 3
0
 public void print() {
   NodePrinter.printCSV(root);
 }