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