Evaluate the type.
( CallStack callstack, Interpreter interpreter)
| 53 | Evaluate the type. |
| 54 | */ |
| 55 | public Object eval( CallStack callstack, Interpreter interpreter) |
| 56 | throws EvalError |
| 57 | { |
| 58 | if ( jjtGetNumChildren() > 0 ) |
| 59 | type = ((BSHType)jjtGetChild(0)).getType( callstack, interpreter ); |
| 60 | else |
| 61 | type = UNTYPED; |
| 62 | |
| 63 | return type; |
| 64 | } |
| 65 | } |
| 66 |
no test coverage detected