(String source)
| 95 | } |
| 96 | |
| 97 | public Object evaluate(String source) { |
| 98 | return newRunner().withContext( this.defaultExecutionContext ).withSource(source).evaluate(); |
| 99 | } |
| 100 | |
| 101 | public Object evaluate(InputStream in) { |
| 102 | return newRunner().withContext( this.defaultExecutionContext ).withSource(new InputStreamReader(in)).evaluate(); |