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