( CallStack callstack, Interpreter interpreter)
| 70 | } |
| 71 | |
| 72 | public LHS toLHS( CallStack callstack, Interpreter interpreter) |
| 73 | throws EvalError |
| 74 | { |
| 75 | try { |
| 76 | return getName( callstack.top() ).toLHS( callstack, interpreter ); |
| 77 | } catch ( UtilEvalError e ) { |
| 78 | throw e.toEvalError( this, callstack ); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | /* |
| 83 | The interpretation of an ambiguous name is context sensitive. |
nothing calls this directly
no test coverage detected