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