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