(String source)
| 91 | // ---------------------------------------------------------------------- |
| 92 | |
| 93 | public Object execute(String source) { |
| 94 | return newRunner().withContext( this.defaultExecutionContext ).withSource(source).execute(); |
| 95 | } |
| 96 | |
| 97 | public Object evaluate(String source) { |
| 98 | return newRunner().withContext( this.defaultExecutionContext ).withSource(source).evaluate(); |
nothing calls this directly
no test coverage detected