Package org.eclipse.dltk.compiler.IElementRequestor

Examples of org.eclipse.dltk.compiler.IElementRequestor.TypeInfo


    typeInfo.superclasses = DeeSourceElementProvider.EMPTY_STRING;
    return typeInfo;
  }
 
  protected static TypeInfo createTypeInfoForDefinition(CommonDefinition node, int archetypeMask) {
    TypeInfo typeInfo = createTypeInfoForDefUnit(node, archetypeMask);
    setupDefinitionTypeInfo(node, typeInfo);
    return typeInfo;
  }
View Full Code Here


  public void endVisit(DefinitionAliasFragment node) {
    requestor.exitType(getDeclarationEndforNode(node));
  }
 
  public static TypeInfo createTypeInfoForFragment(DefinitionAliasFragment node) {
    TypeInfo typeInfo = createTypeInfoForDefUnit(node, DefElementFlagConstants.FLAG_KIND_ALIAS);
    if(node.getParent_Concrete().aliasFragments.get(0) == node) {
      typeInfo.declarationStart = node.getParent_Concrete().getStartPos();
      // TODO: test case for extended start pos (definition alias with extended start)
    }
    return typeInfo;
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.compiler.IElementRequestor.TypeInfo

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.