public void process(@NotNull ParserClassNode classNode, @NotNull RuleMethod method) throws Exception {
// replace all method code with a simple call to the super method
method.instructions.clear();
method.instructions.add(new VarInsnNode(ALOAD, 0));
method.instructions.add(createArgumentLoaders(method.desc));
method.instructions.add(new MethodInsnNode(INVOKESPECIAL,
classNode.getParentType().getInternalName(), method.name, method.desc));
method.instructions.add(new InsnNode(ARETURN));
}