argType == short.class ||
argType == int.class) {
method.iload(nextIndex);
nextIndex++;
} else if (argType == long.class) {
method.lload(nextIndex);
nextIndex += 2;
} else if (argType == float.class) {
method.fload(nextIndex);
nextIndex++;
} else if (argType == double.class) {