@return the i-th argument of the invocation. @throws IndexOutOfBoundsException if the index is out of range (index < 0 || index ≥ getArgCount())
(int i)
| 75 | * (index < 0 || index ≥ getArgCount()) |
| 76 | */ |
| 77 | public Var getArg(int i) { |
| 78 | return args.get(i); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * @return a list of arguments of the invocation. |
no test coverage detected