()
| 94 | } |
| 95 | |
| 96 | public NameSpace pop() { |
| 97 | try { |
| 98 | return stack.pop(); |
| 99 | } catch(EmptyStackException e) { |
| 100 | throw new InterpreterError("pop on empty CallStack"); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | Swap in the value as the new top of the stack and return the old |
no outgoing calls
no test coverage detected