Package net.sourceforge.chaperon.grammar.token.definition

Examples of net.sourceforge.chaperon.grammar.token.definition.EndOfFile


   * Creates a empty grammar
   * Only EOF is definied as token.
   */
  public Grammar()
  {
    _tokenlist.addToken(new Token(TerminalSymbol.valueOf("EOF"), new EndOfFile()));

    _tokenlist.setOwner(this);
    //_universaltokenlist.setOwner(this);
    _ignorabletokenlist.setOwner(this);

View Full Code Here

TOP

Related Classes of net.sourceforge.chaperon.grammar.token.definition.EndOfFile

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.