( Class type, CallStack callstack, Interpreter interpreter )
| 50 | public void addUndefinedDimension() { numUndefinedDims++; } |
| 51 | |
| 52 | public Object eval( |
| 53 | Class type, CallStack callstack, Interpreter interpreter ) |
| 54 | throws EvalError |
| 55 | { |
| 56 | if ( Interpreter.DEBUG ) Interpreter.debug("array base type = "+type); |
| 57 | baseType = type; |
| 58 | return eval( callstack, interpreter ); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | Evaluate the structure of the array in one of two ways: |
nothing calls this directly
no test coverage detected