(int offset, int depth)
| 24 | } |
| 25 | |
| 26 | public Object getVar(int offset, int depth) { |
| 27 | if (depth == 0) return vars[offset]; |
| 28 | |
| 29 | return getParent().getVar(offset, depth - 1); |
| 30 | } |
| 31 | |
| 32 | public void setVar(int offset, int depth, Object value) { |
| 33 | if (depth == 0) { |