MCPcopy Create free account
hub / github.com/dynjs/dynjs / dump

Method dump

src/main/java/org/dynjs/ir/representations/BasicBlock.java:120–128  ·  view source on GitHub ↗
(String indent)

Source from the content-addressed store, hash-verified

118 }
119
120 public String dump(String indent) {
121 StringBuilder buf = new StringBuilder(indent + toString() + "\n");
122
123 for (Instruction instr : getInstructions()) {
124 buf.append(instr.dump(indent + " ")).append('\n');
125 }
126
127 return buf.toString();
128 }
129}

Callers

nothing calls this directly

Calls 4

toStringMethod · 0.95
getInstructionsMethod · 0.95
appendMethod · 0.80
dumpMethod · 0.65

Tested by

no test coverage detected