()
| 239 | } |
| 240 | |
| 241 | public void dump() { |
| 242 | BytecodeDisassembler dis = new BytecodeDisassembler(this); |
| 243 | System.out.println(name+":"); |
| 244 | System.out.println(dis.disassemble()); |
| 245 | System.out.println("Strings:"); |
| 246 | System.out.println(dis.strings()); |
| 247 | System.out.println("Bytecode to template map:"); |
| 248 | System.out.println(dis.sourceMap()); |
| 249 | } |
| 250 | |
| 251 | public String disasm() { |
| 252 | BytecodeDisassembler dis = new BytecodeDisassembler(this); |
no test coverage detected