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

Method disasm

output/java8/1.4.12/CompiledST.java:260–271  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

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