( CallStack callstack, Interpreter interpreter)
| 34 | BSHBlock(int id) { super(id); } |
| 35 | |
| 36 | public Object eval( CallStack callstack, Interpreter interpreter) |
| 37 | throws EvalError |
| 38 | { |
| 39 | return eval( callstack, interpreter, false ); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | @param overrideNamespace if set to true the block will be executed |
no test coverage detected