Package dtool.ast.definitions

Examples of dtool.ast.definitions.TemplateTypeParam


      }
      if(defId == null && couldHaveBeenParsedAsId(ref)) {
        defId = convertRefIdToDef(ref);
        return conclude(sr, isVariadic ?
          new TemplateTupleParam(defId) :
          new TemplateTypeParam(defId, typeSpecialization, paramDefault.toReference().node));
      } else {
        defId = defId != null ? defId : createEmptyDefSymbol(ref.getEndPos());
        return conclude(sr,
          new TemplateValueParam(ref, defId, valueSpecialization, paramDefault.toExpression().node));
      }
View Full Code Here

TOP

Related Classes of dtool.ast.definitions.TemplateTypeParam

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.