Package dtool.ast.references

Examples of dtool.ast.references.AutoReference


    if(pickedNode instanceof DefSymbol) {
      relevantElementForDoc = ((DefSymbol) pickedNode).getDefUnit();
    } else if(pickedNode instanceof NamedReference) {
      relevantElementForDoc = ((NamedReference) pickedNode).findTargetDefElement(mr);
    } else if(pickedNode instanceof AutoReference) {
      AutoReference autoReference = (AutoReference) pickedNode;
      return getDDocHTMLViewForAutoLike(mr, autoReference.getParent_());
    } else if(pickedNode instanceof AttribBasic) {
      AttribBasic attribBasic = (AttribBasic) pickedNode;
      if(attribBasic.attribKind == AttributeKinds.AUTO) {
        if(attribBasic.getParent() instanceof DeclarationAttrib) {
          DeclarationAttrib declAttrib = (DeclarationAttrib) attribBasic.getParent();
View Full Code Here


    return null// An exp will be parsed instead
  }
 
  public AutoReference parseAutoReference() {
    LexElement autoToken = consumeLookAhead(DeeTokens.KW_AUTO);
    return conclude(srOf(autoToken, new AutoReference()));
  }
View Full Code Here

TOP

Related Classes of dtool.ast.references.AutoReference

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.