Package com.strobel.assembler.metadata

Examples of com.strobel.assembler.metadata.MethodDefinition


  }
 
  @Override
  public Void visitConstructorDeclaration( ConstructorDeclaration node, SourceIndex index )
  {
    MethodDefinition def = node.getUserData( Keys.METHOD_DEFINITION );
    ClassEntry classEntry = new ClassEntry( def.getDeclaringType().getInternalName() );
    ConstructorEntry constructorEntry = new ConstructorEntry( classEntry, def.getSignature() );
    index.addDeclaration( node.getNameToken(), constructorEntry );
    return node.acceptVisitor( new SourceIndexBehaviorVisitor( constructorEntry ), index );
  }
View Full Code Here

TOP

Related Classes of com.strobel.assembler.metadata.MethodDefinition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.