Package wyrl.core.SpecFile

Examples of wyrl.core.SpecFile.Decl


        matchEndLine();
      } else {
        Token lookahead = tokens.get(index);

        if(lookahead.text.equals("include")) {
          Decl id = parseIncludeDecl();
          // id can be null if the included file was already included
          // elsewhere.
          if(id != null) { decls.add(id); }
        } else if(lookahead.text.equals("term")) {
          decls.add(parseTermDecl());
View Full Code Here

TOP

Related Classes of wyrl.core.SpecFile.Decl

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.