()
| 107 | } |
| 108 | |
| 109 | public Object evaluate() { |
| 110 | try { |
| 111 | return executionContext().eval(program(), this.directEval); |
| 112 | } catch (SyntaxError e) { |
| 113 | throw new ThrowException(executionContext(), executionContext().createSyntaxError(e.getMessage())); |
| 114 | } catch (ParserException e) { |
| 115 | throw new ThrowException(executionContext(), e); |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | |
| 120 |
nothing calls this directly
no test coverage detected