Package dtool.ast.declarations

Examples of dtool.ast.declarations.DeclarationEmpty


    case CONCAT:
      if(lookAhead(1) == DeeTokens.KW_THIS)
        return parseDeclarationSpecialFunction();
      break;
    case SEMICOLON:
      return resultConclude(false, srOf(consumeLookAhead(), new DeclarationEmpty()));
    default:
      break;
    }
   
    if(lookAheadGrouped() == DeeTokens.GROUP_ATTRIBUTE_KW && shouldParseAsAttributeVsTypeModifier()) {
View Full Code Here


   
    public void parseAggregateBody() {
      ParseHelper parse = this;
      if(!parse.ruleBroken) {
        if(tryConsume(DeeTokens.SEMICOLON)) {
          declBody = concludeNode(srOf(lastLexElement(), new DeclarationEmpty()));
        } else {
          declBody = parse.parseRequiredRule(parseDeclarationBlock(), RULE_AGGR_BODY);
        }
      }
    }
View Full Code Here

TOP

Related Classes of dtool.ast.declarations.DeclarationEmpty

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.