Package dtool.parser.common.LexElement

Examples of dtool.parser.common.LexElement.MissingLexElement


  }
 
  public MissingLexElement consumeSubChannelTokens(ParserError error) {
    // Missing element will consume whitetokens ahead
    LexElement la = lookAheadElement();
    MissingLexElement missingLexElement = new MissingLexElement(la.getStartPos(), error,
      la.getFullRangeStartPos(), la.relevantPrecedingSubChannelTokens);
    getEnabledLexSource().advanceSubChannelTokens();
    return missingLexElement;
  }
View Full Code Here

TOP

Related Classes of dtool.parser.common.LexElement.MissingLexElement

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.