changes + add two more benchmarks without annotations
[IRC.git] / Robust / src / Parse / java14.cup
index f86471fbdc2bf9dc6737a50da9b0f70f319d0ee0..762cf7945bed458cdb33a378ec4e7e3f5caf19c6 100644 (file)
@@ -52,11 +52,11 @@ terminal STATIC; // modifier
 terminal ABSTRACT, FINAL, NATIVE, SYNCHRONIZED, TRANSIENT, VOLATILE;
 terminal CLASS; // class_declaration
 terminal EXTENDS; // super
-//terminal IMPLEMENTS; // interfaces
+terminal IMPLEMENTS; // interfaces
 terminal VOID; // method_header
 terminal THROWS; // throws
 terminal THIS, SUPER; // explicit_constructor_invocation
-//terminal INTERFACE; // interface_declaration
+terminal INTERFACE; // interface_declaration
 terminal IF, ELSE; // if_then_statement, if_then_else_statement
 terminal SWITCH; // switch_statement
 terminal CASE, DEFAULT; // switch_label
@@ -70,6 +70,7 @@ terminal TRY; // try_statement
 terminal CATCH; // catch_clause
 terminal FINALLY; // finally
 terminal NEW; // class_instance_creation_expression
+terminal NEWFLAG; // class_instance_creation_expression
 terminal PLUSPLUS; // postincrement_expression
 terminal MINUSMINUS; // postdecrement_expression
 terminal PLUS, MINUS, COMP, NOT, DIV, MOD;
@@ -85,6 +86,8 @@ terminal QUESTION; // conditional_expression
 terminal MULTEQ, DIVEQ, MODEQ, PLUSEQ, MINUSEQ; // assignment_operator
 terminal LSHIFTEQ, RSHIFTEQ, URSHIFTEQ; // assignment_operator
 terminal ANDEQ, XOREQ, OREQ; // assignment_operator
+terminal AT;           // support annotations
+terminal LOCDEF;          // declaration of location hierarchy
 
 terminal java.lang.Number INTEGER_LITERAL;
 terminal java.lang.Number FLOATING_POINT_LITERAL;
@@ -103,6 +106,10 @@ terminal ASSERT; // assert_statement
 terminal ELLIPSIS;
 terminal ENUM;
 
+// added for disjoint reachability analysis
+terminal GENREACH;
+terminal GEN_DEF_REACH;
+
 
 // 19.2) The Syntactic Grammar
 non terminal ParseNode goal;
@@ -114,24 +121,25 @@ non terminal ParseNode integral_type, floating_point_type;
 non terminal ParseNode reference_type;
 non terminal ParseNode class_or_interface_type;
 non terminal ParseNode class_type;
-//non terminal ParseNode interface_type;
+non terminal ParseNode interface_type;
 non terminal ParseNode array_type;
 // 19.5) Names
 non terminal ParseNode name, simple_name, qualified_name;
 // 19.6) Packages
 non terminal ParseNode compilation_unit;
-//non terminal ParseNode package_declaration_opt, package_declaration;
-//non terminal ParseNode import_declarations_opt, import_declarations;
+non terminal ParseNode package_declaration_opt, package_declaration;
+non terminal ParseNode import_declarations_opt, import_declarations;
 non terminal ParseNode type_declarations_opt, type_declarations;
-//non terminal ParseNode import_declaration;
-//non terminal ParseNode single_type_import_declaration;
-//non terminal ParseNode type_import_on_demand_declaration;
+non terminal ParseNode import_declaration;
+non terminal ParseNode single_type_import_declaration;
+non terminal ParseNode type_import_on_demand_declaration;
 non terminal ParseNode type_declaration;
 // 19.7) Productions used only in the LALR(1) grammar
-non terminal ParseNode modifiers_opt, modifiers, modifier;
+non terminal ParseNode modifiers_opt, modifiers, modifiers_at, modifier;
+non terminal ParseNode mixed_modifiers, mixed_modifiers_at;
 // 19.8.1) Class Declaration
 non terminal ParseNode class_declaration, super, super_opt;
-//non terminal interfaces, interfaces_opt, interface_type_list;
+non terminal ParseNode interfaces, interfaces_opt, interface_type_list;
 non terminal ParseNode class_body;
 non terminal ParseNode class_body_declarations, class_body_declarations_opt;
 non terminal ParseNode class_body_declaration, class_member_declaration;
@@ -143,26 +151,28 @@ non terminal ParseNode variable_initializer;
 non terminal ParseNode method_declaration, method_header, method_declarator;
 non terminal ParseNode formal_parameter_list_opt, formal_parameter_list;
 non terminal ParseNode formal_parameter;
-//non terminal ParseNode throws_opt;
-//non terminal ParseNode throws;
-//non terminal ParseNode class_type_list;
+non terminal ParseNode throws_opt;
+non terminal ParseNode throws;
+non terminal ParseNode class_type_list;
 non terminal ParseNode method_body;
 // 19.8.4) Static Initializers
-//non terminal ParseNode static_initializer;
+non terminal ParseNode static_initializer;
 // 19.8.5) Constructor Declarations
 non terminal ParseNode constructor_declaration, constructor_declarator;
 non terminal ParseNode constructor_body;
-//non terminal ParseNode explicit_constructor_invocation;
+non terminal ParseNode explicit_constructor_invocation;
 // 19.9.1) Interface Declarations
-//non terminal ParseNode interface_declaration;
-//non terminal ParseNode extends_interfaces_opt, extends_interfaces;
-//non terminal ParseNode interface_body;
-//non terminal ParseNode interface_member_declarations_opt, interface_member_declarations;
-//non terminal ParseNode interface_member_declaration, constant_declaration;
-//non terminal ParseNode abstract_method_declaration;
+non terminal ParseNode interface_declaration;
+//non terminal ParseNode normal_interface_declaration
+non terminal ParseNode annotation_type_declaration;
+non terminal ParseNode extends_interfaces_opt, extends_interfaces;
+non terminal ParseNode interface_body;
+non terminal ParseNode interface_member_declarations_opt, interface_member_declarations;
+non terminal ParseNode interface_member_declaration, constant_declaration;
+non terminal ParseNode abstract_method_declaration;
 // 19.10) Arrays
-//non terminal ParseNode array_initializer;
-//non terminal ParseNode variable_initializers;
+non terminal ParseNode array_initializer;
+non terminal ParseNode variable_initializers;
 // 19.11) Blocks and Statements
 non terminal ParseNode block;
 non terminal ParseNode block_statements_opt, block_statements, block_statement;
@@ -170,34 +180,38 @@ non terminal ParseNode local_variable_declaration_statement, local_variable_decl
 non terminal ParseNode statement, statement_no_short_if;
 non terminal ParseNode statement_without_trailing_substatement;
 non terminal ParseNode empty_statement;
-//non terminal ParseNode labeled_statement, labeled_statement_no_short_if;
+non terminal ParseNode labeled_statement, labeled_statement_no_short_if;
 non terminal ParseNode expression_statement, statement_expression;
 non terminal ParseNode if_then_statement;
 non terminal ParseNode if_then_else_statement, if_then_else_statement_no_short_if;
-//non terminal ParseNode switch_statement, switch_block;
-//non terminal ParseNode switch_block_statement_groups;
-//non terminal ParseNode switch_block_statement_group;
-//non terminal ParseNode switch_labels, switch_label;
+non terminal ParseNode switch_statement, switch_block;
+non terminal ParseNode switch_block_statement_groups;
+non terminal ParseNode switch_block_statement_group;
+non terminal ParseNode switch_labels, switch_label;
 non terminal ParseNode while_statement, while_statement_no_short_if;
 non terminal ParseNode do_statement;
 non terminal ParseNode for_statement, for_statement_no_short_if;
 non terminal ParseNode for_init_opt, for_init;
 non terminal ParseNode for_update_opt, for_update;
 non terminal ParseNode statement_expression_list;
-//non terminal ParseNode identifier_opt;
+non terminal ParseNode identifier_opt;
 non terminal ParseNode break_statement, continue_statement;
 non terminal ParseNode return_statement;
-//non terminal ParseNode throw_statement;
-//non terminal ParseNode synchronized_statement, try_statement;
-//non terminal ParseNode catches_opt;
-//non terminal ParseNode catches, catch_clause;
-//non terminal ParseNode finally;
+non terminal ParseNode throw_statement;
+non terminal ParseNode synchronized_statement;
+non terminal ParseNode try_statement;
+non terminal ParseNode catches_opt;
+non terminal ParseNode catches, catch_clause;
+non terminal ParseNode finally;
 //non terminal ParseNode assert_statement;
+non terminal ParseNode genreach_statement;
+non terminal ParseNode gen_def_reach_statement;
 // 19.12) Expressions
 non terminal ParseNode primary, primary_no_new_array;
 non terminal ParseNode class_instance_creation_expression;
+non terminal ParseNode cons_argument_list_opt, cons_argument_list;
 non terminal ParseNode argument_list_opt, argument_list;
-//non terminal ParseNode array_creation_init;
+non terminal ParseNode array_creation_init;
 non terminal ParseNode array_creation_uninit;
 non terminal ParseNode dim_exprs, dim_expr;
 non terminal Integer dims_opt, dims;
@@ -217,9 +231,12 @@ non terminal ParseNode assignment_expression;
 non terminal ParseNode assignment;
 non terminal ParseNode assignment_operator;
 non terminal ParseNode expression_opt, expression;
-//non terminal ParseNode constant_expression;
+non terminal ParseNode constant_expression;
 //failure aware computation keywords
 terminal FLAG;
+terminal OPTIONAL;
+terminal ISAVAILABLE;
+terminal EXTERNAL;
 terminal TAG;
 terminal TASK;
 terminal TASKEXIT;
@@ -242,6 +259,46 @@ non terminal ParseNode cons_checks_opt;
 non terminal ParseNode cons_checks;
 non terminal ParseNode cons_check;
 
+non terminal ParseNode tag_variable_declaration_statement;
+non terminal ParseNode tag_expression_list;
+non terminal ParseNode tag_expression;
+non terminal ParseNode tag_list;
+non terminal ParseNode tag_list_opt;
+non terminal ParseNode tag_change;
+
+//distributed transaction keywords
+terminal ATOMIC;
+terminal GLOBAL;
+terminal SCRATCH;
+terminal GETOFFSET;
+non terminal ParseNode atomic_statement;
+non terminal ParseNode getoffset_expression;
+
+//disjointness for Java
+terminal DISJOINT;
+
+//coarse-grain parallelization
+terminal SESE;
+terminal RBLOCK;
+non terminal ParseNode sese_statement;
+
+// mgc
+// JSR-201) Enum Declaration
+non terminal ParseNode enum_declaration;
+non terminal ParseNode enum_body, enum_constants_opt, enum_constants, enum_constant;
+//non terminal ParseNode enum_arguments_opt, enum_body_declarations_opt;
+
+// annotation expressions
+// non terminal ParseNode annotations_opt, 
+non terminal ParseNode annotations, annotations_at, annotation, annotation_body;
+non terminal ParseNode normal_annotation_body, marker_annotation_body;
+non terminal ParseNode single_element_annotation_body;
+non terminal ParseNode annotation_type_body, annotation_type_element_declarations;
+non terminal ParseNode annotation_type_element_declarations_opt;
+non terminal ParseNode annotation_type_element_declaration, default_value_opt, default_value;
+non terminal ParseNode element_value_pairs_opt, element_value_pairs, element_value_pair;
+non terminal ParseNode element_values_opt, element_values, element_value, element_value_array_initializer;
+
 start with goal;
 
 
