(STWriter out, InstanceScope scope, int strIndex)
| 656 | } |
| 657 | |
| 658 | protected void indent(STWriter out, InstanceScope scope, int strIndex) { |
| 659 | String indent = scope.st.impl.strings[strIndex]; |
| 660 | if ( debug ) { |
| 661 | int start = out.index(); // track char we're about to write |
| 662 | EvalExprEvent e = new IndentEvent(scope, start, start+indent.length()-1, getExprStartChar(scope), getExprStopChar(scope)); |
| 663 | trackDebugEvent(scope, e); |
| 664 | } |
| 665 | out.pushIndentation(indent); |
| 666 | } |
| 667 | |
| 668 | /** Write out an expression result that doesn't use expression options. |
| 669 | * E.g., {@code <name>} |
no test coverage detected