MCPcopy Create free account
hub / github.com/antlr/codebuff / disasm

Method disasm

output/java/1.4.13/CompiledST.java:247–258  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

245 }
246
247 public String disasm() {
248 BytecodeDisassembler dis = new BytecodeDisassembler(this);
249 StringWriter sw = new StringWriter();
250 PrintWriter pw = new PrintWriter(sw);
251 pw.println(dis.disassemble());
252 pw.println("Strings:");
253 pw.println(dis.strings());
254 pw.println("Bytecode to template map:");
255 pw.println(dis.sourceMap());
256 pw.close();
257 return sw.toString();
258 }
259}

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