@@ -251,7 +308,7 @@ task_declaration ::=
        flag_effects_opt:feo
        method_body:body 
        {: 
-       ParseNode pn=new ParseNode("task_declaration");
+       ParseNode pn=new ParseNode("task_declaration",parser.lexer.line_num);
        pn.addChild("name").addChild(id);
        pn.addChild(tpl);
        pn.addChild(feo);
@@ -261,7 +318,7 @@ task_declaration ::=
 
 task_parameter_list ::=
                task_parameter:fp {: 
-               ParseNode pn=new ParseNode("task_parameter_list");
+               ParseNode pn=new ParseNode("task_parameter_list",parser.lexer.line_num);
                pn.addChild(fp);
                RESULT=pn;
        :}
@@ -273,20 +330,82 @@ task_parameter_list ::=
 
 task_parameter ::=
                type:type variable_declarator_id:name LBRACE flag_expression:exp RBRACE {:
-               ParseNode pn=new ParseNode("task_parameter");
+               ParseNode pn=new ParseNode("task_parameter",parser.lexer.line_num);
                pn.addChild(type);
                pn.addChild(name);
                pn.addChild("flag").addChild(exp);
                RESULT=pn;
+       :} 
+        | type:type variable_declarator_id:name LBRACE flag_expression:exp RBRACE LBRACE tag_expression_list:texp RBRACE {:
+               ParseNode pn=new ParseNode("task_parameter",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(name);
+               pn.addChild("flag").addChild(exp);
+               pn.addChild("tag").addChild(texp);
+               RESULT=pn;
+       :}
+        | type:type variable_declarator_id:name LBRACE RBRACE LBRACE tag_expression_list:texp RBRACE {:
+               ParseNode pn=new ParseNode("task_parameter",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(name);
+               pn.addChild("tag").addChild(texp);
+               RESULT=pn;
+       :}
+       | OPTIONAL task_parameter:fp {:
+               ParseNode pn=new ParseNode("task_parameter",parser.lexer.line_num);
+               pn.addChild("optional").addChild(fp);
+               RESULT=pn;
+       :}              
+       
+       ;
+
+tag_expression_list ::= tag_expression:te {: 
+       ParseNode pn=new ParseNode("tag_expression_list",parser.lexer.line_num);
+       pn.addChild(te);
+       RESULT=pn;
+       :}
+       | tag_expression_list:tel COMMA tag_expression:te {: 
+       tel.addChild(te);
+       RESULT=tel;
+       :}
+       ;
+
+tag_expression ::= IDENTIFIER:type IDENTIFIER:id {: 
+               ParseNode pn=new ParseNode("tag_expression",parser.lexer.line_num);
+               pn.addChild("type").addChild(type);
+               pn.addChild("single").addChild(id);
+               RESULT=pn;
        :}
        ;
 
+tag_list_opt ::= LBRACE tag_list:fl RBRACE {:RESULT=fl;:}
+       | LBRACE RBRACE {: RESULT = new ParseNode("empty",parser.lexer.line_num); :}    
+       | {: RESULT = new ParseNode("empty",parser.lexer.line_num); :}
+       ;
+
+tag_list ::= tag_change:fc {: 
+               ParseNode pn=new ParseNode("tag_list",parser.lexer.line_num);
+               pn.addChild(fc);
+               RESULT=pn;
+       :}
+       | tag_list:fl COMMA tag_change:fc {: 
+               fl.addChild(fc);
+               RESULT=fl;
+       :};
+
+tag_change ::= IDENTIFIER:id {: 
+               RESULT=new ParseNode("name",parser.lexer.line_num).addChild(id).getRoot();
+       :}
+       | NOT IDENTIFIER:id {: 
+               RESULT=new ParseNode("not",parser.lexer.line_num).addChild("name").addChild(id).getRoot();
+       :};
+
 flag_expression ::= 
        flag_andexpression:exp {: 
                RESULT=exp;
        :}
        | flag_expression:exp1 OROR flag_andexpression:exp2 {: 
-               ParseNode pn=new ParseNode("or");
+               ParseNode pn=new ParseNode("or",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
@@ -296,7 +415,7 @@ flag_expression ::=
 flag_andexpression ::= 
        flag_notexpression:exp {: RESULT=exp; :}
        | flag_notexpression:exp1 ANDAND flag_andexpression:exp2 {: 
-               ParseNode pn=new ParseNode("and");
+               ParseNode pn=new ParseNode("and",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
@@ -305,7 +424,7 @@ flag_andexpression ::=
 
 flag_notexpression ::=
        NOT flag_notexpression:exp {: 
-               ParseNode pn=new ParseNode("not");
+               ParseNode pn=new ParseNode("not",parser.lexer.line_num);
                pn.addChild(exp);
                RESULT=pn;
        :}
@@ -313,22 +432,22 @@ flag_notexpression ::=
                RESULT=exp;
        :}
        | IDENTIFIER:id {:
-               ParseNode pn=new ParseNode("name");
+               ParseNode pn=new ParseNode("name",parser.lexer.line_num);
                pn.addChild(id);
                RESULT=pn;
        :}
        ;
 
 task_exitstatement ::= TASKEXIT flag_effects_opt:opt cons_checks_opt:cco SEMICOLON {: 
-               RESULT=(new ParseNode("taskexit")).addChild(opt).getRoot().addChild(cco).getRoot();
+               RESULT=(new ParseNode("taskexit",parser.lexer.line_num)).addChild(opt).getRoot().addChild(cco).getRoot();
        :};
 
 cons_checks_opt ::= ASSERT LPAREN cons_checks:cc RPAREN {: RESULT=cc; :}
-       | {: RESULT = new ParseNode("empty"); :}
+       | {: RESULT = new ParseNode("empty",parser.lexer.line_num); :}
        ;
 
 cons_checks ::= cons_check:cc {: 
-               ParseNode pn=new ParseNode("cons_checks");
+               ParseNode pn=new ParseNode("cons_checks",parser.lexer.line_num);
                pn.addChild(cc);
                RESULT=pn;
        :}
@@ -337,19 +456,19 @@ cons_checks ::= cons_check:cc {:
                RESULT=ccs;
        :};
 
-cons_check ::= IDENTIFIER:name LPAREN argument_list_opt:args RPAREN {: 
-               ParseNode pn=new ParseNode("cons_check");
+cons_check ::= IDENTIFIER:name LPAREN cons_argument_list_opt:args RPAREN {: 
+               ParseNode pn=new ParseNode("cons_check",parser.lexer.line_num);
                pn.addChild("name").addChild("identifier").addChild(name);
                pn.addChild(args);
                RESULT=pn;
        :};
 
 flag_effects_opt ::= LPAREN flag_effects:fe RPAREN {:RESULT=fe;:}
-       | {: RESULT = new ParseNode("empty"); :}
+       | {: RESULT = new ParseNode("empty",parser.lexer.line_num); :}
        ;
 
 flag_effects ::= flag_effect:fe {: 
-               ParseNode pn=new ParseNode("flag_effects_list");
+               ParseNode pn=new ParseNode("flag_effects_list",parser.lexer.line_num);
                pn.addChild(fe);
                RESULT=pn;
        :}
@@ -358,19 +477,28 @@ flag_effects ::= flag_effect:fe {:
                RESULT=fes;
        :};
 
-flag_effect ::= IDENTIFIER:id LBRACE flag_list:fl RBRACE {: 
-               ParseNode pn=new ParseNode("flag_effect");
+flag_effect ::= IDENTIFIER:id LBRACE flag_list:fl RBRACE tag_list_opt:tlo {: 
+               ParseNode pn=new ParseNode("flag_effect",parser.lexer.line_num);
                pn.addChild("name").addChild(id);
                pn.addChild(fl);
+               pn.addChild(tlo);
+               RESULT=pn;
+       :}
+       | IDENTIFIER:id LBRACE RBRACE LBRACE tag_list:tl RBRACE {: 
+               ParseNode pn=new ParseNode("flag_effect",parser.lexer.line_num);
+               pn.addChild("name").addChild(id);
+               pn.addChild(tl);
                RESULT=pn;
        :};
 
 flag_list_opt ::= LBRACE flag_list:fl RBRACE {:RESULT=fl;:}
-       | {: RESULT = new ParseNode("empty"); :}
+       | LBRACE RBRACE {: RESULT = new ParseNode("empty",parser.lexer.line_num); :}    
+       | 
+       {: RESULT = new ParseNode("empty",parser.lexer.line_num); :}
        ;
 
 flag_list ::= flag_change:fc {: 
-               ParseNode pn=new ParseNode("flag_list");
+               ParseNode pn=new ParseNode("flag_list",parser.lexer.line_num);
                pn.addChild(fc);
                RESULT=pn;
        :}
@@ -380,10 +508,10 @@ flag_list ::= flag_change:fc {:
        :};
 
 flag_change ::= IDENTIFIER:id {: 
-               RESULT=new ParseNode("name").addChild(id).getRoot();
+               RESULT=new ParseNode("name",parser.lexer.line_num).addChild(id).getRoot();
        :} |
        NOT IDENTIFIER:id {: 
-               RESULT=new ParseNode("not").addChild("name").addChild(id).getRoot();
+               RESULT=new ParseNode("not",parser.lexer.line_num).addChild("name").addChild(id).getRoot();
        :};
 
 // 19.2) The Syntactic Grammar
@@ -398,37 +526,37 @@ goal ::=  compilation_unit:cu
 
 literal ::=    INTEGER_LITERAL:integer_lit
        {:
-               ParseNode pn=new ParseNode("literal");
+               ParseNode pn=new ParseNode("literal",parser.lexer.line_num);
                pn.addChild("integer").setLiteral(integer_lit);
                RESULT=pn;
        :}
        |       FLOATING_POINT_LITERAL:float_lit
        {:
-               ParseNode pn=new ParseNode("literal");
+               ParseNode pn=new ParseNode("literal",parser.lexer.line_num);
                pn.addChild("float").setLiteral(float_lit);
                RESULT=pn;
        :}
        |       BOOLEAN_LITERAL:boolean_lit
        {:
-               ParseNode pn=new ParseNode("literal");
+               ParseNode pn=new ParseNode("literal",parser.lexer.line_num);
                pn.addChild("boolean").setLiteral(boolean_lit);
                RESULT=pn;
        :}
        |       CHARACTER_LITERAL:char_lit
        {:
-               ParseNode pn=new ParseNode("literal");
+               ParseNode pn=new ParseNode("literal",parser.lexer.line_num);
                pn.addChild("char").setLiteral(char_lit);
                RESULT=pn;
        :}
        |       STRING_LITERAL:string_lit
        {:
-               ParseNode pn=new ParseNode("literal");
+               ParseNode pn=new ParseNode("literal",parser.lexer.line_num);
                pn.addChild("string").setLiteral(string_lit);
                RESULT=pn;
        :}
        |       NULL_LITERAL 
        {:
-               RESULT=(new ParseNode("literal")).addChild("null").getRoot();
+               RESULT=(new ParseNode("literal",parser.lexer.line_num)).addChild("null").getRoot();
        :}
        ;
 
@@ -439,21 +567,21 @@ type      ::=     primitive_type:type {: RESULT=type; :}
 
 primitive_type ::=
                numeric_type:type {: RESULT=type; :}
-       |       BOOLEAN {: RESULT=(new ParseNode("type")).addChild("boolean").getRoot(); :}
+       |       BOOLEAN {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("boolean").getRoot(); :}
        ;
 numeric_type::=        integral_type:type {: RESULT=type; :}
        |       floating_point_type:type {: RESULT=type; :}
        ;
 integral_type ::= 
-               BYTE {: RESULT=(new ParseNode("type")).addChild("byte").getRoot(); :}
-       |       SHORT  {: RESULT=(new ParseNode("type")).addChild("short").getRoot(); :}
-       |       INT  {: RESULT=(new ParseNode("type")).addChild("int").getRoot(); :}
-       |       LONG  {: RESULT=(new ParseNode("type")).addChild("long").getRoot(); :}
-       |       CHAR  {: RESULT=(new ParseNode("type")).addChild("char").getRoot(); :}
+               BYTE {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("byte").getRoot(); :}
+       |       SHORT  {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("short").getRoot(); :}
+       |       INT  {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("int").getRoot(); :}
+       |       LONG  {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("long").getRoot(); :}
+       |       CHAR  {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("char").getRoot(); :}
        ;
 floating_point_type ::= 
-               FLOAT  {: RESULT=(new ParseNode("type")).addChild("float").getRoot(); :}
-       |       DOUBLE  {: RESULT=(new ParseNode("type")).addChild("double").getRoot(); :}
+               FLOAT  {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("float").getRoot(); :}
+       |       DOUBLE  {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("double").getRoot(); :}
        ;
 
 reference_type ::=
@@ -461,20 +589,20 @@ reference_type ::=
        |       array_type:type {: RESULT=type; :}
        ;
 class_or_interface_type ::= name:name {: 
-       RESULT=(new ParseNode("type")).addChild("class").addChild(name).getRoot(); 
+       RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("class").addChild(name).getRoot(); 
        :};
 
 class_type ::= class_or_interface_type:type {: RESULT=type; :};
-//interface_type ::= class_or_interface_type;
+interface_type ::= class_or_interface_type:type {: RESULT=type; :};
 
 array_type ::= primitive_type:prim dims:dims {: 
-               ParseNode pn=(new ParseNode("type")).addChild("array");
+               ParseNode pn=(new ParseNode("type",parser.lexer.line_num)).addChild("array");
                pn.addChild("basetype").addChild(prim);
                pn.addChild("dims").setLiteral(dims);
                RESULT=pn.getRoot();
        :}
        |       name:name dims:dims {: 
-               ParseNode pn=(new ParseNode("type")).addChild("array");
+               ParseNode pn=(new ParseNode("type",parser.lexer.line_num)).addChild("array");
                pn.addChild("basetype").addChild("type").addChild("class").addChild(name);
                pn.addChild("dims").setLiteral(dims);
                RESULT=pn.getRoot();
@@ -486,11 +614,11 @@ name      ::=     simple_name:name {: RESULT=name; :}
        |       qualified_name:name {: RESULT=name; :}
        ;
 simple_name ::=        IDENTIFIER:id {: 
-       RESULT=(new ParseNode("name")).addChild("identifier").addChild(id).getRoot(); 
+       RESULT=(new ParseNode("name",parser.lexer.line_num)).addChild("identifier").addChild(id).getRoot(); 
        :}
        ;
 qualified_name ::= name:name DOT IDENTIFIER:id {: 
-       ParseNode pn=new ParseNode("name");
+       ParseNode pn=new ParseNode("name",parser.lexer.line_num);
        pn.addChild("base").addChild(name);
        pn.addChild("identifier").addChild(id);
        RESULT=pn;
@@ -499,30 +627,48 @@ qualified_name ::= name:name DOT IDENTIFIER:id {:
 
 // 19.6) Packages
 compilation_unit ::=
-//              package_declaration_opt
-//              import_declarations_opt
+                package_declaration_opt:pdo
+                import_declarations_opt:ido
                type_declarations_opt:tdo {: 
-               ParseNode pn=new ParseNode("compilation_unit");
+               ParseNode pn=new ParseNode("compilation_unit",parser.lexer.line_num);
                pn.addChild(tdo);
+               pn.addChild("packages").addChild(pdo);
+               pn.addChild("imports").addChild(ido);
                RESULT=pn;
                :}
                ;
-//package_declaration_opt ::= package_declaration | ;
-//import_declarations_opt ::= import_declarations | ;
+package_declaration_opt ::= package_declaration:pdo {:
+               RESULT=pdo;
+       :} |
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
+;
+
+import_declarations_opt ::= import_declarations:ido {: 
+               RESULT=ido;
+       :} | 
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
+;
 type_declarations_opt   ::= type_declarations:tds {:
                RESULT=tds;
                :}   | 
-       {: RESULT=new ParseNode("empty"); :}
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        ;
 
-//import_declarations ::=
-//               import_declaration
-//       |       import_declarations import_declaration
-//       ;
+import_declarations ::=
+               import_declaration:id {: 
+               ParseNode pn=new ParseNode("import_decls_list",parser.lexer.line_num);
+               pn.addChild(id);
+               RESULT=pn;
+       :}
+       |       import_declarations:ids import_declaration:id {: 
+               ids.addChild(id);
+               RESULT=ids;
+       :}
+       ;
 
 type_declarations ::= 
                type_declaration:td {:
-               ParseNode pn=new ParseNode("type_declaration_list");
+               ParseNode pn=new ParseNode("type_declaration_list",parser.lexer.line_num);
                pn.addChild(td);
                RESULT=pn;
                :}
@@ -532,76 +678,220 @@ type_declarations ::=
                :}
        ;
 
-//package_declaration ::=
-//               PACKAGE name SEMICOLON
-//       ;
-//import_declaration ::=
-//               single_type_import_declaration
-//       |       type_import_on_demand_declaration
-//       ;
-//single_type_import_declaration ::=
-//               IMPORT name SEMICOLON
-//       ;
-//type_import_on_demand_declaration ::=
-//               IMPORT name DOT MULT SEMICOLON
-//       ;
+package_declaration ::=
+                PACKAGE name:name SEMICOLON {: 
+       ParseNode pn=new ParseNode("package",parser.lexer.line_num);
+       pn.addChild(name);
+       RESULT=pn;
+       :}
+       ;
+import_declaration ::=
+               single_type_import_declaration:sid {: RESULT=sid; :}
+       |       type_import_on_demand_declaration:iod {: RESULT=iod; :}
+       ;
+single_type_import_declaration ::=
+               IMPORT name:name SEMICOLON {: 
+       ParseNode pn=new ParseNode("import_single",parser.lexer.line_num);
+       pn.addChild(name);
+       RESULT=pn;
+:}
+       ;
+type_import_on_demand_declaration ::=
+               IMPORT name:name DOT MULT SEMICOLON {:
+       ParseNode pn=new ParseNode("import_ondemand",parser.lexer.line_num);
+       pn.addChild(name);
+       RESULT=pn;
+       :}       
+       ;
 
 type_declaration ::=
                class_declaration:cd 
                {:
                        RESULT=cd;
                :}
+       |       enum_declaration:ed
+           {:
+               RESULT=ed;
+           :}
        |       task_declaration:td 
                {:
                        RESULT=td;
                :}
-//      |       interface_declaration
-       |       SEMICOLON {: RESULT=new ParseNode("empty"); :}
+    |   interface_declaration:in
+        {:
+                       RESULT=in;
+               :}
+       |       SEMICOLON {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        ;
 
 // 19.7) Productions used only in the LALR(1) grammar
 modifiers_opt::=
-       {: RESULT=new ParseNode("empty"); :}
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        |       modifiers:mo {: 
                RESULT=mo;
        :}
        ;
-modifiers ::=  modifier:mo {: 
-               ParseNode pn=new ParseNode("modifier_list");
-               pn.addChild(mo);
+modifiers_at ::=
+               mixed_modifiers_at
+       |       annotations_at
+       ;
+modifiers ::=   mixed_modifiers : mmo {:
+               RESULT=mmo; 
+       :}
+       |       annotations : an {:
+               ParseNode pn=new ParseNode("modifier_list",parser.lexer.line_num);
+               pn.addChild(an);
                RESULT=pn;
        :}
-       |       modifiers:mos modifier:mo {: 
-               mos.addChild(mo);
-               RESULT=mos;
+       ;
+mixed_modifiers_at ::=
+               mixed_modifiers : mmos AT {:
+               RESULT=mmos;
+        :}
+       ;
+mixed_modifiers ::=
+               modifier : mo {:
+                ParseNode pn=new ParseNode("modifier_list",parser.lexer.line_num);
+               pn.addChild(mo);
+               RESULT=pn;
+        :}
+       |       annotations:as modifier:mo {:
+               ParseNode pn=new ParseNode("modifier_list",parser.lexer.line_num);
+               pn.addChild(mo);
+               pn.addChild(as);
+               RESULT=pn;
+        :}
+       |       mixed_modifiers : mmos modifier : mo {:
+                mmos.addChild(mo);
+               RESULT=mmos;
        :}
+       |       mixed_modifiers_at:mma annotation_body:ab {:
+                mma.addChild("annotation_list",parser.lexer.line_num).addChild(ab); 
+               RESULT=mma;             
+        :}
        ;
 modifier ::=   
-       PUBLIC {: RESULT=new ParseNode("public"); :}|
-       PROTECTED {: RESULT=new ParseNode("protected"); :}|
-       PRIVATE {: RESULT=new ParseNode("private"); :}|
-       STATIC {: RESULT=new ParseNode("static"); :} |
-//     ABSTRACT |
-       FINAL {: RESULT=new ParseNode("final"); :}|
-       NATIVE {: RESULT=new ParseNode("native"); :}
-//     SYNCHRONIZED | 
-//     TRANSIENT | 
-//     VOLATILE |
+       PUBLIC {: RESULT=new ParseNode("public",parser.lexer.line_num); :}|
+       PROTECTED {: RESULT=new ParseNode("protected",parser.lexer.line_num); :}|
+       PRIVATE {: RESULT=new ParseNode("private",parser.lexer.line_num); :}|
+       STATIC {: RESULT=new ParseNode("static",parser.lexer.line_num); :} |
+       ABSTRACT {: RESULT=new ParseNode("abstract",parser.lexer.line_num); :}  |
+       FINAL {: RESULT=new ParseNode("final",parser.lexer.line_num); :}|
+       NATIVE {: RESULT=new ParseNode("native",parser.lexer.line_num); :} |
+       SYNCHRONIZED {: RESULT=new ParseNode("synchronized",parser.lexer.line_num); :} |
+       ATOMIC {: RESULT=new ParseNode("atomic",parser.lexer.line_num); :} |
+       VOLATILE {: RESULT=new ParseNode("volatile",parser.lexer.line_num); :} |
+       TRANSIENT {: RESULT=new ParseNode("transient",parser.lexer.line_num); :} 
+
 //     STRICTFP // note that semantic analysis must check that the
                         // context of the modifier allows strictfp.
        ;
-
+//annotations_opt ::=
+//     {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
+//     |       annotations:an {: 
+//             RESULT=an;
+//     :}
+//     ;
+annotations ::= 
+               AT annotation_body:ab {:
+                ParseNode pn=new ParseNode("annotation_list",parser.lexer.line_num);
+               pn.addChild(ab);
+               RESULT=pn;
+        :}
+       |       annotations_at:aat annotation_body:ab {:
+               aat.addChild(ab);
+               RESULT=aat;
+       :}
+       ;
+annotations_at ::=
+              annotations:as AT {:
+              RESULT=as;
+        :}
+       ;
+annotation ::=
+              AT annotation_body:ab {:
+               RESULT=ab;
+       :}
+       ;
+annotation_body ::=
+               normal_annotation_body:nab {:
+               ParseNode pn=new ParseNode("annotation_body",parser.lexer.line_num);
+               pn.addChild(nab);
+                RESULT = pn;
+        :}
+        |       marker_annotation_body:mab {:
+               ParseNode pn=new ParseNode("annotation_body",parser.lexer.line_num);
+               pn.addChild(mab);
+               RESULT = pn;
+        :}
+        |      single_element_annotation_body:seab {:
+               ParseNode pn=new ParseNode("annotation_body",parser.lexer.line_num);
+               pn.addChild(seab);
+                RESULT = pn;
+        :}
+        ;
+normal_annotation_body ::=
+               IDENTIFIER LPAREN element_value_pairs_opt RPAREN
+        ;
+marker_annotation_body ::=
+                IDENTIFIER:id
+       {:
+       ParseNode pn=new ParseNode("marker_annotation",parser.lexer.line_num);
+       pn.addChild("name").addChild(id);
+       RESULT=pn;
+       :}
+        ;
+single_element_annotation_body ::=
+                IDENTIFIER:id LPAREN STRING_LITERAL:ev RPAREN {:
+                ParseNode pn=new ParseNode("single_annotation",parser.lexer.line_num);
+               pn.addChild("name").addChild(id);
+               pn.addChild("element_value").addChild(ev);
+               RESULT=pn;
+        :}
+        ;
+element_value_pairs_opt ::=
+       |       element_value_pairs
+       ;               
+element_value_pairs ::=
+               element_value_pair
+       |       element_value_pairs COMMA element_value_pair
+       ;
+element_value_pair ::=
+               IDENTIFIER EQ element_value
+       ;
+element_value ::=
+               annotation:an {:
+               RESULT=an;
+       :}  
+       |       element_value_array_initializer:evai {: 
+               RESULT=evai;
+        :}
+       |       conditional_expression:ce {:
+               RESULT=ce;
+       :}
+       ;
+element_value_array_initializer ::=
+               LBRACE element_values_opt RBRACE
+       ;
+element_values_opt ::=
+       |       element_values
+       ;
+element_values ::=
+               element_value
+       |       element_values COMMA element_value
+       ;
 // 19.8) Classes
 
 // 19.8.1) Class Declaration:
 class_declaration ::= 
-       modifiers_opt:mo CLASS IDENTIFIER:id super_opt:so //interfaces_opt
-class_body:body 
+       modifiers_opt:mo CLASS IDENTIFIER:id super_opt:so interfaces_opt:ifo 
+       class_body:body 
        {:
-       ParseNode pn=new ParseNode("class_declaration");
+       ParseNode pn=new ParseNode("class_declaration",parser.lexer.line_num);
        pn.addChild("modifiers").addChild(mo);
        pn.addChild("name").addChild(id);
        pn.addChild("super").addChild(so);
+       pn.addChild("superIF").addChild(ifo);
        pn.addChild("classbody").addChild(body);
        RESULT=pn;
        :}
@@ -611,32 +901,40 @@ super ::= EXTENDS class_type:classtype {:
        :}
        ;
 super_opt ::=  
-       {: RESULT=new ParseNode("empty"); :}
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        |       super:su {: 
                RESULT=su;
        :}
        ;
 
-//interfaces ::= IMPLEMENTS interface_type_list
-//       ;
-//interfaces_opt::=
-//       |       interfaces
-//       ;
-//interface_type_list ::=
-//               interface_type
-//       |       interface_type_list COMMA interface_type
-//       ;
+interfaces ::= IMPLEMENTS interface_type_list:iftl {: RESULT=iftl; :}
+       ;
+interfaces_opt ::=
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
+       |       interfaces:ifs {: RESULT=ifs; :}
+       ;
+interface_type_list ::=
+               interface_type:ift {: 
+                       ParseNode pn=new ParseNode("interface_type_list",parser.lexer.line_num);
+                       pn.addChild(ift);
+                       RESULT=pn;
+               :}
+       |       interface_type_list:iftl COMMA interface_type:ift {: 
+                       iftl.addChild(ift);
+                       RESULT=iftl;
+               :}
+       ;
 
 class_body ::= LBRACE class_body_declarations_opt:cbdo RBRACE {: RESULT=cbdo; :}
        ;
 
 class_body_declarations_opt ::= 
-       {: RESULT=new ParseNode("empty"); :}
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        |       class_body_declarations:cbd {: RESULT=cbd; :};
 
 class_body_declarations ::= 
                class_body_declaration:cbd {: 
-                       ParseNode pn=new ParseNode("class_body_declaration_list");
+                       ParseNode pn=new ParseNode("class_body_declaration_list",parser.lexer.line_num);
                        pn.addChild(cbd);
                        RESULT=pn;
                :}
@@ -648,39 +946,109 @@ class_body_declarations ::=
 
 class_body_declaration ::=
                class_member_declaration:member {: 
-               RESULT=(new ParseNode("member")).addChild(member).getRoot();
+               RESULT=(new ParseNode("member",parser.lexer.line_num)).addChild(member).getRoot();
+       :}
+       |       static_initializer:block{:
+               RESULT=(new ParseNode("static_block",parser.lexer.line_num)).addChild(block).getRoot();
        :}
-//     |       static_initializer
        |       constructor_declaration:constructor {: 
-               RESULT=(new ParseNode("constructor")).addChild(constructor).getRoot();
+               RESULT=(new ParseNode("constructor",parser.lexer.line_num)).addChild(constructor).getRoot();
        :}
        |       block:block {:
-               RESULT=(new ParseNode("block")).addChild(block).getRoot();
-:}
+               RESULT=(new ParseNode("block",parser.lexer.line_num)).addChild(block).getRoot();
+        :}
        ;
 class_member_declaration ::=
        //failure aware computation
        flag_declaration:flag {: 
-       RESULT=(new ParseNode("flag")).addChild(flag).getRoot(); 
-       :}
-       |
+       RESULT=(new ParseNode("flag",parser.lexer.line_num)).addChild(flag).getRoot(); 
+       :}      
+        |
        field_declaration:field {: 
-       RESULT=(new ParseNode("field")).addChild(field).getRoot(); 
+       RESULT=(new ParseNode("field",parser.lexer.line_num)).addChild(field).getRoot(); 
        :}
        |       method_declaration:method {:
-       RESULT=(new ParseNode("method")).addChild(method).getRoot(); 
+       RESULT=(new ParseNode("method",parser.lexer.line_num)).addChild(method).getRoot(); 
        :}
        /* repeat the prod for 'class_declaration' here: */
-//     |       modifiers_opt CLASS IDENTIFIER super_opt class_body
-//      |       interface_declaration
-       |       SEMICOLON       {: RESULT=new ParseNode("empty"); :}
+       |       modifiers_opt:mo CLASS IDENTIFIER:id super_opt:so interfaces_opt:ifo class_body:body
+       {:
+       ParseNode pn=new ParseNode("inner_class_declaration",parser.lexer.line_num);
+       pn.addChild("modifiers").addChild(mo);
+       pn.addChild("name").addChild(id);
+       pn.addChild("super").addChild(so);
+       pn.addChild("superIF").addChild(ifo);
+       pn.addChild("classbody").addChild(body);
+       RESULT=pn;
+       :}
+       |       enum_declaration:ed
+       {:
+       RESULT=ed; 
+       :}
+    |       interface_declaration:interfaced {: RESULT=interfaced; :}
+       |       SEMICOLON       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        ;
+       
+// mgc
+// JSR-201) Enum Declaration
+enum_declaration ::=
+               modifiers_opt:mo ENUM IDENTIFIER:id /*interfaces_opt:io*/ enum_body:body
+               {:
+                       ParseNode pn=new ParseNode("enum_declaration",parser.lexer.line_num);
+                       pn.addChild("modifiers").addChild(mo);
+                       pn.addChild("name").addChild(id);
+                       //pn.addChild("superIF").addChild(ifo);
+                       pn.addChild("enumbody").addChild(body);
+                       RESULT=pn;
+               :}
+       ;
+enum_body ::=
+               LBRACE enum_constants_opt:eco /*enum_body_declarations_opt:ebdo*/ RBRACE
+               {: RESULT=eco; :}
+       ;
+enum_constants_opt ::=
+  {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
+       |       enum_constants:ecs
+       {: RESULT=ecs; :}
+       ;
+enum_constants ::=
+               enum_constant:ec {: 
+               ParseNode pn=new ParseNode("enum_constants_list",parser.lexer.line_num);
+               pn.addChild(ec);
+               RESULT=pn;
+       :}
+       |       enum_constants:ecs COMMA enum_constant:ec {:
+           ecs.addChild(ec);
+           RESULT=ecs;
+       :}
+       ;
+enum_constant ::=
+               IDENTIFIER:id /*enum_arguments_opt*/
+               {: 
+                   ParseNode pn=new ParseNode("enum_constant",parser.lexer.line_num);
+                   pn.addChild("name").addChild(id);
+                   RESULT=pn; 
+               :}
+//     |       IDENTIFIER enum_arguments_opt class_body
+       ;
+//enum_arguments_opt ::=
+//     |       LPAREN argument_list_opt RPAREN
+//     ;
+//enum_body_declarations_opt ::=
+//     |       SEMICOLON class_body_declarations_opt:cbdo
+//     ;
 
 //Failure aware computation
 flag_declaration ::= 
                FLAG IDENTIFIER:id SEMICOLON {: 
-               ParseNode pn=new ParseNode("flag_declaration");
+               ParseNode pn=new ParseNode("flag_declaration",parser.lexer.line_num);
+               pn.addChild("name").addChild(id);
+               RESULT=pn;
+       :}      |
+               EXTERNAL FLAG IDENTIFIER:id SEMICOLON {: 
+               ParseNode pn=new ParseNode("flag_declaration",parser.lexer.line_num);
                pn.addChild("name").addChild(id);
+               pn.addChild("external");
                RESULT=pn;
        :}
        ;
@@ -688,17 +1056,25 @@ flag_declaration ::=
 // 19.8.2) Field Declarations
 field_declaration ::= 
                modifiers_opt:mo type:type variable_declarators:var SEMICOLON {: 
-               ParseNode pn=new ParseNode("field_declaration");
+               ParseNode pn=new ParseNode("field_declaration",parser.lexer.line_num);
                pn.addChild("modifier").addChild(mo);
                pn.addChild("type").addChild(type);
                pn.addChild("variables").addChild(var);
                RESULT=pn;
+       :} |
+               modifiers_opt:mo GLOBAL type:type variable_declarators:var SEMICOLON {: 
+               ParseNode pn=new ParseNode("field_declaration",parser.lexer.line_num);
+               pn.addChild("modifier").addChild(mo);
+               pn.addChild("type").addChild(type);
+               pn.addChild("variables").addChild(var);
+               pn.addChild("global");
+               RESULT=pn;
        :}
        ;
 
 variable_declarators ::=
                variable_declarator:vd {: 
-               ParseNode pn=new ParseNode("variable_declarators_list");
+               ParseNode pn=new ParseNode("variable_declarators_list",parser.lexer.line_num);
                pn.addChild(vd);
                RESULT=pn;
        :}
@@ -709,12 +1085,12 @@ variable_declarators ::=
        ;
 variable_declarator ::=
                variable_declarator_id:id {:
-               ParseNode pn=new ParseNode("variable_declarator");
+               ParseNode pn=new ParseNode("variable_declarator",parser.lexer.line_num);
                pn.addChild(id);
                RESULT=pn;
        :}
        |       variable_declarator_id:id EQ variable_initializer:init {: 
-               ParseNode pn=new ParseNode("variable_declarator");
+               ParseNode pn=new ParseNode("variable_declarator",parser.lexer.line_num);
                pn.addChild(id);
                pn.addChild("initializer").addChild(init);
                RESULT=pn;
@@ -722,44 +1098,46 @@ variable_declarator ::=
        ;
 variable_declarator_id ::=
                IDENTIFIER:id {: 
-               RESULT=(new ParseNode("single")).addChild(id).getRoot();:}
+               RESULT=(new ParseNode("single",parser.lexer.line_num)).addChild(id).getRoot();:}
        |       variable_declarator_id:id LBRACK RBRACK {:
-               RESULT=(new ParseNode("array")).addChild(id).getRoot();:}
+               RESULT=(new ParseNode("array",parser.lexer.line_num)).addChild(id).getRoot();:}
        ;
 variable_initializer ::=
                expression:exp {: RESULT=exp; :}
-//     |       array_initializer
+       |       array_initializer:ai {: RESULT=(new ParseNode("array_initializer",parser.lexer.line_num)).addChild(ai).getRoot(); :}
        ;
 
 // 19.8.3) Method Declarations
 method_declaration ::=
                method_header:header method_body:body {:
-               ParseNode pn=new ParseNode("method_declaration");
+               ParseNode pn=new ParseNode("method_declaration",parser.lexer.line_num);
                pn.addChild(header);
                pn.addChild("body").addChild(body);
                RESULT=pn;
        :}
        ;
 method_header ::=
-               modifiers_opt:mo type:type method_declarator:decl //throws_opt 
+               modifiers_opt:mo type:type method_declarator:decl throws_opt:to 
        {:
-               ParseNode pn=new ParseNode("method_header");
+               ParseNode pn=new ParseNode("method_header",parser.lexer.line_num);
                pn.addChild("modifiers").addChild(mo);
                pn.addChild("returntype").addChild(type);
+               pn.addChild("throws").addChild(to);
                pn.addChild(decl);
                RESULT=pn;
        :}
-       |       modifiers_opt:mo VOID method_declarator:decl //throws_opt
+       |       modifiers_opt:mo VOID method_declarator:decl throws_opt:to
        {:
-               ParseNode pn=new ParseNode("method_header");
+               ParseNode pn=new ParseNode("method_header",parser.lexer.line_num);
                pn.addChild("modifiers").addChild(mo);
+               pn.addChild("throws").addChild(to);
                pn.addChild(decl);
                RESULT=pn;
        :}
        ;
 method_declarator ::=
                IDENTIFIER:id LPAREN formal_parameter_list_opt:params RPAREN {: 
-               ParseNode pn=new ParseNode("method_declarator");
+               ParseNode pn=new ParseNode("method_declarator",parser.lexer.line_num);
                pn.addChild("name").addChild(id);
                pn.addChild("parameters").addChild(params);
                RESULT=pn;
@@ -768,14 +1146,14 @@ method_declarator ::=
 // be careful; the above production also allows 'void foo() []'
        ;
 formal_parameter_list_opt ::=
-       {: RESULT=new ParseNode("empty"); :}
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        |       formal_parameter_list:fpl {: 
                RESULT=fpl;
        :}
        ;
 formal_parameter_list ::=
                formal_parameter:fp {: 
-               ParseNode pn=new ParseNode("formal_parameter_list");
+               ParseNode pn=new ParseNode("formal_parameter_list",parser.lexer.line_num);
                pn.addChild(fp);
                RESULT=pn;
        :}
@@ -786,123 +1164,320 @@ formal_parameter_list ::=
        ;
 formal_parameter ::=
                type:type variable_declarator_id:name {:
-               ParseNode pn=new ParseNode("formal_parameter");
+               ParseNode pn=new ParseNode("formal_parameter",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(name);
+               RESULT=pn;
+       :}
+       |
+               TAG variable_declarator_id:name {:
+               ParseNode pn=new ParseNode("tag_parameter",parser.lexer.line_num);
+               pn.addChild(name);
+               RESULT=pn;
+       :}
+       |       FINAL type:type variable_declarator_id:name {:
+               ParseNode pn=new ParseNode("formal_parameter",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(name);
+               RESULT=pn;
+       :}
+       |       annotations:an type:type variable_declarator_id:name {:
+               ParseNode pn=new ParseNode("annotation_parameter",parser.lexer.line_num);
                pn.addChild(type);
                pn.addChild(name);
+               pn.addChild(an);
                RESULT=pn;
        :}
-//     |       FINAL type variable_declarator_id
        ;
-//throws_opt ::=       
-//     |       throws
-//     ;
-//throws ::=   THROWS class_type_list
-//     ;
-//class_type_list ::=
-//             class_type
-//     |       class_type_list COMMA class_type
-//     ;
+throws_opt ::= 
+        {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
+       |       throws:trs
+           {: RESULT=trs; :}
+       ;
+throws ::=     THROWS class_type_list:ctl
+        {: RESULT=(new ParseNode("throw_list",parser.lexer.line_num)).addChild(ctl).getRoot(); :}
+       ;
+class_type_list ::=
+               class_type:ct
+               {: 
+               ParseNode pn=new ParseNode("class_type_list",parser.lexer.line_num);
+               pn.addChild(ct);
+               RESULT=pn; 
+               :}
+       |       class_type_list:ctl COMMA class_type:ct
+           {: 
+           ctl.addChild(ct);
+           RESULT=ctl; 
+           :}
+       ;
 method_body ::=        block:block {: 
                RESULT=block;
        :}
-       |       SEMICOLON       {: RESULT=new ParseNode("empty"); :}
+       |       SEMICOLON       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        ;
 
 // 19.8.4) Static Initializers
-//static_initializer ::=
-//             STATIC block
-//     ;
+static_initializer ::=
+               STATIC block:body {:
+               ParseNode pn=new ParseNode("static_block_declaration",parser.lexer.line_num);
+               pn.addChild("body").addChild(body);
+               RESULT=pn;
+       :}
+       ;
 
 // 19.8.5) Constructor Declarations
 constructor_declaration ::=
-               modifiers_opt:mo constructor_declarator:cd
-//throws_opt 
+               modifiers_opt:mo constructor_declarator:cd throws_opt:to 
                        constructor_body:body   {:
-               ParseNode pn=new ParseNode("constructor_declaration");
+               ParseNode pn=new ParseNode("constructor_declaration",parser.lexer.line_num);
                pn.addChild("modifiers").addChild(mo);
+               pn.addChild("throws").addChild(to);
+               pn.addChild(cd);
+               pn.addChild("body").addChild(body);
+               RESULT=pn;
+       :} |
+               modifiers_opt:mo GLOBAL constructor_declarator:cd throws_opt:to 
+                       constructor_body:body   {:
+               ParseNode pn=new ParseNode("constructor_declaration",parser.lexer.line_num);
+               pn.addChild("global");
+               pn.addChild("modifiers").addChild(mo);
+               pn.addChild("throws").addChild(to);
                pn.addChild(cd);
                pn.addChild("body").addChild(body);
                RESULT=pn;
        :}
-       ;
+;
+
 constructor_declarator ::=
                simple_name:name LPAREN formal_parameter_list_opt:fplo RPAREN {: 
-               ParseNode pn=new ParseNode("constructor_declarator");
+               ParseNode pn=new ParseNode("constructor_declarator",parser.lexer.line_num);
                pn.addChild(name);
                pn.addChild("parameters").addChild(fplo);
                RESULT=pn;
        :}
        ;
 constructor_body ::=
-//             LBRACE explicit_constructor_invocation:eci block_statements:bs RBRACE |
-//             LBRACE explicit_constructor_invocation RBRACE |
+               LBRACE explicit_constructor_invocation:eci block_statements:bs RBRACE {: 
+                       ParseNode pn=new ParseNode("constructor_body",parser.lexer.line_num);
+                       pn.addChild(eci);
+                       pn.addChild(bs);
+                       RESULT=pn;
+       :} |
+               LBRACE explicit_constructor_invocation:eci RBRACE {: 
+                       ParseNode pn=new ParseNode("constructor_body",parser.lexer.line_num);
+                       pn.addChild(eci);
+                       RESULT=pn;
+       :} |
                LBRACE block_statements:block RBRACE {: 
-               ParseNode pn=new ParseNode("constructor_body");
+               ParseNode pn=new ParseNode("constructor_body",parser.lexer.line_num);
                pn.addChild(block);
                RESULT=pn;
        :}
-       |       LBRACE RBRACE {: RESULT=new ParseNode("empty"); :}
+       |       LBRACE RBRACE {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
+       ;
+explicit_constructor_invocation ::=
+       THIS LPAREN argument_list_opt:alo RPAREN SEMICOLON {:
+            ParseNode pn=new ParseNode("explconstrinv",parser.lexer.line_num);
+            pn.addChild(alo);
+            RESULT=pn;
+       :}
+       |       
+SUPER LPAREN argument_list_opt:alo RPAREN SEMICOLON {: 
+       ParseNode pn=new ParseNode("superinvoke",parser.lexer.line_num);
+       pn.addChild(alo);
+       RESULT=pn;
+:}
+       |       primary DOT THIS LPAREN argument_list_opt RPAREN SEMICOLON
+       |       primary DOT SUPER LPAREN argument_list_opt RPAREN SEMICOLON
        ;
-//explicit_constructor_invocation ::=
-//             THIS LPAREN argument_list_opt RPAREN SEMICOLON
-//     |       SUPER LPAREN argument_list_opt RPAREN SEMICOLON
-//     |       primary DOT THIS LPAREN argument_list_opt RPAREN SEMICOLON
-//     |       primary DOT SUPER LPAREN argument_list_opt RPAREN SEMICOLON
-//     ;
 
 // 19.9) Interfaces
 
 // 19.9.1) Interface Declarations
-//interface_declaration ::=
-//               modifiers_opt INTERFACE IDENTIFIER extends_interfaces_opt
-//                       interface_body
-//       ;
-//extends_interfaces_opt ::=
-//       |       extends_interfaces
-//       ;
-//extends_interfaces ::=
-//               EXTENDS interface_type
-//       |       extends_interfaces COMMA interface_type
-//       ;
-//interface_body ::=
-//               LBRACE interface_member_declarations_opt RBRACE
-//       ;
-//interface_member_declarations_opt ::=
-//       |       interface_member_declarations
-//       ;
-//interface_member_declarations ::=
-//               interface_member_declaration
-//       |       interface_member_declarations interface_member_declaration
-//       ;
-//interface_member_declaration ::=
-//               constant_declaration
-//       |       abstract_method_declaration
-//       |       class_declaration
-//       |       interface_declaration
-//       |       SEMICOLON
-//       ;
-//constant_declaration ::=
-//               field_declaration
-//       // need to semantically check that modifiers of field declaration
-//       // include only PUBLIC, STATIC, or FINAL.  Other modifiers are
-//       // disallowed.
-//       ;
-//abstract_method_declaration ::=
-//               method_header SEMICOLON
-//       ;
+interface_declaration ::=
+               modifiers_opt:mo INTERFACE IDENTIFIER:id extends_interfaces_opt:io
+                       interface_body:body
+       {:
+       ParseNode pn=new ParseNode("interface_declaration",parser.lexer.line_num);
+       pn.addChild("modifiers").addChild(mo);
+       pn.addChild("name").addChild(id);
+       pn.addChild("superIF").addChild(io);
+       pn.addChild("interfacebody").addChild(body);
+       RESULT=pn;
+       :}
+       | annotation_type_declaration:atd{:
+        RESULT=atd;
+       :}
+       ;
+extends_interfaces_opt ::=
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
+       |       extends_interfaces:eifs {: RESULT=eifs; :}
+       ;
+extends_interfaces ::=
+               EXTENDS interface_type:ift 
+               {: 
+               ParseNode pn=new ParseNode("extend_interface_list",parser.lexer.line_num);
+               pn.addChild(ift);
+               RESULT=pn; 
+               :}
+     |       extends_interfaces:eifs COMMA interface_type:ift
+             {:
+             eifs.addChild(ift);
+             RESULT=eifs;
+             :}
+       ;
+interface_body ::=
+               LBRACE interface_member_declarations_opt:imdo RBRACE
+               {: RESULT=imdo; :}
+       ;
+interface_member_declarations_opt ::=
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
+       |       interface_member_declarations:imd {: RESULT=imd; :}
+       ;
+interface_member_declarations ::=
+               interface_member_declaration:imd {: 
+                       ParseNode pn=new ParseNode("interface_member_declaration_list",parser.lexer.line_num);
+                       pn.addChild(imd);
+                       RESULT=pn;
+               :}
+       |       interface_member_declarations:imds interface_member_declaration:imd {: 
+                       imds.addChild(imd);
+                       RESULT=imds;
+               :}
+       ;
+interface_member_declaration ::=
+               constant_declaration:constant {: 
+               RESULT=(new ParseNode("constant",parser.lexer.line_num)).addChild(constant).getRoot();
+       :}
+       |       abstract_method_declaration:method {:
+       RESULT=(new ParseNode("method",parser.lexer.line_num)).addChild(method).getRoot(); 
+       :}
+          |    enum_declaration:ed {:
+          RESULT=(new ParseNode("enum_declaration",parser.lexer.line_num)).addChild(ed).getRoot();
+          :}
+//       |       class_declaration:class 
+       |       interface_declaration:interfaced {: RESULT=interfaced; :}
+       |       SEMICOLON {: 
+       RESULT=new ParseNode("empty",parser.lexer.line_num); 
+       :}
+       ;
+constant_declaration ::=
+               field_declaration:fd {: RESULT=fd; :}
+       // need to semantically check that modifiers of field declaration
+       // include only PUBLIC, STATIC, or FINAL.  Other modifiers are
+       // disallowed.
+       ;
+abstract_method_declaration ::=
+               method_header:header SEMICOLON {:
+               ParseNode pn=new ParseNode("method_declaration",parser.lexer.line_num);
+               pn.addChild("header").addChild(header);
+               pn.addChild("body").addChild(new ParseNode("empty",parser.lexer.line_num));
+               RESULT=pn;
+       :}
+       ;
+
+annotation_type_declaration ::=
+               AT INTERFACE IDENTIFIER:id annotation_type_body:atb{:
+               ParseNode pn=new ParseNode("annotation_type_declaration",parser.lexer.line_num);
+               pn.addChild("name").addChild(id);
+               pn.addChild("body").addChild(atb);
+               RESULT=pn;
 
+       :}
+       |       modifiers_at:ma INTERFACE IDENTIFIER:id annotation_type_body:atb{:
+               ParseNode pn=new ParseNode("annotation_type_declaration",parser.lexer.line_num);
+               pn.addChild("name").addChild(id);
+               pn.addChild("modifiers").addChild(ma);
+               pn.addChild("body").addChild(atb);              
+               RESULT=pn;              
+       :}
+       ;
+annotation_type_body ::=
+               LBRACE annotation_type_element_declarations_opt:atedo RBRACE{:
+               RESULT=atedo;
+       :}
+       ;
+annotation_type_element_declarations_opt ::={:
+               RESULT=new ParseNode("empty",parser.lexer.line_num);
+        :}
+       |       annotation_type_element_declarations:ated{:
+               RESULT=ated;
+       :}
+       ;
+annotation_type_element_declarations ::=
+               annotation_type_element_declaration:ated{:
+               ParseNode pn=new ParseNode("annotation_type_element_list",parser.lexer.line_num);
+               pn.addChild(ated);
+               RESULT=pn;
+       :}
+        |      annotation_type_element_declarations:ateds annotation_type_element_declaration:ated{:
+               ateds.addChild(ated);
+               RESULT=ateds;   
+       :}
+       ;
+annotation_type_element_declaration ::=
+               constant_declaration:cd {:
+               RESULT=cd;              
+       :}
+       |       modifiers_opt:mo type:type IDENTIFIER:id LPAREN RPAREN default_value_opt:dvo SEMICOLON {:
+               ParseNode pn=new ParseNode("annotation_type_element_declaration",parser.lexer.line_num);        
+               pn.addChild("modifier").addChild(mo);   
+               pn.addChild("type").addChild(type);
+               pn.addChild("name").addChild(id);
+               pn.addChild("defaultvalue").addChild(dvo);
+               RESULT=pn;
+       :}
+        |      class_declaration:cd{:
+               RESULT=cd;
+       :} 
+        |      enum_declaration:ed{:
+               RESULT=ed;
+       :}
+        |      interface_declaration:id{:
+               RESULT=id;
+       :}
+       |       SEMICOLON{:
+               RESULT=new ParseNode("empty",parser.lexer.line_num);
+       :}
+        ;
+default_value_opt ::= {:
+               RESULT=new ParseNode("empty",parser.lexer.line_num);
+        :}
+        |      default_value:dv{:
+               RESULT=dv;
+       :}
+        ;
+default_value ::= DEFAULT element_value:ev {:
+             RESULT=ev;
+       :}
+        ;
 
 // 19.10) Arrays
-//array_initializer ::=
-//             LBRACE variable_initializers COMMA RBRACE
-//     |       LBRACE variable_initializers RBRACE
-//     |       LBRACE COMMA RBRACE
-//     |       LBRACE RBRACE
-//     ;
-//variable_initializers ::=
-//             variable_initializer
-//     |       variable_initializers COMMA variable_initializer
-//     ;
+array_initializer ::=
+               LBRACE variable_initializers:var_init_list COMMA RBRACE {:
+                      RESULT=var_init_list;
+               :}
+       |       LBRACE variable_initializers:var_init_list RBRACE {:
+                      RESULT=var_init_list;
+               :}
+       |       LBRACE COMMA RBRACE {:
+                      RESULT=new ParseNode("empty",parser.lexer.line_num);                    
+               :}
+       |       LBRACE RBRACE {:
+                      RESULT=new ParseNode("empty",parser.lexer.line_num);
+               :}
+       ;
+variable_initializers ::=
+               variable_initializer:var_init {:
+                      ParseNode pn=new ParseNode("var_init_list",parser.lexer.line_num);
+                      pn.addChild(var_init);
+                      RESULT=pn;
+               :}
+       |       variable_initializers:var_init_list COMMA variable_initializer:var_init {:
+                      var_init_list.addChild(var_init);
+                      RESULT=var_init_list;
+               :}
+       ;
 
 // 19.11) Blocks and Statements
 block ::=      LBRACE block_statements_opt:bso RBRACE {: 
@@ -910,14 +1485,14 @@ block ::=        LBRACE block_statements_opt:bso RBRACE {:
        :}
        ;
 block_statements_opt ::=
-       {: RESULT=new ParseNode("empty"); :}
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        |       block_statements:bs {: 
        RESULT=bs;
        :}
        ;
 block_statements ::=
                block_statement:bs {:
-       ParseNode pn=new ParseNode("block_statement_list");
+       ParseNode pn=new ParseNode("block_statement_list",parser.lexer.line_num);
        pn.addChild(bs);
        RESULT=pn;
        :}
@@ -927,15 +1502,29 @@ block_statements ::=
        :}
        ;
 block_statement ::=
-               local_variable_declaration_statement:lvds {: 
+       tag_variable_declaration_statement:tvds {:
+               RESULT=tvds;
+       :}              
+       |       local_variable_declaration_statement:lvds {: 
                RESULT=lvds;
        :}
        |       statement:statement {: 
                RESULT=statement;
        :}
+//     |       enum_declaration:ed {:
+//             RESULT=ed;
+//     :}
 //     |       class_declaration
 //     |       interface_declaration
        ;
+tag_variable_declaration_statement ::=
+               TAG IDENTIFIER:id EQ NEW TAG LPAREN IDENTIFIER:type RPAREN SEMICOLON {: 
+               ParseNode pn=new ParseNode("tag_declaration",parser.lexer.line_num);
+               pn.addChild("single").addChild(id);
+               pn.addChild("type").addChild(type);
+               RESULT=pn;
+       :}
+       ;
 local_variable_declaration_statement ::=
                local_variable_declaration:lvd SEMICOLON {: 
                RESULT=lvd;
@@ -943,17 +1532,25 @@ local_variable_declaration_statement ::=
        ;
 local_variable_declaration ::=
                type:type variable_declarators:var {: 
-               ParseNode pn=new ParseNode("local_variable_declaration");
+               ParseNode pn=new ParseNode("local_variable_declaration",parser.lexer.line_num);
                pn.addChild(type);
                pn.addChild(var);
                RESULT=pn;
-:}
-//     |       FINAL type variable_declarators
+       :}
+//     |       FINAL type:type variable_declarators:var {: 
+         /* CAUTION:  only FINAL and annotations are legal modifiers here */
+       |       modifiers:mo type:type variable_declarators:var {:
+               ParseNode pn=new ParseNode("local_variable_declaration",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(var);
+               pn.addChild("modifiers").addChild(mo);
+               RESULT=pn;
+       :}
        ;
 statement ::=  statement_without_trailing_substatement:st {: 
                RESULT=st;
        :}
-//     |       labeled_statement:st {: RESULT=st; :}
+       |       labeled_statement:st {: RESULT=st; :}
        |       if_then_statement:st {: RESULT=st; :}
        |       if_then_else_statement:st {: RESULT=st; :}
        |       while_statement:st {: RESULT=st; :}
@@ -961,7 +1558,7 @@ statement ::=      statement_without_trailing_substatement:st {:
        ;
 statement_no_short_if ::=
                statement_without_trailing_substatement:st {: RESULT=st; :}
-//     |       labeled_statement_no_short_if:st {: RESULT=st; :}
+       |       labeled_statement_no_short_if:st {: RESULT=st; :}
        |       if_then_else_statement_no_short_if:st {: RESULT=st; :}
        |       while_statement_no_short_if:st {: RESULT=st; :}
        |       for_statement_no_short_if:st {: RESULT=st; :}
@@ -970,29 +1567,43 @@ statement_without_trailing_substatement ::=
                block:st {: RESULT=st; :}
        |       empty_statement:st {: RESULT=st; :}
        |       expression_statement:st {: RESULT=st; :}
-//     |       switch_statement
+       |       switch_statement:st {: RESULT=st; :}
        |       do_statement:dos {:RESULT=dos; :}
        |       break_statement:st {: RESULT=st; :}
        |       continue_statement:st {: RESULT=st; :}
        |       return_statement:st {: RESULT=st; :}
        |       task_exitstatement:st {: RESULT=st; :}
-//     |       synchronized_statement
-//     |       throw_statement
-//     |       try_statement
+       |       atomic_statement:st {: RESULT=st; :}
+       |       sese_statement:st {: RESULT=st; :}
+       |       synchronized_statement:st {: RESULT=st; :}
+       |       genreach_statement:st {: RESULT=st; :}
+       |       gen_def_reach_statement:st {: RESULT=st; :}
+       |       throw_statement:st {: RESULT=st; :}
+       |       try_statement:st {: RESULT=st; :}
 //     |       assert_statement
        ;
 empty_statement ::=
-               SEMICOLON {: RESULT=new ParseNode("nop"); :}
+               SEMICOLON {: RESULT=new ParseNode("nop",parser.lexer.line_num); :}
+       ;
+labeled_statement ::=
+               IDENTIFIER:id COLON statement:st {:
+               ParseNode pn=new ParseNode("labeledstatement",parser.lexer.line_num);
+               pn.addChild("name").addChild(id);
+               pn.addChild("statement").addChild(st);
+               RESULT=pn;                              
+               :}
+       ;
+labeled_statement_no_short_if ::=
+               IDENTIFIER:id COLON statement_no_short_if:st {:
+               ParseNode pn=new ParseNode("labeledstatement",parser.lexer.line_num);
+               pn.addChild("name").addChild(id);
+               pn.addChild("statement").addChild(st);
+               RESULT=pn;                              
+               :}
        ;
-//labeled_statement ::=
-//             IDENTIFIER COLON statement
-//     ;
-//labeled_statement_no_short_if ::=
-//             IDENTIFIER COLON statement_no_short_if
-//     ;
 expression_statement ::=
                statement_expression:se SEMICOLON {: 
-               ParseNode pn=new ParseNode("expression");
+               ParseNode pn=new ParseNode("expression",parser.lexer.line_num);
                pn.addChild(se);
                RESULT=pn; :}
        ;
@@ -1007,7 +1618,7 @@ statement_expression ::=
        ;
 if_then_statement ::=
                IF LPAREN expression:exp RPAREN statement:st {: 
-               ParseNode pn=new ParseNode("ifstatement");
+               ParseNode pn=new ParseNode("ifstatement",parser.lexer.line_num);
                pn.addChild("condition").addChild(exp);
                pn.addChild("statement").addChild(st);
                RESULT=pn;
@@ -1016,7 +1627,7 @@ if_then_statement ::=
 if_then_else_statement ::=
                IF LPAREN expression:exp RPAREN statement_no_short_if:st
                        ELSE statement:else_st {:
-               ParseNode pn=new ParseNode("ifstatement");
+               ParseNode pn=new ParseNode("ifstatement",parser.lexer.line_num);
                pn.addChild("condition").addChild(exp);
                pn.addChild("statement").addChild(st);
                pn.addChild("else_statement").addChild(else_st);
@@ -1026,41 +1637,97 @@ if_then_else_statement ::=
 if_then_else_statement_no_short_if ::=
                IF LPAREN expression:exp RPAREN statement_no_short_if:st
                        ELSE statement_no_short_if:else_st {:
-               ParseNode pn=new ParseNode("ifstatement");
+               ParseNode pn=new ParseNode("ifstatement",parser.lexer.line_num);
                pn.addChild("condition").addChild(exp);
                pn.addChild("statement").addChild(st);
                pn.addChild("else_statement").addChild(else_st);
                RESULT=pn;
        :}
        ;
-//switch_statement ::=
-//             SWITCH LPAREN expression RPAREN switch_block
-//     ;
-//switch_block ::=
-//             LBRACE switch_block_statement_groups switch_labels RBRACE
-//     |       LBRACE switch_block_statement_groups RBRACE
-//     |       LBRACE switch_labels RBRACE
-//     |       LBRACE RBRACE
-//     ;
-//switch_block_statement_groups ::=
-//             switch_block_statement_group
-//     |       switch_block_statement_groups switch_block_statement_group
-//     ;
-//switch_block_statement_group ::=
-//             switch_labels block_statements
-//     ;
-//switch_labels ::=
-//             switch_label
-//     |       switch_labels switch_label
-//     ;
-//switch_label ::=
-//             CASE constant_expression COLON
-//     |       DEFAULT COLON
-//     ;
+switch_statement ::=
+               SWITCH LPAREN expression:exp RPAREN switch_block:body
+               {:
+                   ParseNode pn=new ParseNode("switch_statement",parser.lexer.line_num);
+                   pn.addChild("condition").addChild(exp);
+                   pn.addChild("statement").addChild(body);
+                   RESULT=pn;
+               :}
+       ;
+switch_block ::=
+               LBRACE switch_block_statement_groups:sbsg switch_labels:sl RBRACE
+               {: 
+                   ParseNode pn = new ParseNode("switch_block",parser.lexer.line_num);
+                   pn.addChild("switch_labels").addChild(sl);
+                   pn.addChild("switch_statements").addChild(new ParseNode("empty",parser.lexer.line_num));
+                   sbsg.addChild(pn);
+                   RESULT=sbsg; 
+               :}
+       |       LBRACE switch_block_statement_groups:sbsg RBRACE
+           {: 
+                   RESULT=sbsg; 
+               :}
+       |       LBRACE switch_labels:sl RBRACE 
+           {: 
+               ParseNode pnb = new ParseNode("switch_block_list",parser.lexer.line_num);
+                   ParseNode pn = new ParseNode("switch_block",parser.lexer.line_num);
+                   pn.addChild("switch_labels").addChild(sl);
+                   pn.addChild("switch_statements").addChild(new ParseNode("empty",parser.lexer.line_num));
+                   pnb.addChild(pn);
+                   RESULT=pnb; 
+               :}
+       |       LBRACE RBRACE {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
+       ;
+switch_block_statement_groups ::=
+               switch_block_statement_group:sbsg
+               {: 
+                   ParseNode pn = new ParseNode("switch_block_list",parser.lexer.line_num);
+                   pn.addChild(sbsg);
+                   RESULT=pn;
+               :}
+       |       switch_block_statement_groups:sbsgs switch_block_statement_group:sbsg
+           {:
+               sbsgs.addChild(sbsg);
+               RESULT=sbsgs;
+           :}
+       ;
+switch_block_statement_group ::=
+               switch_labels:sls block_statements:body
+               {: 
+                   ParseNode pn=new ParseNode("switch_block",parser.lexer.line_num);
+                   pn.addChild("switch_labels").addChild(sls);
+                   pn.addChild("switch_statements").addChild(body);
+                   RESULT=pn; 
+               :}
+       ;
+switch_labels ::=
+               switch_label:sl
+               {: 
+                   ParseNode pn=new ParseNode("switch_label_list",parser.lexer.line_num);
+                   pn.addChild(sl);
+                   RESULT=pn; 
+               :}
+       |       switch_labels:sls switch_label:sl
+           {: 
+                   sls.addChild(sl); 
+                   RESULT=sls;
+               :}
+       ;
+switch_label ::=
+               CASE constant_expression:ce COLON
+               {: 
+                   ParseNode pn=new ParseNode("switch_label",parser.lexer.line_num);
+                   pn.addChild(ce);
+                   RESULT=pn;
+               :}
+       |       DEFAULT COLON
+           {: 
+                   RESULT=new ParseNode("default_switch_label",parser.lexer.line_num); 
+               :}
+       ;
 
 while_statement ::=
                WHILE LPAREN expression:exp RPAREN statement:st {: 
-               ParseNode pn=new ParseNode("whilestatement");
+               ParseNode pn=new ParseNode("whilestatement",parser.lexer.line_num);
                pn.addChild("condition").addChild(exp);
                pn.addChild("statement").addChild(st);
                RESULT=pn;
@@ -1068,7 +1735,7 @@ while_statement ::=
        ;
 while_statement_no_short_if ::=
                WHILE LPAREN expression:exp RPAREN statement_no_short_if:st {:
-               ParseNode pn=new ParseNode("whilestatement");
+               ParseNode pn=new ParseNode("whilestatement",parser.lexer.line_num);
                pn.addChild("condition").addChild(exp);
                pn.addChild("statement").addChild(st);
                RESULT=pn;
@@ -1076,7 +1743,7 @@ while_statement_no_short_if ::=
        ;
 do_statement ::=
                DO statement:st WHILE LPAREN expression:exp RPAREN SEMICOLON {: 
-               ParseNode pn=new ParseNode("dowhilestatement");
+               ParseNode pn=new ParseNode("dowhilestatement",parser.lexer.line_num);
                pn.addChild("condition").addChild(exp);
                pn.addChild("statement").addChild(st);
                RESULT=pn;
@@ -1085,7 +1752,7 @@ do_statement ::=
 for_statement ::=
                FOR LPAREN for_init_opt:init SEMICOLON expression_opt:exp SEMICOLON
                        for_update_opt:update RPAREN statement:st {: 
-               ParseNode pn=new ParseNode("forstatement");
+               ParseNode pn=new ParseNode("forstatement",parser.lexer.line_num);
                pn.addChild("initializer").addChild(init);
                pn.addChild("condition").addChild(exp);
                pn.addChild("update").addChild(update);
@@ -1096,7 +1763,7 @@ for_statement ::=
 for_statement_no_short_if ::=
                FOR LPAREN for_init_opt:init SEMICOLON expression_opt:exp SEMICOLON
                        for_update_opt:update RPAREN statement_no_short_if:st {:
-               ParseNode pn=new ParseNode("forstatement");
+               ParseNode pn=new ParseNode("forstatement",parser.lexer.line_num);
                pn.addChild("initializer").addChild(init);
                pn.addChild("condition").addChild(exp);
                pn.addChild("update").addChild(update);
@@ -1105,21 +1772,21 @@ for_statement_no_short_if ::=
                :}
        ;
 for_init_opt ::=
-       {: RESULT=new ParseNode("empty"); :}
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        |       for_init:init {: RESULT=init; :}
        ;
 for_init ::=   statement_expression_list:list {: RESULT=list; :}
        |       local_variable_declaration:decl {: RESULT=decl; :}
        ;
 for_update_opt ::=
-       {: RESULT=new ParseNode("empty"); :}
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        |       for_update:update {: RESULT=update; :}
        ;
 for_update ::= statement_expression_list:list {: RESULT=list; :}
        ;
 statement_expression_list ::=
                statement_expression:expr {: 
-               RESULT=(new ParseNode("statement_expression_list")).addChild(expr).getRoot();
+               RESULT=(new ParseNode("statement_expression_list",parser.lexer.line_num)).addChild(expr).getRoot();
        :}
        |       statement_expression_list:list COMMA statement_expression:expr {: 
                list.addChild(expr);
@@ -1127,47 +1794,123 @@ statement_expression_list ::=
        :}
        ;
 
-//identifier_opt ::= 
-//     |       IDENTIFIER
-//     ;
+identifier_opt ::= {: RESULT=new ParseNode("identifier_opt",parser.lexer.line_num);
+       :} 
+       |       IDENTIFIER:id {:
+               ParseNode pn=new ParseNode("identifier_opt",parser.lexer.line_num);
+               pn.addChild("name").addChild(id);
+               RESULT=pn;
+       :}
+       ;
 
 break_statement ::=
-               BREAK
-//identifier_opt 
-SEMICOLON {: RESULT=new ParseNode("break"); :}
+               BREAK identifier_opt:id SEMICOLON {: 
+               ParseNode pn=new ParseNode("break",parser.lexer.line_num);              
+               pn.addChild(id);
+               RESULT=pn;
+       :}
        ;
 
 continue_statement ::=
                CONTINUE  
 //identifier_opt 
 SEMICOLON
-{: RESULT=new ParseNode("continue"); :}
+{: RESULT=new ParseNode("continue",parser.lexer.line_num); :}
        ;
 return_statement ::=
                RETURN expression_opt:exp SEMICOLON {: 
-       RESULT=(new ParseNode("return")).addChild(exp).getRoot(); :}
+       RESULT=(new ParseNode("return",parser.lexer.line_num)).addChild(exp).getRoot(); :}
+       ;
+throw_statement ::=
+               THROW expression:exp SEMICOLON {:
+               RESULT=(new ParseNode("throwstatement",parser.lexer.line_num)).addChild(exp).getRoot();
+               :}
+       ;
+synchronized_statement ::=
+               SYNCHRONIZED LPAREN expression:e RPAREN block:b {: 
+               ParseNode pn=new ParseNode("synchronized",parser.lexer.line_num);
+               pn.addChild("expr").addChild(e);
+               pn.addChild("block").addChild(b);
+               RESULT=pn;
+               :}
+       ;
+atomic_statement ::=
+               ATOMIC block:blk {: 
+       RESULT=(new ParseNode("atomic",parser.lexer.line_num)).addChild(blk).getRoot();
+       :}
+       ;
+sese_statement ::=
+              SESE block:blk {: 
+              ParseNode pn = new ParseNode("sese",parser.lexer.line_num);
+              pn.addChild("body").addChild(blk);
+              RESULT=pn;
+       :}
+       |      SESE variable_declarator_id:id block:blk {: 
+              ParseNode pn = new ParseNode("sese",parser.lexer.line_num);
+              pn.addChild("body").addChild(blk);
+              pn.addChild("identifier").addChild(id);
+              RESULT=pn;
+       :}
+       |      RBLOCK block:blk {: 
+              ParseNode pn = new ParseNode("sese",parser.lexer.line_num);
+              pn.addChild("body").addChild(blk);
+              RESULT=pn;
+       :}
+       |      RBLOCK variable_declarator_id:id block:blk {: 
+              ParseNode pn = new ParseNode("sese",parser.lexer.line_num);
+              pn.addChild("body").addChild(blk);
+              pn.addChild("identifier").addChild(id);
+              RESULT=pn;
+       :}
+       ;
+try_statement ::=
+               TRY block:bk catches:ca
+               {: 
+               ParseNode pn=new ParseNode("trycatchstatement",parser.lexer.line_num);
+               pn.addChild("tryblock").addChild(bk); 
+               pn.addChild("catchblock").addChild(ca);
+               RESULT=pn;
+               :}
+       |       TRY block:bk catches_opt:ca finally:fi
+           {: 
+               ParseNode pn=new ParseNode("trycatchstatement",parser.lexer.line_num);
+               pn.addChild("tryblock").addChild(bk); 
+               pn.addChild("catchblock").addChild(ca);
+               pn.addChild("finallyblock").addChild(fi);
+               RESULT=pn;
+               :}
+       ;
+catches_opt ::=
+    {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
+       |       catches:ca
+       {: RESULT=ca; :}
+       ;
+catches ::=    catch_clause:ca
+        {:
+        ParseNode pn=new ParseNode("catchlist",parser.lexer.line_num);
+        pn.addChild(ca);
+        RESULT=pn;
+        :}
+       |       catches:cas catch_clause:ca 
+           {:
+           cas.addChild(ca);
+           RESULT=cas;
+           :}
+       ;
+catch_clause ::=
+               CATCH LPAREN formal_parameter:fp RPAREN block:bk
+               {:
+               ParseNode pn=new ParseNode("catchclause",parser.lexer.line_num);
+               pn.addChild("parameter").addChild(fp);
+               pn.addChild("block").addChild(bk);
+               RESULT=pn;
+               :}
+       ;
+finally ::=    FINALLY block:bk
+    {:
+    RESULT=bk;
+    :}
        ;
-//throw_statement ::=
-//             THROW expression SEMICOLON
-//     ;
-//synchronized_statement ::=
-//             SYNCHRONIZED LPAREN expression RPAREN block
-//     ;
-//try_statement ::=
-//             TRY block catches
-//     |       TRY block catches_opt finally
-//     ;
-//catches_opt ::=
-//     |       catches
-//     ;
-//catches ::=  catch_clause
-//     |       catches catch_clause
-//     ;
-//catch_clause ::=
-//             CATCH LPAREN formal_parameter RPAREN block
-//     ;
-//finally ::=  FINALLY block
-//     ;
 //assert_statement ::=
 //             ASSERT expression SEMICOLON
 //     |       ASSERT expression COLON expression SEMICOLON
@@ -1176,54 +1919,177 @@ return_statement ::=
 // 19.12) Expressions
 primary ::=    primary_no_new_array:st {: 
                RESULT=st; :}
-//     |       array_creation_init:st {: 
-//             RESULT=st;
-//     :}
+       |       array_creation_init:st {: 
+               RESULT=st;
+       :}
        |       array_creation_uninit:st {:
                RESULT=st;
        :}
        ;
 primary_no_new_array ::=
                literal:lit {: RESULT=lit; :}
-       |       THIS {: RESULT=new ParseNode("this"); :}
+       |       THIS {: RESULT=new ParseNode("this",parser.lexer.line_num); :}
        |       LPAREN expression:exp RPAREN {: RESULT=exp; :}
        |       class_instance_creation_expression:exp {: RESULT=exp; :}
        |       field_access:exp {: RESULT=exp; :}
        |       method_invocation:exp {: RESULT=exp; :}
        |       array_access:exp {: RESULT=exp; :}
-//     |       primitive_type DOT CLASS
-//     |       VOID DOT CLASS
-//     |       array_type DOT CLASS
-//     |       name DOT CLASS
-//     |       name DOT THIS
+       |       ISAVAILABLE LPAREN IDENTIFIER:id RPAREN {: 
+               ParseNode pn=new ParseNode("isavailable",parser.lexer.line_num);
+               pn.addChild(id);
+               RESULT=pn;
+       :}
+       |       primitive_type:pt DOT CLASS {:
+           ParseNode pn=new ParseNode("class_type",parser.lexer.line_num);
+           pn.addChild(pt);
+           RESULT=pn;
+       :}
+       |       VOID DOT CLASS {: 
+           ParseNode pn=new ParseNode("class_type",parser.lexer.line_num);
+           pn.addChild("type").addChild("void");
+           RESULT=pn;
+        :}
+       |       array_type:at DOT CLASS {:
+           ParseNode pn=new ParseNode("class_type",parser.lexer.line_num);
+           pn.addChild(at);
+           RESULT=pn;
+       :}
+       |       name:name DOT CLASS {:
+           ParseNode pn=new ParseNode("class_type",parser.lexer.line_num);
+           pn.addChild("type").addChild("class").addChild(name);
+           RESULT=pn;
+       :}
+       |       name:name DOT THIS {: 
+           ParseNode pn=new ParseNode("parentclass",parser.lexer.line_num);
+           pn.addChild("name").addChild(name);
+           RESULT=pn;
+       :}
        ;
 class_instance_creation_expression ::=
-               NEW class_or_interface_type:type LPAREN argument_list_opt:args RPAREN flag_list_opt:feo {: 
-               ParseNode pn=new ParseNode("createobject");
+       NEWFLAG class_or_interface_type:type LPAREN argument_list_opt:args RPAREN flag_list_opt:feo {: 
+               ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
                pn.addChild(type);
                pn.addChild(args);
                pn.addChild(feo);
                RESULT=pn;
+       :} |
+       NEW class_or_interface_type:type LPAREN argument_list_opt:args RPAREN {: 
+               ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(args);
+               RESULT=pn;
+       :} 
+       //Global object
+       | GLOBAL NEW class_or_interface_type:type LPAREN argument_list_opt:args RPAREN {: 
+               ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(args);
+               pn.addChild("global");
+               RESULT=pn;
+       :}
+       | SCRATCH NEW class_or_interface_type:type LPAREN argument_list_opt:args RPAREN flag_list_opt:feo {: 
+               ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(args);
+               pn.addChild("scratch");
+               RESULT=pn;
+       :}
+       // Objects we want to track in disjointness analysis
+       | DISJOINT IDENTIFIER:id NEW class_or_interface_type:type LPAREN argument_list_opt:args RPAREN {: 
+               ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(args);
+               pn.addChild("disjoint").addChild(id);
+               RESULT=pn;
+       :}
+       | NEWFLAG class_or_interface_type:type LPAREN argument_list_opt:args RPAREN LBRACE RBRACE LBRACE tag_list:tl RBRACE {: 
+               ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(args);
+               pn.addChild(tl);
+               RESULT=pn;
+       :}
+       | NEWFLAG class_or_interface_type:type LPAREN argument_list_opt:args RPAREN LBRACE flag_list:fl RBRACE LBRACE tag_list:tl RBRACE {: 
+               ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(args);
+               pn.addChild(fl);
+               pn.addChild(tl);
+               RESULT=pn;
+       :}
+       |       NEW class_or_interface_type:type LPAREN argument_list_opt:args RPAREN class_body:body {: 
+               ParseNode pn=new ParseNode("createobjectcls",parser.lexer.line_num);          
+               pn.addChild(type);
+               pn.addChild(args);
+               pn.addChild("decl").addChild("classbody").addChild(body);
+               RESULT=pn;
+       :}
+       |       primary: base DOT NEW class_or_interface_type:type
+                       LPAREN argument_list_opt:args RPAREN {: 
+               ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(args);
+               pn.addChild( "base" ).addChild( base );
+               RESULT=pn;
+               
+       :}
+       |       primary: base DOT NEW class_or_interface_type:type
+                       LPAREN argument_list_opt:args RPAREN class_body:body {:
+               ParseNode pn=new ParseNode("createobjectcls",parser.lexer.line_num);          
+               pn.addChild(type);
+               pn.addChild(args);
+               pn.addChild( "base" ).addChild( base );
+               pn.addChild("decl").addChild("classbody").addChild(body);
+               RESULT=pn;
+       :}
+       |       name:id DOT NEW class_or_interface_type:type
+                       LPAREN argument_list_opt:args RPAREN {:
+               ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(args);
+               pn.addChild( "id" ).addChild( id );
+               RESULT=pn;
+       :}
+       |       name:id DOT NEW class_or_interface_type:type
+                       LPAREN argument_list_opt:args RPAREN class_body:body {:
+               ParseNode pn=new ParseNode("createobjectcls",parser.lexer.line_num);          
+               pn.addChild(type);
+               pn.addChild(args);
+               pn.addChild("decl").addChild("classbody").addChild(body);
+               pn.addChild( "id" ).addChild( id );
+               RESULT=pn;
+       :}
+       ;
+cons_argument_list_opt ::=
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
+       |       cons_argument_list:args {: RESULT=args; :}
+       ;
+
+cons_argument_list ::=
+               IDENTIFIER:id COLON expression:exp {:
+               ParseNode pn=new ParseNode("cons_argument_list",parser.lexer.line_num);
+               ParseNode pnarg=pn.addChild("binding");
+               pnarg.addChild("var").addChild(id);
+               pnarg.addChild("exp").addChild(exp);
+               RESULT=pn;
+       :}
+       |       argument_list:list COMMA IDENTIFIER:id COLON expression:exp {:
+               ParseNode pnarg=new ParseNode("binding",parser.lexer.line_num);
+               pnarg.addChild("var").addChild(id);
+               pnarg.addChild("exp").addChild(exp);
+               list.addChild(pnarg);
+               RESULT=list;
        :}
-//     |       NEW class_or_interface_type LPAREN argument_list_opt RPAREN class_body
-//     |       primary DOT NEW IDENTIFIER
-//                     LPAREN argument_list_opt RPAREN {: 
-//             
-//     :}
-//     |       primary DOT NEW IDENTIFIER
-//                     LPAREN argument_list_opt RPAREN class_body
-//     |       name DOT NEW IDENTIFIER
-//                     LPAREN argument_list_opt RPAREN
-//     |       name DOT NEW IDENTIFIER
-//                     LPAREN argument_list_opt RPAREN class_body
        ;
+
 argument_list_opt ::=
-       {: RESULT=new ParseNode("empty"); :}
+       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        |       argument_list:args {: RESULT=args; :}
        ;
+
 argument_list ::=
                expression:exp {:
-               ParseNode pn=new ParseNode("argument_list");
+               ParseNode pn=new ParseNode("argument_list",parser.lexer.line_num);
                pn.addChild(exp);
                RESULT=pn;
        :}
@@ -1234,26 +2100,86 @@ argument_list ::=
        ;
 array_creation_uninit ::=
                NEW primitive_type:type dim_exprs:dimexpr dims_opt:dims {: 
-               ParseNode pn=new ParseNode("createarray");
+               ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
                pn.addChild(type);
                pn.addChild(dimexpr);
                pn.addChild("dims_opt").setLiteral(dims);
                RESULT=pn;
                :}
        |       NEW class_or_interface_type:type dim_exprs:dimexpr dims_opt:dims {: 
-               ParseNode pn=new ParseNode("createarray");
+               ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
                pn.addChild(type);
                pn.addChild(dimexpr);
                pn.addChild("dims_opt").setLiteral(dims);
                RESULT=pn;
        :}
+       |       GLOBAL NEW primitive_type:type dim_exprs:dimexpr dims_opt:dims {: 
+               ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(dimexpr);
+               pn.addChild("dims_opt").setLiteral(dims);
+               pn.addChild("global");
+               RESULT=pn;
+               :}
+       |       SCRATCH NEW primitive_type:type dim_exprs:dimexpr dims_opt:dims {: 
+               ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(dimexpr);
+               pn.addChild("dims_opt").setLiteral(dims);
+               pn.addChild("scratch");
+               RESULT=pn;
+               :}
+       |       DISJOINT IDENTIFIER:id NEW primitive_type:type dim_exprs:dimexpr dims_opt:dims {: 
+               ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(dimexpr);
+               pn.addChild("dims_opt").setLiteral(dims);
+               pn.addChild("disjoint").addChild(id);
+               RESULT=pn;
+               :}
+       |       GLOBAL NEW class_or_interface_type:type dim_exprs:dimexpr dims_opt:dims {: 
+               ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(dimexpr);
+               pn.addChild("dims_opt").setLiteral(dims);
+               pn.addChild("global");
+               RESULT=pn;
+               :}
+       |       SCRATCH NEW class_or_interface_type:type dim_exprs:dimexpr dims_opt:dims {: 
+               ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(dimexpr);
+               pn.addChild("dims_opt").setLiteral(dims);
+               pn.addChild("scratch");
+               RESULT=pn;
+               :}
+       |       DISJOINT IDENTIFIER:id NEW class_or_interface_type:type dim_exprs:dimexpr dims_opt:dims {: 
+               ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild(dimexpr);
+               pn.addChild("dims_opt").setLiteral(dims);
+               pn.addChild("disjoint").addChild(id);           
+               RESULT=pn;
+               :}
+       ;
+array_creation_init ::=
+               NEW primitive_type:type dims:dims array_initializer:ai {: 
+               ParseNode pn=new ParseNode("createarray2",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild("dims_opt").setLiteral(dims);
+               pn.addChild("initializer").addChild(ai);
+               RESULT=pn;
+               :}
+       |       NEW class_or_interface_type:type dims:dims array_initializer:ai {: 
+               ParseNode pn=new ParseNode("createarray2",parser.lexer.line_num);
+               pn.addChild(type);
+               pn.addChild("dims_opt").setLiteral(dims);
+               pn.addChild("initializer").addChild(ai);
+               RESULT=pn;
+               :}
        ;
-//array_creation_init ::=
-//             NEW primitive_type dims array_initializer
-//     |       NEW class_or_interface_type dims array_initializer
-//     ;
 dim_exprs ::=  dim_expr:exp {: 
-               ParseNode pn=new ParseNode("dim_exprs");
+               ParseNode pn=new ParseNode("dim_exprs",parser.lexer.line_num);
                pn.addChild(exp);
                RESULT=pn; :}
        |       dim_exprs:base dim_expr:exp {: 
@@ -1273,51 +2199,69 @@ dims ::=        LBRACK RBRACK {: RESULT=new Integer(1); :}
 
 field_access ::=
                primary:base DOT IDENTIFIER:id {: 
-               ParseNode pn=new ParseNode("fieldaccess");
+               ParseNode pn=new ParseNode("fieldaccess",parser.lexer.line_num);
                pn.addChild("base").addChild(base);
                pn.addChild("field").addChild(id);
                RESULT=pn;
-:}
-//     |       SUPER DOT IDENTIFIER
-//     |       name DOT SUPER DOT IDENTIFIER
+    :}
+       |       SUPER DOT IDENTIFIER:id {: 
+               ParseNode pn=new ParseNode("superfieldaccess",parser.lexer.line_num);
+               pn.addChild("field").addChild(id);
+               RESULT=pn;
+    :}
+       |       name:name DOT SUPER DOT IDENTIFIER:id {: 
+               ParseNode pn=new ParseNode("supernamefieldaccess",parser.lexer.line_num);
+               pn.addChild("base").addChild(name);
+               pn.addChild("field").addChild(id);
+               RESULT=pn;
+    :}
        ;
 method_invocation ::=
                name:name LPAREN argument_list_opt:args RPAREN {: 
-               ParseNode pn=new ParseNode("methodinvoke1");
+               ParseNode pn=new ParseNode("methodinvoke1",parser.lexer.line_num);
                pn.addChild(name);
                pn.addChild(args);
                RESULT=pn;
        :}
        |       primary:base DOT IDENTIFIER:name LPAREN argument_list_opt:args RPAREN {: 
-               ParseNode pn=new ParseNode("methodinvoke2");
+               ParseNode pn=new ParseNode("methodinvoke2",parser.lexer.line_num);
                pn.addChild("base").addChild(base);
                pn.addChild("id").addChild(name);
                pn.addChild(args);
                RESULT=pn;
        :}
-//     |       SUPER DOT IDENTIFIER LPAREN argument_list_opt RPAREN
+       |       SUPER DOT IDENTIFIER:id LPAREN argument_list_opt:args RPAREN {: 
+               ParseNode name=new ParseNode("name",parser.lexer.line_num);
+               name.addChild("base").addChild("name").addChild("identifier").addChild("super");
+               name.addChild("identifier").addChild(id);
+               ParseNode pn=new ParseNode("methodinvoke1",parser.lexer.line_num);
+               pn.addChild(name);
+               pn.addChild(args);
+               RESULT=pn;
+       :}
 //     |       name DOT SUPER DOT IDENTIFIER LPAREN argument_list_opt RPAREN
        ;
 array_access ::=
                name:name LBRACK expression:exp RBRACK {: 
-               ParseNode pn=new ParseNode("arrayaccess");
+               ParseNode pn=new ParseNode("arrayaccess",parser.lexer.line_num);
                pn.addChild("base").addChild(name);
                pn.addChild("index").addChild(exp);
                RESULT=pn;
        :}
        |       primary_no_new_array:base LBRACK expression:exp RBRACK {: 
-               ParseNode pn=new ParseNode("arrayaccess");
+               ParseNode pn=new ParseNode("arrayaccess",parser.lexer.line_num);
                pn.addChild("base").addChild(base);
                pn.addChild("index").addChild(exp);
                RESULT=pn;
        :}
 //     |       array_creation_init:init LBRACK expression:exp RBRACK {: 
-//             ParseNode pn=new ParseNode("arrayaccess");
+//             ParseNode pn=new ParseNode("arrayaccess",parser.lexer.line_num);
 //             pn.addChild("init").addChild(init);
 //             pn.addChild("index").addChild(exp);
 //             RESULT=pn;
 //     :}
        ;
+
 postfix_expression ::=
                primary:exp {: 
        RESULT=exp; :}
@@ -1327,73 +2271,91 @@ postfix_expression ::=
        ;
 postincrement_expression ::=
                postfix_expression:exp PLUSPLUS 
-               {: RESULT=(new ParseNode("postinc")).addChild(exp).getRoot(); :}
+               {: RESULT=(new ParseNode("postinc",parser.lexer.line_num)).addChild(exp).getRoot(); :}
        ;
 postdecrement_expression ::=
                postfix_expression:exp MINUSMINUS
-               {: RESULT=(new ParseNode("postdec")).addChild(exp).getRoot(); :}
+               {: RESULT=(new ParseNode("postdec",parser.lexer.line_num)).addChild(exp).getRoot(); :}
        ;
 unary_expression ::=
                preincrement_expression:exp {: RESULT=exp; :}
        |       predecrement_expression:exp {: RESULT=exp; :}
        |       PLUS unary_expression:exp 
-       {: RESULT=(new ParseNode("unaryplus")).addChild(exp).getRoot(); :}
+       {: RESULT=(new ParseNode("unaryplus",parser.lexer.line_num)).addChild(exp).getRoot(); :}
        |       MINUS unary_expression:exp
-       {: RESULT=(new ParseNode("unaryminus")).addChild(exp).getRoot(); :}
+       {: RESULT=(new ParseNode("unaryminus",parser.lexer.line_num)).addChild(exp).getRoot(); :}
        |       unary_expression_not_plus_minus:exp {: 
                        RESULT=exp; :}
        ;
 preincrement_expression ::=
                PLUSPLUS unary_expression:exp
-               {: RESULT=(new ParseNode("preinc")).addChild(exp).getRoot(); :}
+               {: RESULT=(new ParseNode("preinc",parser.lexer.line_num)).addChild(exp).getRoot(); :}
        ;
 predecrement_expression ::=
                MINUSMINUS unary_expression:exp
-               {: RESULT=(new ParseNode("predec")).addChild(exp).getRoot(); :}
+               {: RESULT=(new ParseNode("predec",parser.lexer.line_num)).addChild(exp).getRoot(); :}
        ;
 unary_expression_not_plus_minus ::=
                postfix_expression:exp {: 
                RESULT=exp; :}
-//     |       COMP unary_expression
+       |       COMP unary_expression:exp
+               {: RESULT=(new ParseNode("comp",parser.lexer.line_num)).addChild(exp).getRoot(); :}
        |       NOT unary_expression:exp 
-               {: RESULT=(new ParseNode("not")).addChild(exp).getRoot(); :}
+               {: RESULT=(new ParseNode("not",parser.lexer.line_num)).addChild(exp).getRoot(); :}
        |       cast_expression:exp {: RESULT=exp; :}
        ;
 cast_expression ::=
-               LPAREN primitive_type:type
-       //dims_opt 
+               LPAREN primitive_type:type dims_opt:dims
                RPAREN unary_expression:exp {: 
-               ParseNode pn=new ParseNode("cast1");
+               ParseNode pn=new ParseNode("cast1",parser.lexer.line_num);
+if (dims.intValue()==0)
                pn.addChild("type").addChild(type);
+else {
+               ParseNode arrayt=pn.addChild("type").addChild("type").addChild("array");
+               arrayt.addChild("basetype").addChild(type);
+               arrayt.addChild("dims").setLiteral(dims);
+}
                pn.addChild("exp").addChild(exp);
                RESULT=pn;
        :}
        |       LPAREN expression:type RPAREN unary_expression_not_plus_minus:exp {: 
-               ParseNode pn=new ParseNode("cast2");
+               ParseNode pn=new ParseNode("cast2",parser.lexer.line_num);
                pn.addChild("type").addChild(type);
                pn.addChild("exp").addChild(exp);
                RESULT=pn;
 
        :}
-//     |       LPAREN name dims RPAREN unary_expression_not_plus_minus
+       |       LPAREN name:name dims:dims RPAREN unary_expression_not_plus_minus:exp {: 
+               ParseNode pn=new ParseNode("cast1",parser.lexer.line_num);
+if (dims.intValue()==0)
+               pn.addChild("type").addChild("class").addChild(name);
+else {
+               ParseNode arrayt=pn.addChild("type").addChild("type").addChild("array");
+               arrayt.addChild("basetype").addChild("type").addChild("class").addChild(name);
+               arrayt.addChild("dims").setLiteral(dims);
+}
+               pn.addChild("exp").addChild(exp);
+               RESULT=pn;
+
+       :}
        ;
 multiplicative_expression ::=
                unary_expression:exp {: 
                        RESULT=exp; :}
        |       multiplicative_expression:exp1 MULT unary_expression:exp2 {: 
-               ParseNode pn=new ParseNode("mult");
+               ParseNode pn=new ParseNode("mult",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
        :}
        |       multiplicative_expression:exp1 DIV unary_expression:exp2 {:
-               ParseNode pn=new ParseNode("div");
+               ParseNode pn=new ParseNode("div",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
        :}
        |       multiplicative_expression:exp1 MOD unary_expression:exp2 {:
-               ParseNode pn=new ParseNode("mod");
+               ParseNode pn=new ParseNode("mod",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
@@ -1403,13 +2365,13 @@ additive_expression ::=
                multiplicative_expression:exp {: 
                        RESULT=exp; :}
        |       additive_expression:exp1 PLUS multiplicative_expression:exp2 {: 
-               ParseNode pn=new ParseNode("add");
+               ParseNode pn=new ParseNode("add",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
        :}
        |       additive_expression:exp1 MINUS multiplicative_expression:exp2 {: 
-               ParseNode pn=new ParseNode("sub");
+               ParseNode pn=new ParseNode("sub",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
@@ -1419,60 +2381,70 @@ shift_expression ::=
                additive_expression:exp {: 
                        RESULT=exp; :}
        |       shift_expression:exp1 LSHIFT additive_expression:exp2 {: 
-               ParseNode pn=new ParseNode("leftshift");
+               ParseNode pn=new ParseNode("leftshift",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
        :}
        |       shift_expression:exp1 RSHIFT additive_expression:exp2 {: 
-               ParseNode pn=new ParseNode("rightshift");
+               ParseNode pn=new ParseNode("rightshift",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
        :}
-//     |       shift_expression URSHIFT additive_expression
+       |       shift_expression:exp1 URSHIFT additive_expression:exp2 {:
+               ParseNode pn=new ParseNode("urightshift",parser.lexer.line_num);
+               pn.addChild(exp1);      
+               pn.addChild(exp2);      
+               RESULT=pn;
+       :}
        ;
 relational_expression ::=
                shift_expression:exp {: 
                        RESULT=exp; :}
        |       relational_expression:exp1 LT shift_expression:exp2 {:
-               ParseNode pn=new ParseNode("comp_lt");
+               ParseNode pn=new ParseNode("comp_lt",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
        :}
        |       relational_expression:exp1 GT shift_expression:exp2 {:
-               ParseNode pn=new ParseNode("comp_gt");
+               ParseNode pn=new ParseNode("comp_gt",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
        :}
        |       relational_expression:exp1 LTEQ shift_expression:exp2 {:
-               ParseNode pn=new ParseNode("comp_lte");
+               ParseNode pn=new ParseNode("comp_lte",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
        :}
        |       relational_expression:exp1 GTEQ shift_expression:exp2 {:
-               ParseNode pn=new ParseNode("comp_gte");
+               ParseNode pn=new ParseNode("comp_gte",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
        :}
-//     |       relational_expression INSTANCEOF reference_type
+       |       relational_expression:exp INSTANCEOF reference_type:type {: 
+               ParseNode pn=new ParseNode("instanceof",parser.lexer.line_num);
+               pn.addChild("exp").addChild(exp);
+               pn.addChild(type);
+               RESULT=pn;
+       :}
        ;
 
 equality_expression ::=
                relational_expression:exp {: 
                        RESULT=exp; :}
        |       equality_expression:exp1 EQEQ relational_expression:exp2 {: 
-               ParseNode pn=new ParseNode("equal");
+               ParseNode pn=new ParseNode("equal",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
        :}
        |       equality_expression:exp1 NOTEQ relational_expression:exp2 {: 
-               ParseNode pn=new ParseNode("not_equal");
+               ParseNode pn=new ParseNode("not_equal",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
@@ -1482,7 +2454,7 @@ and_expression ::=
                equality_expression:exp {: 
                RESULT=exp; :}
        |       and_expression:exp1 AND equality_expression:exp2 {: 
-               ParseNode pn=new ParseNode("bitwise_and");
+               ParseNode pn=new ParseNode("bitwise_and",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
@@ -1493,7 +2465,7 @@ exclusive_or_expression ::=
                        RESULT=expr;
                :}
        |       exclusive_or_expression:exp1 XOR and_expression:exp2 {: 
-               ParseNode pn=new ParseNode("bitwise_xor");
+               ParseNode pn=new ParseNode("bitwise_xor",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
@@ -1503,7 +2475,7 @@ inclusive_or_expression ::=
                exclusive_or_expression:exclor {: 
                        RESULT=exclor; :}
        |       inclusive_or_expression:exp1 OR exclusive_or_expression:exp2 {: 
-               ParseNode pn=new ParseNode("bitwise_or");
+               ParseNode pn=new ParseNode("bitwise_or",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
@@ -1513,7 +2485,7 @@ conditional_and_expression ::=
                inclusive_or_expression:inclor {: 
                        RESULT=inclor; :}
        |       conditional_and_expression:exp1 ANDAND inclusive_or_expression:exp2 {:
-               ParseNode pn=new ParseNode("logical_and");
+               ParseNode pn=new ParseNode("logical_and",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
@@ -1523,7 +2495,7 @@ conditional_or_expression ::=
                conditional_and_expression:condand {: 
                        RESULT=condand; :}
        |       conditional_or_expression:exp1 OROR conditional_and_expression:exp2 {: 
-               ParseNode pn=new ParseNode("logical_or");
+               ParseNode pn=new ParseNode("logical_or",parser.lexer.line_num);
                pn.addChild(exp1);
                pn.addChild(exp2);
                RESULT=pn;
@@ -1532,20 +2504,37 @@ conditional_or_expression ::=
 conditional_expression ::=
                conditional_or_expression:condor {: 
                        RESULT=condor; :}
-//     |       conditional_or_expression QUESTION expression 
-//                     COLON conditional_expression
-       ;
+       |       conditional_or_expression:condor QUESTION expression:exptrue
+                       COLON conditional_expression:expfalse {: 
+                       ParseNode pn=new ParseNode("tert",parser.lexer.line_num);
+                       pn.addChild("cond").addChild(condor);
+                       pn.addChild("trueexpr").addChild(exptrue);
+                       pn.addChild("falseexpr").addChild(expfalse);
+                       RESULT=pn;
+                       :}
+       ;
+getoffset_expression ::=
+        GETOFFSET LBRACE class_or_interface_type:type COMMA IDENTIFIER:id RBRACE {:
+        ParseNode pn = new ParseNode("getoffset",parser.lexer.line_num);
+        pn.addChild(type);
+        pn.addChild("field").addChild(id);
+        RESULT = pn;
+      :}
+   ;
 assignment_expression ::=
                conditional_expression:expr {: 
                        RESULT=expr; :} |
                assignment:assign {: 
-                       RESULT=assign; :}
+                       RESULT=assign; :}             |
+        getoffset_expression:expr {:
+            RESULT=expr; :}
        ;
 // semantic check necessary here to ensure a valid left-hand side.
 // allowing a parenthesized variable here on the lhs was introduced in
 // JLS 2; thanks to Eric Blake for pointing this out.
 assignment ::= postfix_expression:lvalue assignment_operator:op assignment_expression:rvalue {:
-               ParseNode pn=new ParseNode("assignment");
+               ParseNode pn=new ParseNode("assignment",parser.lexer.line_num);
                pn.addChild("op").addChild(op);
                ParseNode pnargs=pn.addChild("args");
                pnargs.addChild(lvalue);
@@ -1554,27 +2543,49 @@ assignment ::=  postfix_expression:lvalue assignment_operator:op assignment_expre
         :}
        ;
 assignment_operator ::=
-               EQ {: RESULT=new ParseNode("eq"); :}
-       |       MULTEQ {: RESULT=new ParseNode("multeq"); :}
-       |       DIVEQ {: RESULT=new ParseNode("diveq"); :}
-       |       MODEQ {: RESULT=new ParseNode("modeq"); :}
-       |       PLUSEQ {: RESULT=new ParseNode("pluseq"); :}
-       |       MINUSEQ {: RESULT=new ParseNode("minuseq"); :}
-       |       LSHIFTEQ {: RESULT=new ParseNode("lshifteq"); :}
-       |       RSHIFTEQ {: RESULT=new ParseNode("rshifteq"); :}
-//     |       URSHIFTEQ {: RESULT=new ParseNode("urshifteq"); :}
-       |       ANDEQ {: RESULT=new ParseNode("andeq"); :}
-       |       XOREQ {: RESULT=new ParseNode("xoreq"); :}
-       |       OREQ {: RESULT=new ParseNode("oreq"); :}
+               EQ {: RESULT=new ParseNode("eq",parser.lexer.line_num); :}
+       |       MULTEQ {: RESULT=new ParseNode("multeq",parser.lexer.line_num); :}
+       |       DIVEQ {: RESULT=new ParseNode("diveq",parser.lexer.line_num); :}
+       |       MODEQ {: RESULT=new ParseNode("modeq",parser.lexer.line_num); :}
+       |       PLUSEQ {: RESULT=new ParseNode("pluseq",parser.lexer.line_num); :}
+       |       MINUSEQ {: RESULT=new ParseNode("minuseq",parser.lexer.line_num); :}
+       |       LSHIFTEQ {: RESULT=new ParseNode("lshifteq",parser.lexer.line_num); :}
+       |       RSHIFTEQ {: RESULT=new ParseNode("rshifteq",parser.lexer.line_num); :}
+       |       URSHIFTEQ {: RESULT=new ParseNode("urshifteq",parser.lexer.line_num); :}
+       |       ANDEQ {: RESULT=new ParseNode("andeq",parser.lexer.line_num); :}
+       |       XOREQ {: RESULT=new ParseNode("xoreq",parser.lexer.line_num); :}
+       |       OREQ {: RESULT=new ParseNode("oreq",parser.lexer.line_num); :}
        ;
 expression_opt ::=
-       {:      RESULT=new ParseNode("empty"); :}
+       {:      RESULT=new ParseNode("empty",parser.lexer.line_num); :}
        |       expression:exp {: 
                RESULT=exp; :}
        ;
 expression ::= assignment_expression:exp {: 
                RESULT=exp; :}
        ;
-//constant_expression ::=
-//             expression
-//     ;
+// note that this constraint must be enforced during semantic checking
+// 'constant_expression' should include enumerated constants.
+constant_expression ::=
+               expression:exp 
+               {:
+                   ParseNode pn = new ParseNode("constant_expression",parser.lexer.line_num);
+                   pn.addChild(exp);
+                   RESULT=pn;
+               :}
+       ;
+
+
+genreach_statement ::=
+               GENREACH IDENTIFIER:graphName SEMICOLON {: 
+               ParseNode pn=new ParseNode("genreach",parser.lexer.line_num);
+               pn.addChild("graphName").addChild(graphName);
+               RESULT=pn; :}
+       ;
+
+gen_def_reach_statement ::=
+               GEN_DEF_REACH IDENTIFIER:outputName SEMICOLON {: 
+               ParseNode pn=new ParseNode("gen_def_reach",parser.lexer.line_num);
+               pn.addChild("outputName").addChild(outputName);
+               RESULT=pn; :}
+       ;