Package dtool.ast.declarations.ImportSelective

Examples of dtool.ast.declarations.ImportSelective.IImportSelectiveSelection


  public ImportSelective parseSelectiveModuleImport(IImportFragment fragment) {
    ParseHelper parse = new ParseHelper(fragment.asNode());
    ArrayList<IImportSelectiveSelection> selFragments = new ArrayList<IImportSelectiveSelection>();
   
    do {
      IImportSelectiveSelection importSelSelection = parseImportSelectiveSelection();
      selFragments.add(importSelSelection);
     
    } while(tryConsume(DeeTokens.COMMA));
   
    return parse.conclude(new ImportSelective(fragment, arrayView(selFragments)));
View Full Code Here

TOP

Related Classes of dtool.ast.declarations.ImportSelective.IImportSelectiveSelection

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.