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

Method disasm

output/java/1.4.19/CompiledST.java:251–262  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

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