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