Write out an expression result that doesn't use expression options. E.g.,
(STWriter out, InstanceScope scope, Object o)
| 661 | */ |
| 662 | |
| 663 | protected int writeObjectNoOptions(STWriter out, InstanceScope scope, Object o) { |
| 664 | int start = out.index(); // track char we're about to write |
| 665 | int n = writeObject(out, scope, o, null); |
| 666 | if ( debug ) { |
| 667 | EvalExprEvent e = new EvalExprEvent(scope, start, out.index()-1, getExprStartChar(scope), getExprStopChar(scope)); |
| 668 | trackDebugEvent(scope, e); |
| 669 | } |
| 670 | return n; |
| 671 | } |
| 672 | |
| 673 | /** Write out an expression result that uses expression options. |
| 674 | * E.g., {@code <names; separator=", ">} |
no test coverage detected