⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 javacc.jj

📁 java 编译器java复杂编译器,可以编译java文件的类库
💻 JJ
📖 第 1 页 / 共 2 页
字号:
/* * Copyright © 2002 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * California 95054, U.S.A. All rights reserved.  Sun Microsystems, Inc. has * intellectual property rights relating to technology embodied in the product * that is described in this document. In particular, and without limitation, * these intellectual property rights may include one or more of the U.S. * patents listed at http://www.sun.com/patents and one or more additional * patents or pending patent applications in the U.S. and in other countries. * U.S. Government Rights - Commercial software. Government users are subject * to the Sun Microsystems, Inc. standard license agreement and applicable * provisions of the FAR and its supplements.  Use is subject to license terms. * Sun,  Sun Microsystems,  the Sun logo and  Java are trademarks or registered * trademarks of Sun Microsystems, Inc. in the U.S. and other countries.  This * product is covered and controlled by U.S. Export Control laws and may be * subject to the export or import laws in other countries.  Nuclear, missile, * chemical biological weapons or nuclear maritime end uses or end users, * whether direct or indirect, are strictly prohibited.  Export or reexport * to countries subject to U.S. embargo or to entities identified on U.S. * export exclusion lists, including, but not limited to, the denied persons * and specially designated nationals lists is strictly prohibited. */options {  JAVA_UNICODE_ESCAPE = true;}PARSER_BEGIN(JavaCCParser)public class JavaCCParser {  public static void main(String args[]) {    JavaCCParser parser;    if (args.length == 0) {      System.out.println("JavaCC Parser:  Reading from standard input . . .");      parser = new JavaCCParser(System.in);    } else if (args.length == 1) {      System.out.println("JavaCC Parser:  Reading from file " + args[0] + " . . .");      try {        parser = new JavaCCParser(new java.io.FileInputStream(args[0]));      } catch (java.io.FileNotFoundException e) {        System.out.println("JavaCC Parser:  File " + args[0] + " not found.");        return;      }    } else {      System.out.println("JavaCC Parser:  Usage is one of:");      System.out.println("         java JavaCCParser < inputfile");      System.out.println("OR");      System.out.println("         java JavaCCParser inputfile");      return;    }    try {      parser.javacc_input();      System.out.println("JavaCC Parser:  Java program parsed successfully.");    } catch (ParseException e) {      System.out.println(e.getMessage());      System.out.println("JavaCC Parser:  Encountered errors during parse.");    }  }  /*   * Returns true if the next token is not in the FOLLOW list of "expansion".   * It is used to decide when the end of an "expansion" has been reached.   */  static private boolean notTailOfExpansionUnit() {    Token t;    t = getToken(1);    if (t.kind == BIT_OR || t.kind == COMMA || t.kind == RPAREN || t.kind == RBRACE || t.kind == RBRACKET) return false;    return true;  }}PARSER_END(JavaCCParser)/********************************************** * THE JAVACC TOKEN SPECIFICATION STARTS HERE * **********************************************//* JAVACC RESERVED WORDS: These are the only tokens in JavaCC but not in Java */TOKEN :{  < _OPTIONS: "options" >| < _LOOKAHEAD: "LOOKAHEAD" >| < _IGNORE_CASE: "IGNORE_CASE" >| < _PARSER_BEGIN: "PARSER_BEGIN" >| < _PARSER_END: "PARSER_END" >| < _JAVACODE: "JAVACODE" >| < _TOKEN: "TOKEN" >| < _SPECIAL_TOKEN: "SPECIAL_TOKEN" >| < _MORE: "MORE" >| < _SKIP: "SKIP" >| < _TOKEN_MGR_DECLS: "TOKEN_MGR_DECLS" >| < _EOF: "EOF" >}/* * The remainder of the tokens are exactly (except for the removal of tokens * containing ">>" and "<<") as in the Java grammar and must be diff equivalent * (again with the exceptions above) to it. *//* WHITE SPACE */SKIP :{  " "| "\t"| "\n"| "\r"| "\f"}/* COMMENTS */MORE :{  "//" : IN_SINGLE_LINE_COMMENT|  <"/**" ~["/"]> { input_stream.backup(1); } : IN_FORMAL_COMMENT|  "/*" : IN_MULTI_LINE_COMMENT}<IN_SINGLE_LINE_COMMENT>SPECIAL_TOKEN :{  <SINGLE_LINE_COMMENT: "\n" | "\r" | "\r\n" > : DEFAULT}<IN_FORMAL_COMMENT>SPECIAL_TOKEN :{  <FORMAL_COMMENT: "*/" > : DEFAULT}<IN_MULTI_LINE_COMMENT>SPECIAL_TOKEN :{  <MULTI_LINE_COMMENT: "*/" > : DEFAULT}<IN_SINGLE_LINE_COMMENT,IN_FORMAL_COMMENT,IN_MULTI_LINE_COMMENT>MORE :{  < ~[] >}/* JAVA RESERVED WORDS AND LITERALS */TOKEN :{  < ABSTRACT: "abstract" >| < BOOLEAN: "boolean" >| < BREAK: "break" >| < BYTE: "byte" >| < CASE: "case" >| < CATCH: "catch" >| < CHAR: "char" >| < CLASS: "class" >| < CONST: "const" >| < CONTINUE: "continue" >| < _DEFAULT: "default" >| < DO: "do" >| < DOUBLE: "double" >| < ELSE: "else" >| < EXTENDS: "extends" >| < FALSE: "false" >| < FINAL: "final" >| < FINALLY: "finally" >| < FLOAT: "float" >| < FOR: "for" >| < GOTO: "goto" >| < IF: "if" >| < IMPLEMENTS: "implements" >| < IMPORT: "import" >| < INSTANCEOF: "instanceof" >| < INT: "int" >| < INTERFACE: "interface" >| < LONG: "long" >| < NATIVE: "native" >| < NEW: "new" >| < NULL: "null" >| < PACKAGE: "package">| < PRIVATE: "private" >| < PROTECTED: "protected" >| < PUBLIC: "public" >| < RETURN: "return" >| < SHORT: "short" >| < STATIC: "static" >| < SUPER: "super" >| < SWITCH: "switch" >| < SYNCHRONIZED: "synchronized" >| < THIS: "this" >| < THROW: "throw" >| < THROWS: "throws" >| < TRANSIENT: "transient" >| < TRUE: "true" >| < TRY: "try" >| < VOID: "void" >| < VOLATILE: "volatile" >| < WHILE: "while" >}/* JAVA LITERALS */TOKEN :{  < INTEGER_LITERAL:        <DECIMAL_LITERAL> (["l","L"])?      | <HEX_LITERAL> (["l","L"])?      | <OCTAL_LITERAL> (["l","L"])?  >|  < #DECIMAL_LITERAL: ["1"-"9"] (["0"-"9"])* >|  < #HEX_LITERAL: "0" ["x","X"] (["0"-"9","a"-"f","A"-"F"])+ >|  < #OCTAL_LITERAL: "0" (["0"-"7"])* >|  < FLOATING_POINT_LITERAL:        (["0"-"9"])+ "." (["0"-"9"])* (<EXPONENT>)? (["f","F","d","D"])?      | "." (["0"-"9"])+ (<EXPONENT>)? (["f","F","d","D"])?      | (["0"-"9"])+ <EXPONENT> (["f","F","d","D"])?      | (["0"-"9"])+ (<EXPONENT>)? ["f","F","d","D"]  >|  < #EXPONENT: ["e","E"] (["+","-"])? (["0"-"9"])+ >|  < CHARACTER_LITERAL:      "'"      (   (~["'","\\","\n","\r"])        | ("\\"            ( ["n","t","b","r","f","\\","'","\""]            | ["0"-"7"] ( ["0"-"7"] )?            | ["0"-"3"] ["0"-"7"] ["0"-"7"]            )          )      )      "'"  >|  < STRING_LITERAL:      "\""      (   (~["\"","\\","\n","\r"])        | ("\\"            ( ["n","t","b","r","f","\\","'","\""]            | ["0"-"7"] ( ["0"-"7"] )?            | ["0"-"3"] ["0"-"7"] ["0"-"7"]            )          )      )*      "\""  >}/* IDENTIFIERS */TOKEN :{  < IDENTIFIER: <LETTER> (<LETTER>|<DIGIT>)* >|  < #LETTER:      [       "\u0024",       "\u0041"-"\u005a",       "\u005f",       "\u0061"-"\u007a",       "\u00c0"-"\u00d6",       "\u00d8"-"\u00f6",       "\u00f8"-"\u00ff",       "\u0100"-"\u1fff",       "\u3040"-"\u318f",       "\u3300"-"\u337f",       "\u3400"-"\u3d2d",       "\u4e00"-"\u9fff",       "\uf900"-"\ufaff"      ]  >|  < #DIGIT:      [       "\u0030"-"\u0039",       "\u0660"-"\u0669",       "\u06f0"-"\u06f9",       "\u0966"-"\u096f",       "\u09e6"-"\u09ef",       "\u0a66"-"\u0a6f",       "\u0ae6"-"\u0aef",       "\u0b66"-"\u0b6f",       "\u0be7"-"\u0bef",       "\u0c66"-"\u0c6f",       "\u0ce6"-"\u0cef",       "\u0d66"-"\u0d6f",       "\u0e50"-"\u0e59",       "\u0ed0"-"\u0ed9",       "\u1040"-"\u1049"      ]  >}/* SEPARATORS */TOKEN :{  < LPAREN: "(" >| < RPAREN: ")" >| < LBRACE: "{" >| < RBRACE: "}" >| < LBRACKET: "[" >| < RBRACKET: "]" >| < SEMICOLON: ";" >| < COMMA: "," >| < DOT: "." >}/* OPERATORS */TOKEN :{  < ASSIGN: "=" >| < GT: ">" >| < LT: "<" >| < BANG: "!" >| < TILDE: "~" >| < HOOK: "?" >| < COLON: ":" >| < EQ: "==" >| < LE: "<=" >| < GE: ">=" >| < NE: "!=" >| < SC_OR: "||" >| < SC_AND: "&&" >| < INCR: "++" >| < DECR: "--" >| < PLUS: "+" >| < MINUS: "-" >| < STAR: "*" >| < SLASH: "/" >| < BIT_AND: "&" >| < BIT_OR: "|" >| < XOR: "^" >| < REM: "%" >//	| < LSHIFT: "<<" >//	| < RSIGNEDSHIFT: ">>" >//	| < RUNSIGNEDSHIFT: ">>>" >| < PLUSASSIGN: "+=" >| < MINUSASSIGN: "-=" >| < STARASSIGN: "*=" >| < SLASHASSIGN: "/=" >| < ANDASSIGN: "&=" >| < ORASSIGN: "|=" >| < XORASSIGN: "^=" >| < REMASSIGN: "%=" >//	| < LSHIFTASSIGN: "<<=" >//	| < RSIGNEDSHIFTASSIGN: ">>=" >//	| < RUNSIGNEDSHIFTASSIGN: ">>>=" >}/************************************************ * THE JAVACC GRAMMAR SPECIFICATION STARTS HERE * ************************************************/void javacc_input() :{}{  javacc_options()  "PARSER_BEGIN" "(" identifier() ")"  CompilationUnit()  "PARSER_END" "(" identifier() ")"  ( production() )+  <EOF>}void javacc_options() :{}{  [ "options" "{" ( option_binding() )+ "}" ]}void option_binding() :{}{  ( <IDENTIFIER> | "LOOKAHEAD" | "IGNORE_CASE" | "static" )  "="  ( IntegerLiteral() | BooleanLiteral() | StringLiteral() )  ";"}void production() :{}{  LOOKAHEAD(1)  /*   * Since JAVACODE is both a JavaCC reserved word and a Java identifier,   * we need to give preference to "javacode_production" over   * "bnf_production".   */  javacode_production()|  LOOKAHEAD(1)  /*   * Since SKIP, TOKEN, etc. are both JavaCC reserved words and Java   * identifiers, we need to give preference to "regular_expression_production"   * over "bnf_production".   */  regular_expr_production()|  LOOKAHEAD(1)  /*   * Since TOKEN_MGR_DECLS is both a JavaCC reserved word and a Java identifier,   * we need to give preference to "token_manager_decls" over   * "bnf_production".   */  token_manager_decls()|  bnf_production()}void javacode_production() :{}{  "JAVACODE"  ResultType() identifier() FormalParameters()  [ "throws" Name() ( "," Name() )* ]  [ node_descriptor() ]  Block()}void bnf_production() :{}{  ResultType() identifier() FormalParameters()  [ "throws" Name() ( "," Name() )* ]  [ node_descriptor() ]  ":"  Block()  "{" expansion_choices() "}"}void regular_expr_production() :{}{  [    LOOKAHEAD(2) "<" "*" ">"  |    "<" <IDENTIFIER> ( "," <IDENTIFIER> )* ">"  ]  regexpr_kind() [ "[" "IGNORE_CASE" "]" ] ":"  "{" regexpr_spec() ( "|" regexpr_spec() )* "}"}void token_manager_decls() :{}{  "TOKEN_MGR_DECLS" ":" ClassBody()}void regexpr_kind() :{}{  "TOKEN"|  "SPECIAL_TOKEN"|  "SKIP"|  "MORE"}void regexpr_spec() :{}{  regular_expression() [ Block() ] [ ":" <IDENTIFIER> ]}void expansion_choices() :{}{  expansion() ( "|" expansion() )*}void expansion() :{}{  ( LOOKAHEAD(1)    "LOOKAHEAD" "(" local_lookahead() ")"  )?  ( LOOKAHEAD(0, { notTailOfExpansionUnit() } )    expansion_unit()    [ node_descriptor() ]  )+}void local_lookahead() :	{	  boolean commaAtEnd = false, emptyLA = true;	}{  [    /*     * The lookahead of 1 is to turn off the warning message that lets     * us know that an expansion choice can also start with an integer     * literal because a primary expression can do the same.  But we     * know that this is what we want.     */    LOOKAHEAD(1)    IntegerLiteral()	{	  emptyLA = false;	}  ]  [ LOOKAHEAD(0, { !emptyLA && (getToken(1).kind != RPAREN) } )    ","	{	  commaAtEnd = true;	}  ]  [ LOOKAHEAD(0, { getToken(1).kind != RPAREN && getToken(1).kind != LBRACE } )    expansion_choices()	{	  emptyLA = false; commaAtEnd = false;	}  ]  [ LOOKAHEAD(0, { !emptyLA && !commaAtEnd && (getToken(1).kind != RPAREN) } )    ","	{	  commaAtEnd = true;	}  ]  [ LOOKAHEAD(0, { emptyLA || commaAtEnd } )    "{" Expression() "}"  ]}void expansion_unit() :{}{  LOOKAHEAD(1)  /*   * We give this priority over primary expressions which use LOOKAHEAD as the   * name of its identifier.   */  "LOOKAHEAD" "(" local_lookahead() ")"|  Block()|  "[" expansion_choices() "]"|  "try" "{" expansion_choices() "}"  ( "catch" "(" Name() <IDENTIFIER> ")" Block() )*  [ "finally" Block() ]|  LOOKAHEAD( identifier() | StringLiteral() | "<" | PrimaryExpression() "=" )  [    LOOKAHEAD(PrimaryExpression() "=")    PrimaryExpression() "="  ]  ( regular_expression() | identifier() Arguments() )|  "(" expansion_choices() ")" ( "+" | "*" | "?" )?}void regular_expression() :{}{  StringLiteral()|  LOOKAHEAD(3)  "<" [ [ "#" ] identifier() ":" ] complex_regular_expression_choices() ">"|  LOOKAHEAD(2)  "<" identifier() ">"|  "<" "EOF" ">"}void complex_regular_expression_choices() :{}{  complex_regular_expression() ( "|" complex_regular_expression() )*}void complex_regular_expression() :{}{  ( complex_regular_expression_unit() )+}void complex_regular_expression_unit() :{}{  StringLiteral()|  "<" identifier() ">"|  character_list()|  "(" complex_regular_expression_choices() ")" ( "+" | "*" | "?" )?}void character_list() :{}{  [ "~" ] "[" [ character_descriptor() ( "," character_descriptor() )* ] "]"}void character_descriptor() :{}{  StringLiteral() [ "-" StringLiteral() ]}void identifier() :{}{  <IDENTIFIER>}/********************************************** * THE JJTREE PRODUCTIONS START HERE          * **********************************************/void node_descriptor() :{}{  "#" ( <IDENTIFIER> | <VOID> )  [   LOOKAHEAD(1)   "(" [ ">" ] node_descriptor_expression() ")"  ]}JAVACODEvoid node_descriptor_expression(){  Token tok;  int nesting = 1;  while (true) {    tok = getToken(1);    if (tok.kind == 0) {      throw new ParseException();    }    if (tok.kind == LPAREN) nesting++;    if (tok.kind == RPAREN) {      nesting--;      if (nesting == 0) break;    }    tok = getNextToken();  }}/********************************************** * THE JAVA GRAMMAR SPECIFICATION STARTS HERE * **********************************************//* * The Java grammar is modified to use sequences of tokens * for the missing tokens - those that include "<<" and ">>". *//* * The following production defines Java identifiers - it * includes the reserved words of JavaCC also. */void JavaIdentifier() :{}{  <IDENTIFIER>| "options"| "LOOKAHEAD"| "IGNORE_CASE"| "PARSER_BEGIN"| "PARSER_END"| "JAVACODE"| "TOKEN"| "SPECIAL_TOKEN"| "MORE"| "SKIP"| "TOKEN_MGR_DECLS"| "EOF"}/* * The productions for the missing code follows.  Obviously * these productions accept more than what is legal in Java, * but that is OK for our purposes. */void ShiftOps() :{}{  "<" "<"|  ">" ">" [ ">" ]}void OtherAssignmentOps() :{}{  "<" "<="|  ">" [ ">" ] ">="}/* * Program structuring syntax follows. */void CompilationUnit() :/* * The <EOF> is deleted since the compilation unit is embedded * within grammar code.  To parse to CompilationUnit, we use * a special production JavaCompilationUnit below. */{}{  [ PackageDeclaration() ]  ( ImportDeclaration() )*  ( TypeDeclaration() )*}void JavaCompilationUnit() :/* * Use this to parse a Java compilation unit. */{}{  CompilationUnit() <EOF>}void PackageDeclaration() :{}{  "package" Name() ";"}void ImportDeclaration() :{}{  "import" Name() [ "." "*" ] ";"}void TypeDeclaration() :{}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -