(STWriter out, InstanceScope scope, int strIndex)
| 615 | } |
| 616 | |
| 617 | protected void indent(STWriter out, InstanceScope scope, int strIndex) { |
| 618 | String indent = scope.st.impl.strings[strIndex]; |
| 619 | if ( debug ) { |
| 620 | int start = out.index(); // track char we're about to write |
| 621 | EvalExprEvent e = new IndentEvent(scope, start, start+indent.length()-1, getExprStartChar(scope), getExprStopChar(scope)); |
| 622 | trackDebugEvent(scope, e); |
| 623 | } |
| 624 | out.pushIndentation(indent); |
| 625 | } |
| 626 | |
| 627 | /** Write out an expression result that doesn't use expression options. |
| 628 | * E.g., {@code <name>} |
no test coverage detected