List of usage examples for org.objectweb.asm.tree ParameterNode ParameterNode
public ParameterNode(final String name, final int access)
From source file:org.hua.ast.visitors.BytecodeGeneratorASTVisitor.java
@Override public void visit(ParameterDeclaration node) throws ASTVisitorException { node.getType().accept(this); //is the access flag private? mn.parameters.add(new ParameterNode(node.getIdentifier(), Opcodes.ACC_PRIVATE)); System.out.println("hereeeee " + node.getIdentifier()); }