(String indent)
| 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 | } |
nothing calls this directly
no test coverage detected