(int index)
| 260 | } |
| 261 | |
| 262 | public MethodVarInstance getArg(int index) { |
| 263 | if (index < 0 || index >= args.length) throw new IllegalArgumentException("invalid arg index: "+index); |
| 264 | |
| 265 | return args[index]; |
| 266 | } |
| 267 | |
| 268 | public MethodVarInstance getArg(String id) { |
| 269 | return getArg(Integer.parseInt(id)); |
no outgoing calls
no test coverage detected