( CallStack callstack, Interpreter interpreter)
| 31 | public BSHSwitchLabel(int id) { super(id); } |
| 32 | |
| 33 | public Object eval( |
| 34 | CallStack callstack, Interpreter interpreter) throws EvalError |
| 35 | { |
| 36 | if ( isDefault ) |
| 37 | return null; // should probably error |
| 38 | SimpleNode label = ((SimpleNode)jjtGetChild(0)); |
| 39 | return label.eval( callstack, interpreter ); |
| 40 | } |
| 41 | } |
no test coverage detected