(int index)
| 270 | } |
| 271 | |
| 272 | public MethodVarInstance getVar(int index) { |
| 273 | if (index < 0 || index >= vars.length) throw new IllegalArgumentException("invalid var index: "+index); |
| 274 | |
| 275 | return vars[index]; |
| 276 | } |
| 277 | |
| 278 | public MethodVarInstance getVar(String id) { |
| 279 | return getVar(Integer.parseInt(id)); |
no test coverage detected