Generates the instruction to load the given method argument on the stack. @param arg the index of a method argument.
(final int arg)
| 494 | * @param arg the index of a method argument. |
| 495 | */ |
| 496 | public void loadArg(final int arg) { |
| 497 | loadInsn(argumentTypes[arg], getArgIndex(arg)); |
| 498 | } |
| 499 | |
| 500 | /** |
| 501 | * Generates the instructions to load the given method arguments on the stack. |
no test coverage detected