( CallStack callstack, Interpreter interpreter )
| 33 | BSHArrayInitializer(int id) { super(id); } |
| 34 | |
| 35 | public Object eval( CallStack callstack, Interpreter interpreter ) |
| 36 | throws EvalError |
| 37 | { |
| 38 | throw new EvalError( "Array initializer has no base type.", |
| 39 | this, callstack ); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | Construct the array from the initializer syntax. |
nothing calls this directly
no test coverage detected