MCPcopy Index your code
hub / github.com/antlr/codebuff / disasm

Method disasm

output/java8/1.4.17/CompiledST.java:264–275  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

262
263
264 public String disasm() {
265 BytecodeDisassembler dis = new BytecodeDisassembler(this);
266 StringWriter sw = new StringWriter();
267 PrintWriter pw = new PrintWriter(sw);
268 pw.println(dis.disassemble());
269 pw.println("Strings:");
270 pw.println(dis.strings());
271 pw.println("Bytecode to template map:");
272 pw.println(dis.sourceMap());
273 pw.close();
274 return sw.toString();
275 }
276}

Callers 2

openMethod · 0.45
updateCurrentSTMethod · 0.45

Calls 5

disassembleMethod · 0.95
stringsMethod · 0.95
sourceMapMethod · 0.95
toStringMethod · 0.65
closeMethod · 0.45

Tested by

no test coverage detected