Write out an expression result that doesn't use expression options. E.g.,
(STWriter out, InstanceScope scope, Object o)
| 622 | */ |
| 623 | |
| 624 | protected int writeObjectNoOptions(STWriter out, InstanceScope scope, Object o) { |
| 625 | int start = out.index(); // track char we're about to write |
| 626 | int n = writeObject(out, scope, o, null); |
| 627 | if ( debug ) { |
| 628 | EvalExprEvent e = new EvalExprEvent(scope, start, out.index()-1, getExprStartChar(scope), getExprStopChar(scope)); |
| 629 | trackDebugEvent(scope, e); |
| 630 | } |
| 631 | return n; |
| 632 | } |
| 633 | |
| 634 | /** Write out an expression result that uses expression options. |
| 635 | * E.g., {@code <names; separator=", ">} |
no test coverage detected