f2de1ea088a626fa9c22c61f66006db1259f2afa
[IRC.git] / Robust / src / Parse / java14.cup
1 package Parse;
2
3 import java_cup.runtime.*;
4 import Lex.Lexer;
5 import IR.Tree.*;
6
7 /* Java 1.4 parser for CUP.  
8  * Copyright (C) 2002-2003 C. Scott Ananian <cananian@alumni.princeton.edu>
9  * This program is released under the terms of the GPL; see the file
10  * COPYING for more details.  There is NO WARRANTY on this code.
11  */
12
13 /*
14 JDK 1.4 Features added:
15   assertion statement.
16   statement_without_trailing_substatement ::= ...
17      |          assert_statement ;
18   assert_statement ::=
19                 ASSERT expression SEMICOLON
20         |       ASSERT expression COLON expression SEMICOLON
21         ;
22 */
23 parser code  {: 
24   Lexer lexer;
25
26   public Parser(Lexer l) {
27     this();
28     lexer=l;
29   }
30
31   public void syntax_error(java_cup.runtime.Symbol current) {
32     report_error("Syntax error (" + current.sym + ")", current);
33   }
34   public void report_error(String message, java_cup.runtime.Symbol info) {
35     lexer.errorMsg(message, info);
36   }
37 :};
38
39 scan with {: return lexer.nextToken(); :};
40
41 terminal BOOLEAN; // primitive_type
42 terminal BYTE, SHORT, INT, LONG, CHAR; // integral_type
43 terminal FLOAT, DOUBLE; // floating_point_type
44 terminal LBRACK, RBRACK; // array_type
45 terminal java.lang.String IDENTIFIER; // name
46 terminal DOT; // qualified_name
47 terminal SEMICOLON, MULT, COMMA, LBRACE, RBRACE, EQ, LPAREN, RPAREN, COLON;
48 terminal PACKAGE; // package_declaration
49 terminal IMPORT; // import_declaration
50 terminal PUBLIC, PROTECTED, PRIVATE; // modifier
51 terminal STATIC; // modifier
52 terminal ABSTRACT, FINAL, NATIVE, SYNCHRONIZED, TRANSIENT, VOLATILE;
53 terminal CLASS; // class_declaration
54 terminal EXTENDS; // super
55 terminal IMPLEMENTS; // interfaces
56 terminal VOID; // method_header
57 terminal THROWS; // throws
58 terminal THIS, SUPER; // explicit_constructor_invocation
59 terminal INTERFACE; // interface_declaration
60 terminal IF, ELSE; // if_then_statement, if_then_else_statement
61 terminal SWITCH; // switch_statement
62 terminal CASE, DEFAULT; // switch_label
63 terminal DO, WHILE; // while_statement, do_statement
64 terminal FOR; // for_statement
65 terminal BREAK; // break_statement
66 terminal CONTINUE; // continue_statement
67 terminal RETURN; // return_statement
68 terminal THROW; // throw_statement
69 terminal TRY; // try_statement
70 terminal CATCH; // catch_clause
71 terminal FINALLY; // finally
72 terminal NEW; // class_instance_creation_expression
73 terminal NEWFLAG; // class_instance_creation_expression
74 terminal PLUSPLUS; // postincrement_expression
75 terminal MINUSMINUS; // postdecrement_expression
76 terminal PLUS, MINUS, COMP, NOT, DIV, MOD;
77 terminal LSHIFT, RSHIFT, URSHIFT; // shift_expression
78 terminal LT, GT, LTEQ, GTEQ, INSTANCEOF; // relational_expression
79 terminal EQEQ, NOTEQ; // equality_expression
80 terminal AND; // and_expression
81 terminal XOR; // exclusive_or_expression
82 terminal OR;  // inclusive_or_expression
83 terminal ANDAND; // conditional_and_expression
84 terminal OROR; // conditional_or_expression
85 terminal QUESTION; // conditional_expression
86 terminal MULTEQ, DIVEQ, MODEQ, PLUSEQ, MINUSEQ; // assignment_operator
87 terminal LSHIFTEQ, RSHIFTEQ, URSHIFTEQ; // assignment_operator
88 terminal ANDEQ, XOREQ, OREQ; // assignment_operator
89 terminal AT;           // support annotations
90 terminal LOCDEF;          // declaration of location hierarchy
91
92 terminal java.lang.Number INTEGER_LITERAL;
93 terminal java.lang.Number FLOATING_POINT_LITERAL;
94 terminal java.lang.Boolean BOOLEAN_LITERAL;
95 terminal java.lang.Character CHARACTER_LITERAL;
96 terminal java.lang.String STRING_LITERAL;
97 terminal NULL_LITERAL;
98
99 // Reserved but unused:
100 terminal CONST, GOTO;
101 // strictfp keyword, new in Java 1.2
102 terminal STRICTFP;
103 // assert keyword, new in Java 1.4
104 terminal ASSERT; // assert_statement
105 // lexer compatibility with Java 1.5
106 terminal ELLIPSIS;
107 terminal ENUM;
108
109 // added for disjoint reachability analysis
110 terminal GENREACH;
111
112
113 // 19.2) The Syntactic Grammar
114 non terminal ParseNode goal;
115 // 19.3) Lexical Structure
116 non terminal ParseNode literal;
117 // 19.4) Types, Values, and Variables
118 non terminal ParseNode type, primitive_type, numeric_type;
119 non terminal ParseNode integral_type, floating_point_type;
120 non terminal ParseNode reference_type;
121 non terminal ParseNode class_or_interface_type;
122 non terminal ParseNode class_type;
123 non terminal ParseNode interface_type;
124 non terminal ParseNode array_type;
125 // 19.5) Names
126 non terminal ParseNode name, simple_name, qualified_name;
127 // 19.6) Packages
128 non terminal ParseNode compilation_unit;
129 non terminal ParseNode package_declaration_opt, package_declaration;
130 non terminal ParseNode import_declarations_opt, import_declarations;
131 non terminal ParseNode type_declarations_opt, type_declarations;
132 non terminal ParseNode import_declaration;
133 non terminal ParseNode single_type_import_declaration;
134 non terminal ParseNode type_import_on_demand_declaration;
135 non terminal ParseNode type_declaration;
136 // 19.7) Productions used only in the LALR(1) grammar
137 non terminal ParseNode modifiers_opt, modifiers, modifiers_at, modifier;
138 non terminal ParseNode mixed_modifiers, mixed_modifiers_at;
139 // 19.8.1) Class Declaration
140 non terminal ParseNode class_declaration, super, super_opt;
141 non terminal ParseNode interfaces, interfaces_opt, interface_type_list;
142 non terminal ParseNode class_body;
143 non terminal ParseNode class_body_declarations, class_body_declarations_opt;
144 non terminal ParseNode class_body_declaration, class_member_declaration;
145 // 19.8.2) Field Declarations
146 non terminal ParseNode field_declaration, variable_declarators, variable_declarator;
147 non terminal ParseNode variable_declarator_id;
148 non terminal ParseNode variable_initializer;
149 // 19.8.3) Method Declarations
150 non terminal ParseNode method_declaration, method_header, method_declarator;
151 non terminal ParseNode formal_parameter_list_opt, formal_parameter_list;
152 non terminal ParseNode formal_parameter;
153 non terminal ParseNode throws_opt;
154 non terminal ParseNode throws;
155 non terminal ParseNode class_type_list;
156 non terminal ParseNode method_body;
157 // 19.8.4) Static Initializers
158 non terminal ParseNode static_initializer;
159 // 19.8.5) Constructor Declarations
160 non terminal ParseNode constructor_declaration, constructor_declarator;
161 non terminal ParseNode constructor_body;
162 non terminal ParseNode explicit_constructor_invocation;
163 // 19.8.6) Location Hierarchy Declarations
164 non terminal ParseNode location_order_declaration, location_order_list, location_order;
165 // 19.9.1) Interface Declarations
166 non terminal ParseNode interface_declaration;
167 non terminal normal_interface_declaration, annotation_type_declaration;
168 non terminal ParseNode extends_interfaces_opt, extends_interfaces;
169 non terminal ParseNode interface_body;
170 non terminal ParseNode interface_member_declarations_opt, interface_member_declarations;
171 non terminal ParseNode interface_member_declaration, constant_declaration;
172 non terminal ParseNode abstract_method_declaration;
173 // 19.10) Arrays
174 non terminal ParseNode array_initializer;
175 non terminal ParseNode variable_initializers;
176 // 19.11) Blocks and Statements
177 non terminal ParseNode block;
178 non terminal ParseNode block_statements_opt, block_statements, block_statement;
179 non terminal ParseNode local_variable_declaration_statement, local_variable_declaration;
180 non terminal ParseNode statement, statement_no_short_if;
181 non terminal ParseNode statement_without_trailing_substatement;
182 non terminal ParseNode empty_statement;
183 //non terminal ParseNode labeled_statement, labeled_statement_no_short_if;
184 non terminal ParseNode expression_statement, statement_expression;
185 non terminal ParseNode if_then_statement;
186 non terminal ParseNode if_then_else_statement, if_then_else_statement_no_short_if;
187 non terminal ParseNode switch_statement, switch_block;
188 non terminal ParseNode switch_block_statement_groups;
189 non terminal ParseNode switch_block_statement_group;
190 non terminal ParseNode switch_labels, switch_label;
191 non terminal ParseNode while_statement, while_statement_no_short_if;
192 non terminal ParseNode do_statement;
193 non terminal ParseNode for_statement, for_statement_no_short_if;
194 non terminal ParseNode for_init_opt, for_init;
195 non terminal ParseNode for_update_opt, for_update;
196 non terminal ParseNode statement_expression_list;
197 //non terminal ParseNode identifier_opt;
198 non terminal ParseNode break_statement, continue_statement;
199 non terminal ParseNode return_statement;
200 non terminal ParseNode throw_statement;
201 non terminal ParseNode synchronized_statement;
202 non terminal ParseNode try_statement;
203 non terminal ParseNode catches_opt;
204 non terminal ParseNode catches, catch_clause;
205 non terminal ParseNode finally;
206 //non terminal ParseNode assert_statement;
207 non terminal ParseNode genreach_statement;
208 // 19.12) Expressions
209 non terminal ParseNode primary, primary_no_new_array;
210 non terminal ParseNode class_instance_creation_expression;
211 non terminal ParseNode cons_argument_list_opt, cons_argument_list;
212 non terminal ParseNode argument_list_opt, argument_list;
213 non terminal ParseNode array_creation_init;
214 non terminal ParseNode array_creation_uninit;
215 non terminal ParseNode dim_exprs, dim_expr;
216 non terminal Integer dims_opt, dims;
217 non terminal ParseNode field_access, method_invocation;
218 non terminal ParseNode array_access;
219 non terminal ParseNode postfix_expression;
220 non terminal ParseNode postincrement_expression, postdecrement_expression;
221 non terminal ParseNode unary_expression, unary_expression_not_plus_minus;
222 non terminal ParseNode preincrement_expression, predecrement_expression;
223 non terminal ParseNode cast_expression;
224 non terminal ParseNode multiplicative_expression, additive_expression;
225 non terminal ParseNode shift_expression, relational_expression, equality_expression;
226 non terminal ParseNode and_expression, exclusive_or_expression, inclusive_or_expression;
227 non terminal ParseNode conditional_and_expression, conditional_or_expression;
228 non terminal ParseNode conditional_expression;
229 non terminal ParseNode assignment_expression;
230 non terminal ParseNode assignment;
231 non terminal ParseNode assignment_operator;
232 non terminal ParseNode expression_opt, expression;
233 non terminal ParseNode constant_expression;
234 //failure aware computation keywords
235 terminal FLAG;
236 terminal OPTIONAL;
237 terminal ISAVAILABLE;
238 terminal EXTERNAL;
239 terminal TAG;
240 terminal TASK;
241 terminal TASKEXIT;
242 non terminal ParseNode flag_declaration;
243 non terminal ParseNode task_declaration;
244 non terminal ParseNode task_parameter_list;
245 non terminal ParseNode task_parameter;
246 non terminal ParseNode flag_expression;
247 non terminal ParseNode flag_andexpression;
248 non terminal ParseNode flag_notexpression;
249 non terminal ParseNode task_exitstatement;
250 non terminal ParseNode flag_effects_opt;
251 non terminal ParseNode flag_effects;
252 non terminal ParseNode flag_effect;
253 non terminal ParseNode flag_list;
254 non terminal ParseNode flag_list_opt;
255 non terminal ParseNode flag_change;
256
257 non terminal ParseNode cons_checks_opt;
258 non terminal ParseNode cons_checks;
259 non terminal ParseNode cons_check;
260
261 non terminal ParseNode tag_variable_declaration_statement;
262 non terminal ParseNode tag_expression_list;
263 non terminal ParseNode tag_expression;
264 non terminal ParseNode tag_list;
265 non terminal ParseNode tag_list_opt;
266 non terminal ParseNode tag_change;
267
268 //distributed transaction keywords
269 terminal ATOMIC;
270 terminal GLOBAL;
271 terminal SCRATCH;
272 terminal GETOFFSET;
273 non terminal ParseNode atomic_statement;
274 non terminal ParseNode getoffset_expression;
275
276 //disjointness for Java
277 terminal DISJOINT;
278
279 //coarse-grain parallelization
280 terminal SESE;
281 terminal RBLOCK;
282 non terminal ParseNode sese_statement;
283
284 // mgc
285 // JSR-201) Enum Declaration
286 non terminal ParseNode enum_declaration;
287 non terminal ParseNode enum_body, enum_constants_opt, enum_constants, enum_constant;
288 //non terminal ParseNode enum_arguments_opt, enum_body_declarations_opt;
289
290 // annotation expressions
291 non terminal ParseNode annotations_opt, annotations, annotations_at, annotation, annotation_body;
292 non terminal ParseNode normal_annotation_body, marker_annotation_body;
293 non terminal ParseNode single_element_annotation_body;
294 non terminal ParseNode annotation_type_body, annotation_type_element_declarations;
295 non terminal ParseNode annotation_type_element_declarations_opt;
296 non terminal ParseNode annotation_type_element_declaration, default_value_opt, default_value;
297 non terminal ParseNode element_value_pairs_opt, element_value_pairs, element_value_pair;
298 non terminal ParseNode element_values_opt, element_values, element_value, element_value_array_initializer;
299
300 start with goal;
301
302
303 // Task declarations
304 task_declaration ::= 
305         TASK IDENTIFIER:id LPAREN task_parameter_list:tpl RPAREN 
306         flag_effects_opt:feo
307         method_body:body 
308         {: 
309         ParseNode pn=new ParseNode("task_declaration",parser.lexer.line_num);
310         pn.addChild("name").addChild(id);
311         pn.addChild(tpl);
312         pn.addChild(feo);
313         pn.addChild("body").addChild(body);     
314         RESULT=pn;
315         :};
316
317 task_parameter_list ::=
318                 task_parameter:fp {: 
319                 ParseNode pn=new ParseNode("task_parameter_list",parser.lexer.line_num);
320                 pn.addChild(fp);
321                 RESULT=pn;
322         :}
323         |       task_parameter_list:fpl COMMA task_parameter:fp {: 
324                 fpl.addChild(fp);
325                 RESULT=fpl;
326         :}
327         ;
328
329 task_parameter ::=
330                 type:type variable_declarator_id:name LBRACE flag_expression:exp RBRACE {:
331                 ParseNode pn=new ParseNode("task_parameter",parser.lexer.line_num);
332                 pn.addChild(type);
333                 pn.addChild(name);
334                 pn.addChild("flag").addChild(exp);
335                 RESULT=pn;
336         :} 
337         | type:type variable_declarator_id:name LBRACE flag_expression:exp RBRACE LBRACE tag_expression_list:texp RBRACE {:
338                 ParseNode pn=new ParseNode("task_parameter",parser.lexer.line_num);
339                 pn.addChild(type);
340                 pn.addChild(name);
341                 pn.addChild("flag").addChild(exp);
342                 pn.addChild("tag").addChild(texp);
343                 RESULT=pn;
344         :}
345         | type:type variable_declarator_id:name LBRACE RBRACE LBRACE tag_expression_list:texp RBRACE {:
346                 ParseNode pn=new ParseNode("task_parameter",parser.lexer.line_num);
347                 pn.addChild(type);
348                 pn.addChild(name);
349                 pn.addChild("tag").addChild(texp);
350                 RESULT=pn;
351         :}
352         | OPTIONAL task_parameter:fp {:
353                 ParseNode pn=new ParseNode("task_parameter",parser.lexer.line_num);
354                 pn.addChild("optional").addChild(fp);
355                 RESULT=pn;
356         :}              
357         
358         ;
359
360 tag_expression_list ::= tag_expression:te {: 
361         ParseNode pn=new ParseNode("tag_expression_list",parser.lexer.line_num);
362         pn.addChild(te);
363         RESULT=pn;
364         :}
365         | tag_expression_list:tel COMMA tag_expression:te {: 
366         tel.addChild(te);
367         RESULT=tel;
368         :}
369         ;
370
371 tag_expression ::= IDENTIFIER:type IDENTIFIER:id {: 
372                 ParseNode pn=new ParseNode("tag_expression",parser.lexer.line_num);
373                 pn.addChild("type").addChild(type);
374                 pn.addChild("single").addChild(id);
375                 RESULT=pn;
376         :}
377         ;
378
379 tag_list_opt ::= LBRACE tag_list:fl RBRACE {:RESULT=fl;:}
380         | LBRACE RBRACE {: RESULT = new ParseNode("empty",parser.lexer.line_num); :}    
381         | {: RESULT = new ParseNode("empty",parser.lexer.line_num); :}
382         ;
383
384 tag_list ::= tag_change:fc {: 
385                 ParseNode pn=new ParseNode("tag_list",parser.lexer.line_num);
386                 pn.addChild(fc);
387                 RESULT=pn;
388         :}
389         | tag_list:fl COMMA tag_change:fc {: 
390                 fl.addChild(fc);
391                 RESULT=fl;
392         :};
393
394 tag_change ::= IDENTIFIER:id {: 
395                 RESULT=new ParseNode("name",parser.lexer.line_num).addChild(id).getRoot();
396         :}
397         | NOT IDENTIFIER:id {: 
398                 RESULT=new ParseNode("not",parser.lexer.line_num).addChild("name").addChild(id).getRoot();
399         :};
400
401 flag_expression ::= 
402         flag_andexpression:exp {: 
403                 RESULT=exp;
404         :}
405         | flag_expression:exp1 OROR flag_andexpression:exp2 {: 
406                 ParseNode pn=new ParseNode("or",parser.lexer.line_num);
407                 pn.addChild(exp1);
408                 pn.addChild(exp2);
409                 RESULT=pn;
410         :}
411         ;
412
413 flag_andexpression ::= 
414         flag_notexpression:exp {: RESULT=exp; :}
415         | flag_notexpression:exp1 ANDAND flag_andexpression:exp2 {: 
416                 ParseNode pn=new ParseNode("and",parser.lexer.line_num);
417                 pn.addChild(exp1);
418                 pn.addChild(exp2);
419                 RESULT=pn;
420         :}
421         ;
422
423 flag_notexpression ::=
424         NOT flag_notexpression:exp {: 
425                 ParseNode pn=new ParseNode("not",parser.lexer.line_num);
426                 pn.addChild(exp);
427                 RESULT=pn;
428         :}
429         | LPAREN flag_expression:exp RPAREN {: 
430                 RESULT=exp;
431         :}
432         | IDENTIFIER:id {:
433                 ParseNode pn=new ParseNode("name",parser.lexer.line_num);
434                 pn.addChild(id);
435                 RESULT=pn;
436         :}
437         ;
438
439 task_exitstatement ::= TASKEXIT flag_effects_opt:opt cons_checks_opt:cco SEMICOLON {: 
440                 RESULT=(new ParseNode("taskexit",parser.lexer.line_num)).addChild(opt).getRoot().addChild(cco).getRoot();
441         :};
442
443 cons_checks_opt ::= ASSERT LPAREN cons_checks:cc RPAREN {: RESULT=cc; :}
444         | {: RESULT = new ParseNode("empty",parser.lexer.line_num); :}
445         ;
446
447 cons_checks ::= cons_check:cc {: 
448                 ParseNode pn=new ParseNode("cons_checks",parser.lexer.line_num);
449                 pn.addChild(cc);
450                 RESULT=pn;
451         :}
452         |       cons_checks:ccs COMMA cons_check:cc {: 
453                 ccs.addChild(cc);
454                 RESULT=ccs;
455         :};
456
457 cons_check ::=  IDENTIFIER:name LPAREN cons_argument_list_opt:args RPAREN {: 
458                 ParseNode pn=new ParseNode("cons_check",parser.lexer.line_num);
459                 pn.addChild("name").addChild("identifier").addChild(name);
460                 pn.addChild(args);
461                 RESULT=pn;
462         :};
463
464 flag_effects_opt ::= LPAREN flag_effects:fe RPAREN {:RESULT=fe;:}
465         | {: RESULT = new ParseNode("empty",parser.lexer.line_num); :}
466         ;
467
468 flag_effects ::= flag_effect:fe {: 
469                 ParseNode pn=new ParseNode("flag_effects_list",parser.lexer.line_num);
470                 pn.addChild(fe);
471                 RESULT=pn;
472         :}
473         |       flag_effects:fes COMMA flag_effect:fe {: 
474                 fes.addChild(fe);
475                 RESULT=fes;
476         :};
477
478 flag_effect ::= IDENTIFIER:id LBRACE flag_list:fl RBRACE tag_list_opt:tlo {: 
479                 ParseNode pn=new ParseNode("flag_effect",parser.lexer.line_num);
480                 pn.addChild("name").addChild(id);
481                 pn.addChild(fl);
482                 pn.addChild(tlo);
483                 RESULT=pn;
484         :}
485         | IDENTIFIER:id LBRACE RBRACE LBRACE tag_list:tl RBRACE {: 
486                 ParseNode pn=new ParseNode("flag_effect",parser.lexer.line_num);
487                 pn.addChild("name").addChild(id);
488                 pn.addChild(tl);
489                 RESULT=pn;
490         :};
491
492 flag_list_opt ::= LBRACE flag_list:fl RBRACE {:RESULT=fl;:}
493         | LBRACE RBRACE {: RESULT = new ParseNode("empty",parser.lexer.line_num); :}    
494         | 
495         {: RESULT = new ParseNode("empty",parser.lexer.line_num); :}
496         ;
497
498 flag_list ::= flag_change:fc {: 
499                 ParseNode pn=new ParseNode("flag_list",parser.lexer.line_num);
500                 pn.addChild(fc);
501                 RESULT=pn;
502         :}
503         |       flag_list:fl COMMA flag_change:fc {: 
504                 fl.addChild(fc);
505                 RESULT=fl;
506         :};
507
508 flag_change ::= IDENTIFIER:id {: 
509                 RESULT=new ParseNode("name",parser.lexer.line_num).addChild(id).getRoot();
510         :} |
511         NOT IDENTIFIER:id {: 
512                 RESULT=new ParseNode("not",parser.lexer.line_num).addChild("name").addChild(id).getRoot();
513         :};
514
515 // 19.2) The Syntactic Grammar
516 goal ::=        compilation_unit:cu
517         {:
518         RESULT = cu;
519         :}
520         ;
521
522 // 19.3) Lexical Structure.
523
524
525 literal ::=     INTEGER_LITERAL:integer_lit
526         {:
527                 ParseNode pn=new ParseNode("literal",parser.lexer.line_num);
528                 pn.addChild("integer").setLiteral(integer_lit);
529                 RESULT=pn;
530         :}
531         |       FLOATING_POINT_LITERAL:float_lit
532         {:
533                 ParseNode pn=new ParseNode("literal",parser.lexer.line_num);
534                 pn.addChild("float").setLiteral(float_lit);
535                 RESULT=pn;
536         :}
537         |       BOOLEAN_LITERAL:boolean_lit
538         {:
539                 ParseNode pn=new ParseNode("literal",parser.lexer.line_num);
540                 pn.addChild("boolean").setLiteral(boolean_lit);
541                 RESULT=pn;
542         :}
543         |       CHARACTER_LITERAL:char_lit
544         {:
545                 ParseNode pn=new ParseNode("literal",parser.lexer.line_num);
546                 pn.addChild("char").setLiteral(char_lit);
547                 RESULT=pn;
548         :}
549         |       STRING_LITERAL:string_lit
550         {:
551                 ParseNode pn=new ParseNode("literal",parser.lexer.line_num);
552                 pn.addChild("string").setLiteral(string_lit);
553                 RESULT=pn;
554         :}
555         |       NULL_LITERAL 
556         {:
557                 RESULT=(new ParseNode("literal",parser.lexer.line_num)).addChild("null").getRoot();
558         :}
559         ;
560
561 // 19.4) Types, Values, and Variables
562 type    ::=     primitive_type:type {: RESULT=type; :}
563         |       reference_type:type {: RESULT=type; :}
564         ;
565
566 primitive_type ::=
567                 numeric_type:type {: RESULT=type; :}
568         |       BOOLEAN {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("boolean").getRoot(); :}
569         ;
570 numeric_type::= integral_type:type {: RESULT=type; :}
571         |       floating_point_type:type {: RESULT=type; :}
572         ;
573 integral_type ::= 
574                 BYTE {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("byte").getRoot(); :}
575         |       SHORT  {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("short").getRoot(); :}
576         |       INT  {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("int").getRoot(); :}
577         |       LONG  {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("long").getRoot(); :}
578         |       CHAR  {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("char").getRoot(); :}
579         ;
580 floating_point_type ::= 
581                 FLOAT  {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("float").getRoot(); :}
582         |       DOUBLE  {: RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("double").getRoot(); :}
583         ;
584
585 reference_type ::=
586                 class_or_interface_type:type {: RESULT=type; :}
587         |       array_type:type {: RESULT=type; :}
588         ;
589 class_or_interface_type ::= name:name {: 
590         RESULT=(new ParseNode("type",parser.lexer.line_num)).addChild("class").addChild(name).getRoot(); 
591         :};
592
593 class_type ::=  class_or_interface_type:type {: RESULT=type; :};
594 interface_type ::= class_or_interface_type:type {: RESULT=type; :};
595
596 array_type ::=  primitive_type:prim dims:dims {: 
597                 ParseNode pn=(new ParseNode("type",parser.lexer.line_num)).addChild("array");
598                 pn.addChild("basetype").addChild(prim);
599                 pn.addChild("dims").setLiteral(dims);
600                 RESULT=pn.getRoot();
601         :}
602         |       name:name dims:dims {: 
603                 ParseNode pn=(new ParseNode("type",parser.lexer.line_num)).addChild("array");
604                 pn.addChild("basetype").addChild("type").addChild("class").addChild(name);
605                 pn.addChild("dims").setLiteral(dims);
606                 RESULT=pn.getRoot();
607         :}
608         ;
609
610 // 19.5) Names
611 name    ::=     simple_name:name {: RESULT=name; :}
612         |       qualified_name:name {: RESULT=name; :}
613         ;
614 simple_name ::= IDENTIFIER:id {: 
615         RESULT=(new ParseNode("name",parser.lexer.line_num)).addChild("identifier").addChild(id).getRoot(); 
616         :}
617         ;
618 qualified_name ::= name:name DOT IDENTIFIER:id {: 
619         ParseNode pn=new ParseNode("name",parser.lexer.line_num);
620         pn.addChild("base").addChild(name);
621         pn.addChild("identifier").addChild(id);
622         RESULT=pn;
623         :}
624         ;
625
626 // 19.6) Packages
627 compilation_unit ::=
628                 package_declaration_opt:pdo
629                 import_declarations_opt:ido
630                 type_declarations_opt:tdo {: 
631                 ParseNode pn=new ParseNode("compilation_unit",parser.lexer.line_num);
632                 pn.addChild(tdo);
633                 pn.addChild("packages").addChild(pdo);
634                 pn.addChild("imports").addChild(ido);
635                 RESULT=pn;
636                 :}
637                 ;
638 package_declaration_opt ::= package_declaration:pdo {:
639                 RESULT=pdo;
640         :} |
641         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
642 ;
643
644 import_declarations_opt ::= import_declarations:ido {: 
645                 RESULT=ido;
646         :} | 
647         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
648 ;
649 type_declarations_opt   ::= type_declarations:tds {:
650                 RESULT=tds;
651                 :}   | 
652         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
653         ;
654
655 import_declarations ::=
656                import_declaration:id {: 
657                 ParseNode pn=new ParseNode("import_decls_list",parser.lexer.line_num);
658                 pn.addChild(id);
659                 RESULT=pn;
660         :}
661        |       import_declarations:ids import_declaration:id {: 
662                 ids.addChild(id);
663                 RESULT=ids;
664         :}
665        ;
666
667 type_declarations ::= 
668                 type_declaration:td {:
669                 ParseNode pn=new ParseNode("type_declaration_list",parser.lexer.line_num);
670                 pn.addChild(td);
671                 RESULT=pn;
672                 :}
673         |       type_declarations:tds type_declaration:td {:
674                 tds.addChild(td);
675                 RESULT=tds;
676                 :}
677         ;
678
679 package_declaration ::=
680                 PACKAGE name:name SEMICOLON {: 
681         ParseNode pn=new ParseNode("package",parser.lexer.line_num);
682         pn.addChild(name);
683         RESULT=pn;
684         :}
685        ;
686 import_declaration ::=
687                single_type_import_declaration:sid {: RESULT=sid; :}
688        |       type_import_on_demand_declaration:iod {: RESULT=iod; :}
689        ;
690 single_type_import_declaration ::=
691                IMPORT name:name SEMICOLON {: 
692         ParseNode pn=new ParseNode("import_single",parser.lexer.line_num);
693         pn.addChild(name);
694         RESULT=pn;
695 :}
696        ;
697 type_import_on_demand_declaration ::=
698                IMPORT name:name DOT MULT SEMICOLON {:
699         ParseNode pn=new ParseNode("import_ondemand",parser.lexer.line_num);
700         pn.addChild(name);
701         RESULT=pn;
702         :}       
703         ;
704
705 type_declaration ::=
706                 class_declaration:cd 
707                 {:
708                         RESULT=cd;
709                 :}
710         |       enum_declaration:ed
711             {:
712                 RESULT=ed;
713             :}
714         |       task_declaration:td 
715                 {:
716                         RESULT=td;
717                 :}
718     |   interface_declaration:in
719         {:
720                         RESULT=in;
721                 :}
722         |       SEMICOLON {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
723         ;
724
725 // 19.7) Productions used only in the LALR(1) grammar
726 modifiers_opt::=
727         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
728         |       modifiers:mo {: 
729                 RESULT=mo;
730         :}
731         ;
732 modifiers_at ::=
733                 mixed_modifiers_at
734         |       annotations_at
735         ;
736 modifiers ::=   mixed_modifiers : mmo {:
737                 RESULT=mmo; 
738         :}
739         |       annotations : an {:
740                 ParseNode pn=new ParseNode("modifier_list",parser.lexer.line_num);
741                 pn.addChild(an);
742                 RESULT=pn;
743         :}
744         ;
745 mixed_modifiers_at ::=
746                 mixed_modifiers : mmos AT {:
747                 RESULT=mmos;
748         :}
749         ;
750 mixed_modifiers ::=
751                 modifier : mo {:
752                 ParseNode pn=new ParseNode("modifier_list",parser.lexer.line_num);
753                 pn.addChild(mo);
754                 RESULT=pn;
755         :}
756         |       annotations:as modifier:mo {:
757                 ParseNode pn=new ParseNode("modifier_list",parser.lexer.line_num);
758                 pn.addChild(mo);
759                 pn.addChild(as);
760                 RESULT=pn;
761         :}
762         |       mixed_modifiers : mmos modifier : mo {:
763                 mmos.addChild(mo);
764                 RESULT=mmos;
765         :}
766         |       mixed_modifiers_at:mma annotation_body:ab {:
767                 mma.addChild("annotation_list",parser.lexer.line_num).addChild(ab); 
768                 RESULT=mma;             
769         :}
770         ;
771 modifier ::=    
772         PUBLIC {: RESULT=new ParseNode("public",parser.lexer.line_num); :}|
773         PROTECTED {: RESULT=new ParseNode("protected",parser.lexer.line_num); :}|
774         PRIVATE {: RESULT=new ParseNode("private",parser.lexer.line_num); :}|
775         STATIC {: RESULT=new ParseNode("static",parser.lexer.line_num); :} |
776         ABSTRACT {: RESULT=new ParseNode("abstract",parser.lexer.line_num); :}  |
777         FINAL {: RESULT=new ParseNode("final",parser.lexer.line_num); :}|
778         NATIVE {: RESULT=new ParseNode("native",parser.lexer.line_num); :} |
779         SYNCHRONIZED {: RESULT=new ParseNode("synchronized",parser.lexer.line_num); :} |
780         ATOMIC {: RESULT=new ParseNode("atomic",parser.lexer.line_num); :} |
781         VOLATILE {: RESULT=new ParseNode("volatile",parser.lexer.line_num); :} |
782         TRANSIENT {: RESULT=new ParseNode("transient",parser.lexer.line_num); :} 
783
784 //      STRICTFP // note that semantic analysis must check that the
785                          // context of the modifier allows strictfp.
786         ;
787 //annotations_opt ::=
788 //      {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
789 //      |       annotations:an {: 
790 //              RESULT=an;
791 //      :}
792 //      ;
793 annotations ::= 
794                 AT annotation_body:ab {:
795                 ParseNode pn=new ParseNode("annotation_list",parser.lexer.line_num);
796                 pn.addChild(ab);
797                 RESULT=pn;
798         :}
799         |       annotations_at:aat annotation_body:ab {:
800                 aat.addChild(ab);
801                 RESULT=aat;
802         :}
803         ;
804 annotations_at ::=
805                annotations:as AT {:
806                RESULT=as;
807         :}
808         ;
809 annotation ::=
810                AT annotation_body:ab {:
811                RESULT=ab;
812         :}
813         ;
814 annotation_body ::=
815                 normal_annotation_body:nab {:
816                 ParseNode pn=new ParseNode("annotation_body",parser.lexer.line_num);
817                 pn.addChild(nab);
818                 RESULT = pn;
819         :}
820         |       marker_annotation_body:mab {:
821                 ParseNode pn=new ParseNode("annotation_body",parser.lexer.line_num);
822                 pn.addChild(mab);
823                 RESULT = pn;
824         :}
825         |       single_element_annotation_body:seab {:
826                 ParseNode pn=new ParseNode("annotation_body",parser.lexer.line_num);
827                 pn.addChild(seab);
828                 RESULT = pn;
829         :}
830         ;
831 normal_annotation_body ::=
832                 IDENTIFIER LPAREN element_value_pairs_opt RPAREN
833         ;
834 marker_annotation_body ::=
835                 IDENTIFIER:id
836         {:
837         ParseNode pn=new ParseNode("marker_annotation",parser.lexer.line_num);
838         pn.addChild("name").addChild(id);
839         RESULT=pn;
840         :}
841         ;
842 single_element_annotation_body ::=
843                 IDENTIFIER:id LPAREN STRING_LITERAL:ev RPAREN {:
844                 ParseNode pn=new ParseNode("single_annotation",parser.lexer.line_num);
845                 pn.addChild("name").addChild(id);
846                 pn.addChild("element_value").addChild(ev);
847                 RESULT=pn;
848         :}
849         ;
850 element_value_pairs_opt ::=
851         |       element_value_pairs
852         ;               
853 element_value_pairs ::=
854                 element_value_pair
855         |       element_value_pairs COMMA element_value_pair
856         ;
857 element_value_pair ::=
858                 IDENTIFIER EQ element_value
859         ;
860 element_value ::=
861                 annotation:an {:
862                 RESULT=an;
863         :}  
864         |       element_value_array_initializer:evai {: 
865                 RESULT=evai;
866         :}
867         |       conditional_expression:ce {:
868                 RESULT=ce;
869         :}
870         ;
871 element_value_array_initializer ::=
872                 LBRACE element_values_opt RBRACE
873         ;
874 element_values_opt ::=
875         |       element_values
876         ;
877 element_values ::=
878                 element_value
879         |       element_values COMMA element_value
880         ;
881 // 19.8) Classes
882
883 // 19.8.1) Class Declaration:
884 class_declaration ::= 
885         modifiers_opt:mo CLASS IDENTIFIER:id super_opt:so interfaces_opt:ifo 
886         class_body:body 
887         {:
888         ParseNode pn=new ParseNode("class_declaration",parser.lexer.line_num);
889         pn.addChild("modifiers").addChild(mo);
890         pn.addChild("name").addChild(id);
891         pn.addChild("super").addChild(so);
892         pn.addChild("superIF").addChild(ifo);
893         pn.addChild("classbody").addChild(body);
894         RESULT=pn;
895         :}
896         ;
897 super ::=       EXTENDS class_type:classtype {: 
898                 RESULT=classtype;
899         :}
900         ;
901 super_opt ::=   
902         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
903         |       super:su {: 
904                 RESULT=su;
905         :}
906         ;
907
908 interfaces ::= IMPLEMENTS interface_type_list:iftl {: RESULT=iftl; :}
909        ;
910 interfaces_opt ::=
911        {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
912        |       interfaces:ifs {: RESULT=ifs; :}
913        ;
914 interface_type_list ::=
915                interface_type:ift {: 
916                         ParseNode pn=new ParseNode("interface_type_list",parser.lexer.line_num);
917                         pn.addChild(ift);
918                         RESULT=pn;
919                 :}
920        |       interface_type_list:iftl COMMA interface_type:ift {: 
921                         iftl.addChild(ift);
922                         RESULT=iftl;
923                 :}
924        ;
925
926 class_body ::=  LBRACE class_body_declarations_opt:cbdo RBRACE {: RESULT=cbdo; :}
927         ;
928
929 class_body_declarations_opt ::= 
930         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
931         |       class_body_declarations:cbd {: RESULT=cbd; :};
932
933 class_body_declarations ::= 
934                 class_body_declaration:cbd {: 
935                         ParseNode pn=new ParseNode("class_body_declaration_list",parser.lexer.line_num);
936                         pn.addChild(cbd);
937                         RESULT=pn;
938                 :}
939         |       class_body_declarations:cbds class_body_declaration:cbd {: 
940                         cbds.addChild(cbd);
941                         RESULT=cbds;
942                 :}
943         ;
944
945 class_body_declaration ::=
946                 class_member_declaration:member {: 
947                 RESULT=(new ParseNode("member",parser.lexer.line_num)).addChild(member).getRoot();
948         :}
949         |       static_initializer:block{:
950                 RESULT=(new ParseNode("static_block",parser.lexer.line_num)).addChild(block).getRoot();
951         :}
952         |       constructor_declaration:constructor {: 
953                 RESULT=(new ParseNode("constructor",parser.lexer.line_num)).addChild(constructor).getRoot();
954         :}
955         |       block:block {:
956                 RESULT=(new ParseNode("block",parser.lexer.line_num)).addChild(block).getRoot();
957         :}
958         |       location_order_declaration:lod {:
959                 RESULT=(new ParseNode("location_order_declaration",parser.lexer.line_num)).addChild(lod).getRoot();
960         :}
961         ;
962 class_member_declaration ::=
963         //failure aware computation
964         flag_declaration:flag {: 
965         RESULT=(new ParseNode("flag",parser.lexer.line_num)).addChild(flag).getRoot(); 
966         :}      
967         |
968         field_declaration:field {: 
969         RESULT=(new ParseNode("field",parser.lexer.line_num)).addChild(field).getRoot(); 
970         :}
971         |       method_declaration:method {:
972         RESULT=(new ParseNode("method",parser.lexer.line_num)).addChild(method).getRoot(); 
973         :}
974         /* repeat the prod for 'class_declaration' here: */
975         |       modifiers_opt:mo CLASS IDENTIFIER:id super_opt:so interfaces_opt:ifo class_body:body
976         {:
977         ParseNode pn=new ParseNode("inner_class_declaration",parser.lexer.line_num);
978         pn.addChild("modifiers").addChild(mo);
979         pn.addChild("name").addChild(id);
980         pn.addChild("super").addChild(so);
981         pn.addChild("superIF").addChild(ifo);
982         pn.addChild("classbody").addChild(body);
983         RESULT=pn;
984         :}
985         |       enum_declaration:ed
986         {:
987         RESULT=ed; 
988         :}
989 //    |       interface_declaration:interfaced {: 
990 //      RESULT=(new ParseNode("interface",parser.lexer.line_num)).addChild(interfaced).getRoot(); 
991 //      :}
992         |       SEMICOLON       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
993         ;
994         
995 // mgc
996 // JSR-201) Enum Declaration
997 enum_declaration ::=
998                 modifiers_opt:mo ENUM IDENTIFIER:id /*interfaces_opt:io*/ enum_body:body
999                 {:
1000                         ParseNode pn=new ParseNode("enum_declaration",parser.lexer.line_num);
1001                         pn.addChild("modifiers").addChild(mo);
1002                         pn.addChild("name").addChild(id);
1003                         //pn.addChild("superIF").addChild(ifo);
1004                         pn.addChild("enumbody").addChild(body);
1005                         RESULT=pn;
1006                 :}
1007         ;
1008 enum_body ::=
1009                 LBRACE enum_constants_opt:eco /*enum_body_declarations_opt:ebdo*/ RBRACE
1010                 {: RESULT=eco; :}
1011         ;
1012 enum_constants_opt ::=
1013   {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1014         |       enum_constants:ecs
1015         {: RESULT=ecs; :}
1016         ;
1017 enum_constants ::=
1018                 enum_constant:ec {: 
1019                 ParseNode pn=new ParseNode("enum_constants_list",parser.lexer.line_num);
1020                 pn.addChild(ec);
1021                 RESULT=pn;
1022         :}
1023         |       enum_constants:ecs COMMA enum_constant:ec {:
1024             ecs.addChild(ec);
1025             RESULT=ecs;
1026         :}
1027         ;
1028 enum_constant ::=
1029                 IDENTIFIER:id /*enum_arguments_opt*/
1030                 {: 
1031                     ParseNode pn=new ParseNode("enum_constant",parser.lexer.line_num);
1032                     pn.addChild("name").addChild(id);
1033                     RESULT=pn; 
1034                 :}
1035 //      |       IDENTIFIER enum_arguments_opt class_body
1036         ;
1037 //enum_arguments_opt ::=
1038 //      |       LPAREN argument_list_opt RPAREN
1039 //      ;
1040 //enum_body_declarations_opt ::=
1041 //      |       SEMICOLON class_body_declarations_opt:cbdo
1042 //      ;
1043
1044 //Failure aware computation
1045 flag_declaration ::= 
1046                 FLAG IDENTIFIER:id SEMICOLON {: 
1047                 ParseNode pn=new ParseNode("flag_declaration",parser.lexer.line_num);
1048                 pn.addChild("name").addChild(id);
1049                 RESULT=pn;
1050         :}      |
1051                 EXTERNAL FLAG IDENTIFIER:id SEMICOLON {: 
1052                 ParseNode pn=new ParseNode("flag_declaration",parser.lexer.line_num);
1053                 pn.addChild("name").addChild(id);
1054                 pn.addChild("external");
1055                 RESULT=pn;
1056         :}
1057         ;
1058
1059 // 19.8.2) Field Declarations
1060 field_declaration ::= 
1061                 modifiers_opt:mo type:type variable_declarators:var SEMICOLON {: 
1062                 ParseNode pn=new ParseNode("field_declaration",parser.lexer.line_num);
1063                 pn.addChild("modifier").addChild(mo);
1064                 pn.addChild("type").addChild(type);
1065                 pn.addChild("variables").addChild(var);
1066                 RESULT=pn;
1067         :} |
1068                 modifiers_opt:mo GLOBAL type:type variable_declarators:var SEMICOLON {: 
1069                 ParseNode pn=new ParseNode("field_declaration",parser.lexer.line_num);
1070                 pn.addChild("modifier").addChild(mo);
1071                 pn.addChild("type").addChild(type);
1072                 pn.addChild("variables").addChild(var);
1073                 pn.addChild("global");
1074                 RESULT=pn;
1075         :}
1076         ;
1077
1078 variable_declarators ::=
1079                 variable_declarator:vd {: 
1080                 ParseNode pn=new ParseNode("variable_declarators_list",parser.lexer.line_num);
1081                 pn.addChild(vd);
1082                 RESULT=pn;
1083         :}
1084         |       variable_declarators:vds COMMA variable_declarator:vd {:
1085                 vds.addChild(vd);
1086                 RESULT=vds;
1087         :}
1088         ;
1089 variable_declarator ::=
1090                 variable_declarator_id:id {:
1091                 ParseNode pn=new ParseNode("variable_declarator",parser.lexer.line_num);
1092                 pn.addChild(id);
1093                 RESULT=pn;
1094         :}
1095         |       variable_declarator_id:id EQ variable_initializer:init {: 
1096                 ParseNode pn=new ParseNode("variable_declarator",parser.lexer.line_num);
1097                 pn.addChild(id);
1098                 pn.addChild("initializer").addChild(init);
1099                 RESULT=pn;
1100         :}
1101         ;
1102 variable_declarator_id ::=
1103                 IDENTIFIER:id {: 
1104                 RESULT=(new ParseNode("single",parser.lexer.line_num)).addChild(id).getRoot();:}
1105         |       variable_declarator_id:id LBRACK RBRACK {:
1106                 RESULT=(new ParseNode("array",parser.lexer.line_num)).addChild(id).getRoot();:}
1107         ;
1108 variable_initializer ::=
1109                 expression:exp {: RESULT=exp; :}
1110         |       array_initializer:ai {: RESULT=(new ParseNode("array_initializer",parser.lexer.line_num)).addChild(ai).getRoot(); :}
1111         ;
1112
1113 // 19.8.3) Method Declarations
1114 method_declaration ::=
1115                 method_header:header method_body:body {:
1116                 ParseNode pn=new ParseNode("method_declaration",parser.lexer.line_num);
1117                 pn.addChild(header);
1118                 pn.addChild("body").addChild(body);
1119                 RESULT=pn;
1120         :}
1121         ;
1122 method_header ::=
1123                 modifiers_opt:mo type:type method_declarator:decl throws_opt:to 
1124         {:
1125                 ParseNode pn=new ParseNode("method_header",parser.lexer.line_num);
1126                 pn.addChild("modifiers").addChild(mo);
1127                 pn.addChild("returntype").addChild(type);
1128                 pn.addChild("throws").addChild(to);
1129                 pn.addChild(decl);
1130                 RESULT=pn;
1131         :}
1132         |       modifiers_opt:mo VOID method_declarator:decl throws_opt:to
1133         {:
1134                 ParseNode pn=new ParseNode("method_header",parser.lexer.line_num);
1135                 pn.addChild("modifiers").addChild(mo);
1136                 pn.addChild("throws").addChild(to);
1137                 pn.addChild(decl);
1138                 RESULT=pn;
1139         :}
1140         ;
1141 method_declarator ::=
1142                 IDENTIFIER:id LPAREN formal_parameter_list_opt:params RPAREN {: 
1143                 ParseNode pn=new ParseNode("method_declarator",parser.lexer.line_num);
1144                 pn.addChild("name").addChild(id);
1145                 pn.addChild("parameters").addChild(params);
1146                 RESULT=pn;
1147         :}
1148 //      |       method_declarator LBRACK RBRACK // deprecated
1149 // be careful; the above production also allows 'void foo() []'
1150         ;
1151 formal_parameter_list_opt ::=
1152         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1153         |       formal_parameter_list:fpl {: 
1154                 RESULT=fpl;
1155         :}
1156         ;
1157 formal_parameter_list ::=
1158                 formal_parameter:fp {: 
1159                 ParseNode pn=new ParseNode("formal_parameter_list",parser.lexer.line_num);
1160                 pn.addChild(fp);
1161                 RESULT=pn;
1162         :}
1163         |       formal_parameter_list:fpl COMMA formal_parameter:fp {: 
1164                 fpl.addChild(fp);
1165                 RESULT=fpl;
1166         :}
1167         ;
1168 formal_parameter ::=
1169                 type:type variable_declarator_id:name {:
1170                 ParseNode pn=new ParseNode("formal_parameter",parser.lexer.line_num);
1171                 pn.addChild(type);
1172                 pn.addChild(name);
1173                 RESULT=pn;
1174         :}
1175         |
1176                 TAG variable_declarator_id:name {:
1177                 ParseNode pn=new ParseNode("tag_parameter",parser.lexer.line_num);
1178                 pn.addChild(name);
1179                 RESULT=pn;
1180         :}
1181         |       FINAL type:type variable_declarator_id:name {:
1182                 ParseNode pn=new ParseNode("formal_parameter",parser.lexer.line_num);
1183                 pn.addChild(type);
1184                 pn.addChild(name);
1185                 RESULT=pn;
1186         :}
1187         ;
1188 throws_opt ::=  
1189         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1190         |       throws:trs
1191             {: RESULT=trs; :}
1192         ;
1193 throws ::=      THROWS class_type_list:ctl
1194         {: RESULT=(new ParseNode("throw_list",parser.lexer.line_num)).addChild(ctl).getRoot(); :}
1195         ;
1196 class_type_list ::=
1197                 class_type:ct
1198                 {: 
1199                 ParseNode pn=new ParseNode("class_type_list",parser.lexer.line_num);
1200                 pn.addChild(ct);
1201                 RESULT=pn; 
1202                 :}
1203         |       class_type_list:ctl COMMA class_type:ct
1204             {: 
1205             ctl.addChild(ct);
1206             RESULT=ctl; 
1207             :}
1208         ;
1209 method_body ::= block:block {: 
1210                 RESULT=block;
1211         :}
1212         |       SEMICOLON       {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1213         ;
1214
1215 // 19.8.4) Static Initializers
1216 static_initializer ::=
1217                 STATIC block:body {:
1218                 ParseNode pn=new ParseNode("static_block_declaration",parser.lexer.line_num);
1219                 pn.addChild("body").addChild(body);
1220                 RESULT=pn;
1221         :}
1222         ;
1223
1224 // 19.8.5) Constructor Declarations
1225 constructor_declaration ::=
1226                 modifiers_opt:mo constructor_declarator:cd throws_opt:to 
1227                         constructor_body:body   {:
1228                 ParseNode pn=new ParseNode("constructor_declaration",parser.lexer.line_num);
1229                 pn.addChild("modifiers").addChild(mo);
1230                 pn.addChild("throws").addChild(to);
1231                 pn.addChild(cd);
1232                 pn.addChild("body").addChild(body);
1233                 RESULT=pn;
1234         :} |
1235                 modifiers_opt:mo GLOBAL constructor_declarator:cd throws_opt:to 
1236                         constructor_body:body   {:
1237                 ParseNode pn=new ParseNode("constructor_declaration",parser.lexer.line_num);
1238                 pn.addChild("global");
1239                 pn.addChild("modifiers").addChild(mo);
1240                 pn.addChild("throws").addChild(to);
1241                 pn.addChild(cd);
1242                 pn.addChild("body").addChild(body);
1243                 RESULT=pn;
1244         :}
1245 ;
1246
1247 constructor_declarator ::=
1248                 simple_name:name LPAREN formal_parameter_list_opt:fplo RPAREN {: 
1249                 ParseNode pn=new ParseNode("constructor_declarator",parser.lexer.line_num);
1250                 pn.addChild(name);
1251                 pn.addChild("parameters").addChild(fplo);
1252                 RESULT=pn;
1253         :}
1254         ;
1255 constructor_body ::=
1256                 LBRACE explicit_constructor_invocation:eci block_statements:bs RBRACE {: 
1257                         ParseNode pn=new ParseNode("constructor_body",parser.lexer.line_num);
1258                         pn.addChild(eci);
1259                         pn.addChild(bs);
1260                         RESULT=pn;
1261         :} |
1262                 LBRACE explicit_constructor_invocation:eci RBRACE {: 
1263                         ParseNode pn=new ParseNode("constructor_body",parser.lexer.line_num);
1264                         pn.addChild(eci);
1265                         RESULT=pn;
1266         :} |
1267                 LBRACE block_statements:block RBRACE {: 
1268                 ParseNode pn=new ParseNode("constructor_body",parser.lexer.line_num);
1269                 pn.addChild(block);
1270                 RESULT=pn;
1271         :}
1272         |       LBRACE RBRACE {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1273         ;
1274 explicit_constructor_invocation ::=
1275         THIS LPAREN argument_list_opt:alo RPAREN SEMICOLON {:
1276              ParseNode pn=new ParseNode("explconstrinv",parser.lexer.line_num);
1277              pn.addChild(alo);
1278              RESULT=pn;
1279         :}
1280         |       
1281 SUPER LPAREN argument_list_opt:alo RPAREN SEMICOLON {: 
1282         ParseNode pn=new ParseNode("superinvoke",parser.lexer.line_num);
1283         pn.addChild(alo);
1284         RESULT=pn;
1285 :}
1286 //      |       primary DOT THIS LPAREN argument_list_opt RPAREN SEMICOLON
1287 //      |       primary DOT SUPER LPAREN argument_list_opt RPAREN SEMICOLON
1288         ;
1289
1290 // 19.8.6) Location Hierarchy Declarations
1291 location_order_declaration ::= LOCDEF LBRACE location_order_list:lol RBRACE {:
1292                 RESULT=lol;                        
1293         :}
1294         ;
1295 location_order_list ::= 
1296                 location_order:lo {:
1297                 ParseNode pn=new ParseNode("location_order_list",parser.lexer.line_num);
1298                 pn.addChild(lo);
1299                 RESULT=pn;
1300         :}
1301         |       location_order_list:lol COMMA location_order:lo {:
1302                 lol.addChild(lo);
1303                 RESULT=lol;
1304         :}
1305         ;
1306 location_order ::= 
1307                 IDENTIFIER:loc1 LT IDENTIFIER:loc2{:
1308                 ParseNode pn=new ParseNode("location_order",parser.lexer.line_num);
1309                 pn.addChild(loc1);
1310                 pn.addChild(loc2);
1311                 RESULT=pn;         
1312         :}
1313         |       IDENTIFIER:loc MULT{:
1314                 ParseNode pn=new ParseNode("location_property",parser.lexer.line_num);          
1315                 pn.addChild(loc);
1316                 RESULT=pn;
1317         :}
1318         ;
1319
1320 // 19.9) Interfaces
1321
1322 // 19.9.1) Interface Declarations
1323 interface_declaration ::=
1324                modifiers_opt:mo INTERFACE IDENTIFIER:id extends_interfaces_opt:io
1325                        interface_body:body
1326        {:
1327         ParseNode pn=new ParseNode("interface_declaration",parser.lexer.line_num);
1328         pn.addChild("modifiers").addChild(mo);
1329         pn.addChild("name").addChild(id);
1330         pn.addChild("superIF").addChild(io);
1331         pn.addChild("interfacebody").addChild(body);
1332         RESULT=pn;
1333         :}
1334        | annotation_type_declaration
1335        ;
1336 extends_interfaces_opt ::=
1337        {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1338        |       extends_interfaces:eifs {: RESULT=eifs; :}
1339        ;
1340 extends_interfaces ::=
1341                EXTENDS interface_type:ift 
1342                {: 
1343                ParseNode pn=new ParseNode("extend_interface_list",parser.lexer.line_num);
1344                pn.addChild(ift);
1345                RESULT=pn; 
1346                :}
1347      |       extends_interfaces:eifs COMMA interface_type:ift
1348              {:
1349              eifs.addChild(ift);
1350              RESULT=eifs;
1351              :}
1352        ;
1353 interface_body ::=
1354                LBRACE interface_member_declarations_opt:imdo RBRACE
1355                {: RESULT=imdo; :}
1356        ;
1357 interface_member_declarations_opt ::=
1358        {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1359        |       interface_member_declarations:imd {: RESULT=imd; :}
1360        ;
1361 interface_member_declarations ::=
1362                interface_member_declaration:imd {: 
1363                         ParseNode pn=new ParseNode("interface_member_declaration_list",parser.lexer.line_num);
1364                         pn.addChild(imd);
1365                         RESULT=pn;
1366                 :}
1367        |       interface_member_declarations:imds interface_member_declaration:imd {: 
1368                         imds.addChild(imd);
1369                         RESULT=imds;
1370                 :}
1371        ;
1372 interface_member_declaration ::=
1373                constant_declaration:constant {: 
1374                 RESULT=(new ParseNode("constant",parser.lexer.line_num)).addChild(constant).getRoot();
1375         :}
1376        |       abstract_method_declaration:method {:
1377         RESULT=(new ParseNode("method",parser.lexer.line_num)).addChild(method).getRoot(); 
1378         :}
1379            |    enum_declaration:ed {:
1380            RESULT=(new ParseNode("enum_declaration",parser.lexer.line_num)).addChild(ed).getRoot();
1381            :}
1382 //       |       class_declaration:class 
1383 //       |       interface_declaration:interface 
1384        |       SEMICOLON {: 
1385        RESULT=new ParseNode("empty",parser.lexer.line_num); 
1386        :}
1387        ;
1388 constant_declaration ::=
1389                field_declaration:fd {: RESULT=fd; :}
1390        // need to semantically check that modifiers of field declaration
1391        // include only PUBLIC, STATIC, or FINAL.  Other modifiers are
1392        // disallowed.
1393        ;
1394 abstract_method_declaration ::=
1395                method_header:header SEMICOLON {:
1396                 ParseNode pn=new ParseNode("method_declaration",parser.lexer.line_num);
1397                 pn.addChild("header").addChild(header);
1398                 pn.addChild("body").addChild(new ParseNode("empty",parser.lexer.line_num));
1399                 RESULT=pn;
1400         :}
1401        ;
1402
1403 annotation_type_declaration ::=
1404                 AT INTERFACE IDENTIFIER annotation_type_body
1405         |       modifiers_at INTERFACE IDENTIFIER annotation_type_body
1406         ;
1407 annotation_type_body ::=
1408                 LBRACE annotation_type_element_declarations_opt RBRACE
1409         ;
1410 annotation_type_element_declarations_opt ::=
1411         |       annotation_type_element_declarations
1412         ;
1413 annotation_type_element_declarations ::=
1414                 annotation_type_element_declaration
1415         |       annotation_type_element_declarations annotation_type_element_declaration
1416         ;
1417 annotation_type_element_declaration ::=
1418                 constant_declaration
1419         |       modifiers_opt type IDENTIFIER LPAREN RPAREN default_value_opt SEMICOLON
1420         |       class_declaration 
1421         |       enum_declaration 
1422         |       interface_declaration 
1423         |       SEMICOLON
1424         ;
1425
1426 // 19.10) Arrays
1427 array_initializer ::=
1428                 LBRACE variable_initializers:var_init_list COMMA RBRACE {:
1429                        RESULT=var_init_list;
1430                 :}
1431         |       LBRACE variable_initializers:var_init_list RBRACE {:
1432                        RESULT=var_init_list;
1433                 :}
1434         |       LBRACE COMMA RBRACE {:
1435                        RESULT=new ParseNode("empty",parser.lexer.line_num);                    
1436                 :}
1437         |       LBRACE RBRACE {:
1438                        RESULT=new ParseNode("empty",parser.lexer.line_num);
1439                 :}
1440         ;
1441 variable_initializers ::=
1442                 variable_initializer:var_init {:
1443                        ParseNode pn=new ParseNode("var_init_list",parser.lexer.line_num);
1444                        pn.addChild(var_init);
1445                        RESULT=pn;
1446                 :}
1447         |       variable_initializers:var_init_list COMMA variable_initializer:var_init {:
1448                        var_init_list.addChild(var_init);
1449                        RESULT=var_init_list;
1450                 :}
1451         ;
1452
1453 // 19.11) Blocks and Statements
1454 block ::=       LBRACE block_statements_opt:bso RBRACE {: 
1455         RESULT=bso;
1456         :}
1457         ;
1458 block_statements_opt ::=
1459         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1460         |       block_statements:bs {: 
1461         RESULT=bs;
1462         :}
1463         ;
1464 block_statements ::=
1465                 block_statement:bs {:
1466         ParseNode pn=new ParseNode("block_statement_list",parser.lexer.line_num);
1467         pn.addChild(bs);
1468         RESULT=pn;
1469         :}
1470         |       block_statements:bss block_statement:bs {: 
1471         bss.addChild(bs);
1472         RESULT=bss;
1473         :}
1474         ;
1475 block_statement ::=
1476         tag_variable_declaration_statement:tvds {:
1477                 RESULT=tvds;
1478         :}              
1479         |       local_variable_declaration_statement:lvds {: 
1480                 RESULT=lvds;
1481         :}
1482         |       statement:statement {: 
1483                 RESULT=statement;
1484         :}
1485 //      |       enum_declaration:ed {:
1486 //              RESULT=ed;
1487 //      :}
1488 //      |       class_declaration
1489 //      |       interface_declaration
1490         ;
1491 tag_variable_declaration_statement ::=
1492                 TAG IDENTIFIER:id EQ NEW TAG LPAREN IDENTIFIER:type RPAREN SEMICOLON {: 
1493                 ParseNode pn=new ParseNode("tag_declaration",parser.lexer.line_num);
1494                 pn.addChild("single").addChild(id);
1495                 pn.addChild("type").addChild(type);
1496                 RESULT=pn;
1497         :}
1498         ;
1499 local_variable_declaration_statement ::=
1500                 local_variable_declaration:lvd SEMICOLON {: 
1501                 RESULT=lvd;
1502         :}
1503         ;
1504 local_variable_declaration ::=
1505                 type:type variable_declarators:var {: 
1506                 ParseNode pn=new ParseNode("local_variable_declaration",parser.lexer.line_num);
1507                 pn.addChild(type);
1508                 pn.addChild(var);
1509                 RESULT=pn;
1510         :}
1511 //      |       FINAL type:type variable_declarators:var {: 
1512          /* CAUTION:  only FINAL and annotations are legal modifiers here */
1513         |       modifiers:mo type:type variable_declarators:var {:
1514                 ParseNode pn=new ParseNode("local_variable_declaration",parser.lexer.line_num);
1515                 pn.addChild(type);
1516                 pn.addChild(var);
1517                 pn.addChild("modifiers").addChild(mo);
1518                 RESULT=pn;
1519         :}
1520         ;
1521 statement ::=   statement_without_trailing_substatement:st {: 
1522                 RESULT=st;
1523         :}
1524 //      |       labeled_statement:st {: RESULT=st; :}
1525         |       if_then_statement:st {: RESULT=st; :}
1526         |       if_then_else_statement:st {: RESULT=st; :}
1527         |       while_statement:st {: RESULT=st; :}
1528         |       for_statement:st {: RESULT=st; :}
1529         ;
1530 statement_no_short_if ::=
1531                 statement_without_trailing_substatement:st {: RESULT=st; :}
1532 //      |       labeled_statement_no_short_if:st {: RESULT=st; :}
1533         |       if_then_else_statement_no_short_if:st {: RESULT=st; :}
1534         |       while_statement_no_short_if:st {: RESULT=st; :}
1535         |       for_statement_no_short_if:st {: RESULT=st; :}
1536         ;
1537 statement_without_trailing_substatement ::=
1538                 block:st {: RESULT=st; :}
1539         |       empty_statement:st {: RESULT=st; :}
1540         |       expression_statement:st {: RESULT=st; :}
1541         |       switch_statement:st {: RESULT=st; :}
1542         |       do_statement:dos {:RESULT=dos; :}
1543         |       break_statement:st {: RESULT=st; :}
1544         |       continue_statement:st {: RESULT=st; :}
1545         |       return_statement:st {: RESULT=st; :}
1546         |       task_exitstatement:st {: RESULT=st; :}
1547         |       atomic_statement:st {: RESULT=st; :}
1548         |       sese_statement:st {: RESULT=st; :}
1549         |       synchronized_statement:st {: RESULT=st; :}
1550         |       genreach_statement:st {: RESULT=st; :}
1551         |       throw_statement:st {: RESULT=st; :}
1552         |       try_statement:st {: RESULT=st; :}
1553 //      |       assert_statement
1554         ;
1555 empty_statement ::=
1556                 SEMICOLON {: RESULT=new ParseNode("nop",parser.lexer.line_num); :}
1557         ;
1558 //labeled_statement ::=
1559 //              IDENTIFIER COLON statement
1560 //      ;
1561 //labeled_statement_no_short_if ::=
1562 //              IDENTIFIER COLON statement_no_short_if
1563 //      ;
1564 expression_statement ::=
1565                 statement_expression:se SEMICOLON {: 
1566                 ParseNode pn=new ParseNode("expression",parser.lexer.line_num);
1567                 pn.addChild(se);
1568                 RESULT=pn; :}
1569         ;
1570 statement_expression ::=
1571                 assignment:st {: RESULT=st; :}
1572         |       preincrement_expression:st {: RESULT=st; :}
1573         |       predecrement_expression:st {: RESULT=st; :}
1574         |       postincrement_expression:st {: RESULT=st; :}
1575         |       postdecrement_expression:st {: RESULT=st; :}
1576         |       method_invocation:st {: RESULT=st; :}
1577         |       class_instance_creation_expression:st {: RESULT=st; :}
1578         ;
1579 if_then_statement ::=
1580                 IF LPAREN expression:exp RPAREN statement:st {: 
1581                 ParseNode pn=new ParseNode("ifstatement",parser.lexer.line_num);
1582                 pn.addChild("condition").addChild(exp);
1583                 pn.addChild("statement").addChild(st);
1584                 RESULT=pn;
1585         :}
1586         ;
1587 if_then_else_statement ::=
1588                 IF LPAREN expression:exp RPAREN statement_no_short_if:st
1589                         ELSE statement:else_st {:
1590                 ParseNode pn=new ParseNode("ifstatement",parser.lexer.line_num);
1591                 pn.addChild("condition").addChild(exp);
1592                 pn.addChild("statement").addChild(st);
1593                 pn.addChild("else_statement").addChild(else_st);
1594                 RESULT=pn;
1595         :}
1596         ;
1597 if_then_else_statement_no_short_if ::=
1598                 IF LPAREN expression:exp RPAREN statement_no_short_if:st
1599                         ELSE statement_no_short_if:else_st {:
1600                 ParseNode pn=new ParseNode("ifstatement",parser.lexer.line_num);
1601                 pn.addChild("condition").addChild(exp);
1602                 pn.addChild("statement").addChild(st);
1603                 pn.addChild("else_statement").addChild(else_st);
1604                 RESULT=pn;
1605         :}
1606         ;
1607 switch_statement ::=
1608                 SWITCH LPAREN expression:exp RPAREN switch_block:body
1609                 {:
1610                     ParseNode pn=new ParseNode("switch_statement",parser.lexer.line_num);
1611                     pn.addChild("condition").addChild(exp);
1612                     pn.addChild("statement").addChild(body);
1613                     RESULT=pn;
1614                 :}
1615         ;
1616 switch_block ::=
1617                 LBRACE switch_block_statement_groups:sbsg switch_labels:sl RBRACE
1618                 {: 
1619                     ParseNode pn = new ParseNode("switch_block",parser.lexer.line_num);
1620                     pn.addChild("switch_labels").addChild(sl);
1621                     pn.addChild("switch_statements").addChild(new ParseNode("empty",parser.lexer.line_num));
1622                     sbsg.addChild(pn);
1623                     RESULT=sbsg; 
1624                 :}
1625         |       LBRACE switch_block_statement_groups:sbsg RBRACE
1626             {: 
1627                     RESULT=sbsg; 
1628                 :}
1629         |       LBRACE switch_labels:sl RBRACE 
1630             {: 
1631                 ParseNode pnb = new ParseNode("switch_block_list",parser.lexer.line_num);
1632                     ParseNode pn = new ParseNode("switch_block",parser.lexer.line_num);
1633                     pn.addChild("switch_labels").addChild(sl);
1634                     pn.addChild("switch_statements").addChild(new ParseNode("empty",parser.lexer.line_num));
1635                     pnb.addChild(pn);
1636                     RESULT=pnb; 
1637                 :}
1638         |       LBRACE RBRACE {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1639         ;
1640 switch_block_statement_groups ::=
1641                 switch_block_statement_group:sbsg
1642                 {: 
1643                     ParseNode pn = new ParseNode("switch_block_list",parser.lexer.line_num);
1644                     pn.addChild(sbsg);
1645                     RESULT=pn;
1646                 :}
1647         |       switch_block_statement_groups:sbsgs switch_block_statement_group:sbsg
1648             {:
1649                 sbsgs.addChild(sbsg);
1650                 RESULT=sbsgs;
1651             :}
1652         ;
1653 switch_block_statement_group ::=
1654                 switch_labels:sls block_statements:body
1655                 {: 
1656                     ParseNode pn=new ParseNode("switch_block",parser.lexer.line_num);
1657                     pn.addChild("switch_labels").addChild(sls);
1658                     pn.addChild("switch_statements").addChild(body);
1659                     RESULT=pn; 
1660                 :}
1661         ;
1662 switch_labels ::=
1663                 switch_label:sl
1664                 {: 
1665                     ParseNode pn=new ParseNode("switch_label_list",parser.lexer.line_num);
1666                     pn.addChild(sl);
1667                     RESULT=pn; 
1668                 :}
1669         |       switch_labels:sls switch_label:sl
1670             {: 
1671                     sls.addChild(sl); 
1672                     RESULT=sls;
1673                 :}
1674         ;
1675 switch_label ::=
1676                 CASE constant_expression:ce COLON
1677                 {: 
1678                     ParseNode pn=new ParseNode("switch_label",parser.lexer.line_num);
1679                     pn.addChild(ce);
1680                     RESULT=pn;
1681                 :}
1682         |       DEFAULT COLON
1683             {: 
1684                     RESULT=new ParseNode("default_switch_label",parser.lexer.line_num); 
1685                 :}
1686         ;
1687
1688 while_statement ::=
1689                 WHILE LPAREN expression:exp RPAREN statement:st {: 
1690                 ParseNode pn=new ParseNode("whilestatement",parser.lexer.line_num);
1691                 pn.addChild("condition").addChild(exp);
1692                 pn.addChild("statement").addChild(st);
1693                 RESULT=pn;
1694         :}
1695         ;
1696 while_statement_no_short_if ::=
1697                 WHILE LPAREN expression:exp RPAREN statement_no_short_if:st {:
1698                 ParseNode pn=new ParseNode("whilestatement",parser.lexer.line_num);
1699                 pn.addChild("condition").addChild(exp);
1700                 pn.addChild("statement").addChild(st);
1701                 RESULT=pn;
1702                 :}
1703         ;
1704 do_statement ::=
1705                 DO statement:st WHILE LPAREN expression:exp RPAREN SEMICOLON {: 
1706                 ParseNode pn=new ParseNode("dowhilestatement",parser.lexer.line_num);
1707                 pn.addChild("condition").addChild(exp);
1708                 pn.addChild("statement").addChild(st);
1709                 RESULT=pn;
1710         :}
1711         ;
1712 for_statement ::=
1713                 FOR LPAREN for_init_opt:init SEMICOLON expression_opt:exp SEMICOLON
1714                         for_update_opt:update RPAREN statement:st {: 
1715                 ParseNode pn=new ParseNode("forstatement",parser.lexer.line_num);
1716                 pn.addChild("initializer").addChild(init);
1717                 pn.addChild("condition").addChild(exp);
1718                 pn.addChild("update").addChild(update);
1719                 pn.addChild("statement").addChild(st);
1720                 RESULT=pn;
1721                 :}
1722         ;
1723 for_statement_no_short_if ::=
1724                 FOR LPAREN for_init_opt:init SEMICOLON expression_opt:exp SEMICOLON
1725                         for_update_opt:update RPAREN statement_no_short_if:st {:
1726                 ParseNode pn=new ParseNode("forstatement",parser.lexer.line_num);
1727                 pn.addChild("initializer").addChild(init);
1728                 pn.addChild("condition").addChild(exp);
1729                 pn.addChild("update").addChild(update);
1730                 pn.addChild("statement").addChild(st);
1731                 RESULT=pn;
1732                 :}
1733         ;
1734 for_init_opt ::=
1735         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1736         |       for_init:init {: RESULT=init; :}
1737         ;
1738 for_init ::=    statement_expression_list:list {: RESULT=list; :}
1739         |       local_variable_declaration:decl {: RESULT=decl; :}
1740         ;
1741 for_update_opt ::=
1742         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1743         |       for_update:update {: RESULT=update; :}
1744         ;
1745 for_update ::=  statement_expression_list:list {: RESULT=list; :}
1746         ;
1747 statement_expression_list ::=
1748                 statement_expression:expr {: 
1749                 RESULT=(new ParseNode("statement_expression_list",parser.lexer.line_num)).addChild(expr).getRoot();
1750         :}
1751         |       statement_expression_list:list COMMA statement_expression:expr {: 
1752                 list.addChild(expr);
1753                 RESULT=list;
1754         :}
1755         ;
1756
1757 //identifier_opt ::= 
1758 //      |       IDENTIFIER
1759 //      ;
1760
1761 break_statement ::=
1762                 BREAK
1763 //identifier_opt 
1764 SEMICOLON {: RESULT=new ParseNode("break",parser.lexer.line_num); :}
1765         ;
1766
1767 continue_statement ::=
1768                 CONTINUE  
1769 //identifier_opt 
1770 SEMICOLON
1771 {: RESULT=new ParseNode("continue",parser.lexer.line_num); :}
1772         ;
1773 return_statement ::=
1774                 RETURN expression_opt:exp SEMICOLON {: 
1775         RESULT=(new ParseNode("return",parser.lexer.line_num)).addChild(exp).getRoot(); :}
1776         ;
1777 throw_statement ::=
1778                 THROW expression:exp SEMICOLON {:
1779                 RESULT=(new ParseNode("throwstatement",parser.lexer.line_num)).addChild(exp).getRoot();
1780                 :}
1781         ;
1782 synchronized_statement ::=
1783                 SYNCHRONIZED LPAREN expression:e RPAREN block:b {: 
1784                 ParseNode pn=new ParseNode("synchronized",parser.lexer.line_num);
1785                 pn.addChild("expr").addChild(e);
1786                 pn.addChild("block").addChild(b);
1787                 RESULT=pn;
1788                 :}
1789         ;
1790 atomic_statement ::=
1791                 ATOMIC block:blk {: 
1792         RESULT=(new ParseNode("atomic",parser.lexer.line_num)).addChild(blk).getRoot();
1793         :}
1794         ;
1795 sese_statement ::=
1796                SESE block:blk {: 
1797                ParseNode pn = new ParseNode("sese",parser.lexer.line_num);
1798                pn.addChild("body").addChild(blk);
1799                RESULT=pn;
1800         :}
1801         |      SESE variable_declarator_id:id block:blk {: 
1802                ParseNode pn = new ParseNode("sese",parser.lexer.line_num);
1803                pn.addChild("body").addChild(blk);
1804                pn.addChild("identifier").addChild(id);
1805                RESULT=pn;
1806         :}
1807         |      RBLOCK block:blk {: 
1808                ParseNode pn = new ParseNode("sese",parser.lexer.line_num);
1809                pn.addChild("body").addChild(blk);
1810                RESULT=pn;
1811         :}
1812         |      RBLOCK variable_declarator_id:id block:blk {: 
1813                ParseNode pn = new ParseNode("sese",parser.lexer.line_num);
1814                pn.addChild("body").addChild(blk);
1815                pn.addChild("identifier").addChild(id);
1816                RESULT=pn;
1817         :}
1818         ;
1819 try_statement ::=
1820                 TRY block:bk catches:ca
1821                 {: 
1822                 ParseNode pn=new ParseNode("trycatchstatement",parser.lexer.line_num);
1823                 pn.addChild("tryblock").addChild(bk); 
1824                 pn.addChild("catchblock").addChild(ca);
1825                 RESULT=pn;
1826                 :}
1827         |       TRY block:bk catches_opt:ca finally:fi
1828             {: 
1829                 ParseNode pn=new ParseNode("trycatchstatement",parser.lexer.line_num);
1830                 pn.addChild("tryblock").addChild(bk); 
1831                 pn.addChild("catchblock").addChild(ca);
1832                 pn.addChild("finallyblock").addChild(fi);
1833                 RESULT=pn;
1834                 :}
1835         ;
1836 catches_opt ::=
1837     {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1838         |       catches:ca
1839         {: RESULT=ca; :}
1840         ;
1841 catches ::=     catch_clause:ca
1842         {:
1843         ParseNode pn=new ParseNode("catchlist",parser.lexer.line_num);
1844         pn.addChild(ca);
1845         RESULT=pn;
1846         :}
1847         |       catches:cas catch_clause:ca 
1848             {:
1849             cas.addChild(ca);
1850             RESULT=cas;
1851             :}
1852         ;
1853 catch_clause ::=
1854                 CATCH LPAREN formal_parameter:fp RPAREN block:bk
1855                 {:
1856                 ParseNode pn=new ParseNode("catchclause",parser.lexer.line_num);
1857                 pn.addChild("parameter").addChild(fp);
1858                 pn.addChild("block").addChild(bk);
1859                 RESULT=pn;
1860                 :}
1861         ;
1862 finally ::=     FINALLY block:bk
1863     {:
1864     RESULT=bk;
1865     :}
1866         ;
1867 //assert_statement ::=
1868 //              ASSERT expression SEMICOLON
1869 //      |       ASSERT expression COLON expression SEMICOLON
1870 //      ;
1871
1872 // 19.12) Expressions
1873 primary ::=     primary_no_new_array:st {: 
1874                 RESULT=st; :}
1875         |       array_creation_init:st {: 
1876                 RESULT=st;
1877         :}
1878         |       array_creation_uninit:st {:
1879                 RESULT=st;
1880         :}
1881         ;
1882 primary_no_new_array ::=
1883                 literal:lit {: RESULT=lit; :}
1884         |       THIS {: RESULT=new ParseNode("this",parser.lexer.line_num); :}
1885         |       LPAREN expression:exp RPAREN {: RESULT=exp; :}
1886         |       class_instance_creation_expression:exp {: RESULT=exp; :}
1887         |       field_access:exp {: RESULT=exp; :}
1888         |       method_invocation:exp {: RESULT=exp; :}
1889         |       array_access:exp {: RESULT=exp; :}
1890         |       ISAVAILABLE LPAREN IDENTIFIER:id RPAREN {: 
1891                 ParseNode pn=new ParseNode("isavailable",parser.lexer.line_num);
1892                 pn.addChild(id);
1893                 RESULT=pn;
1894         :}
1895 //      |       primitive_type:pt DOT CLASS {:
1896 //          ParseNode pn=new ParseNode("class_type",parser.lexer.line_num);
1897 //          pn.addChild(pt);
1898 //          RESULT=pn;
1899 //      :}
1900 //      |       VOID DOT CLASS
1901 //      |       array_type:at DOT CLASS {:
1902 //          ParseNode pn=new ParseNode("class_type",parser.lexer.line_num);
1903 //          pn.addChild(at);
1904 //          RESULT=pn;
1905 //      :}
1906         |       name:name DOT CLASS {:
1907             ParseNode pn=new ParseNode("class_type",parser.lexer.line_num);
1908             pn.addChild("type").addChild("class").addChild(name);
1909             RESULT=pn;
1910         :}
1911 //      |       name DOT THIS
1912         ;
1913 class_instance_creation_expression ::=
1914         NEWFLAG class_or_interface_type:type LPAREN argument_list_opt:args RPAREN flag_list_opt:feo {: 
1915                 ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
1916                 pn.addChild(type);
1917                 pn.addChild(args);
1918                 pn.addChild(feo);
1919                 RESULT=pn;
1920         :} |
1921         NEW class_or_interface_type:type LPAREN argument_list_opt:args RPAREN {: 
1922                 ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
1923                 pn.addChild(type);
1924                 pn.addChild(args);
1925                 RESULT=pn;
1926         :} 
1927         //Global object
1928         | GLOBAL NEW class_or_interface_type:type LPAREN argument_list_opt:args RPAREN {: 
1929                 ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
1930                 pn.addChild(type);
1931                 pn.addChild(args);
1932                 pn.addChild("global");
1933                 RESULT=pn;
1934         :}
1935         | SCRATCH NEW class_or_interface_type:type LPAREN argument_list_opt:args RPAREN flag_list_opt:feo {: 
1936                 ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
1937                 pn.addChild(type);
1938                 pn.addChild(args);
1939                 pn.addChild("scratch");
1940                 RESULT=pn;
1941         :}
1942         // Objects we want to track in disjointness analysis
1943         | DISJOINT IDENTIFIER:id NEW class_or_interface_type:type LPAREN argument_list_opt:args RPAREN {: 
1944                 ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
1945                 pn.addChild(type);
1946                 pn.addChild(args);
1947                 pn.addChild("disjoint").addChild(id);
1948                 RESULT=pn;
1949         :}
1950         | NEWFLAG class_or_interface_type:type LPAREN argument_list_opt:args RPAREN LBRACE RBRACE LBRACE tag_list:tl RBRACE {: 
1951                 ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
1952                 pn.addChild(type);
1953                 pn.addChild(args);
1954                 pn.addChild(tl);
1955                 RESULT=pn;
1956         :}
1957         | NEWFLAG class_or_interface_type:type LPAREN argument_list_opt:args RPAREN LBRACE flag_list:fl RBRACE LBRACE tag_list:tl RBRACE {: 
1958                 ParseNode pn=new ParseNode("createobject",parser.lexer.line_num);
1959                 pn.addChild(type);
1960                 pn.addChild(args);
1961                 pn.addChild(fl);
1962                 pn.addChild(tl);
1963                 RESULT=pn;
1964         :}
1965         |       NEW class_or_interface_type:type LPAREN argument_list_opt:args RPAREN class_body:body {: 
1966                 ParseNode pn=new ParseNode("createobjectcls",parser.lexer.line_num);          
1967                 pn.addChild(type);
1968                 pn.addChild(args);
1969                 pn.addChild("decl").addChild("classbody").addChild(body);
1970                 RESULT=pn;
1971         :}
1972 //      |       primary DOT NEW IDENTIFIER
1973 //                      LPAREN argument_list_opt RPAREN {: 
1974 //              
1975 //      :}
1976 //      |       primary DOT NEW IDENTIFIER
1977 //                      LPAREN argument_list_opt RPAREN class_body
1978 //      |       name DOT NEW IDENTIFIER
1979 //                      LPAREN argument_list_opt RPAREN
1980 //      |       name DOT NEW IDENTIFIER
1981 //                      LPAREN argument_list_opt RPAREN class_body
1982         ;
1983 cons_argument_list_opt ::=
1984         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
1985         |       cons_argument_list:args {: RESULT=args; :}
1986         ;
1987
1988 cons_argument_list ::=
1989                 IDENTIFIER:id COLON expression:exp {:
1990                 ParseNode pn=new ParseNode("cons_argument_list",parser.lexer.line_num);
1991                 ParseNode pnarg=pn.addChild("binding");
1992                 pnarg.addChild("var").addChild(id);
1993                 pnarg.addChild("exp").addChild(exp);
1994                 RESULT=pn;
1995         :}
1996         |       argument_list:list COMMA IDENTIFIER:id COLON expression:exp {:
1997                 ParseNode pnarg=new ParseNode("binding",parser.lexer.line_num);
1998                 pnarg.addChild("var").addChild(id);
1999                 pnarg.addChild("exp").addChild(exp);
2000                 list.addChild(pnarg);
2001                 RESULT=list;
2002         :}
2003         ;
2004
2005 argument_list_opt ::=
2006         {: RESULT=new ParseNode("empty",parser.lexer.line_num); :}
2007         |       argument_list:args {: RESULT=args; :}
2008         ;
2009
2010 argument_list ::=
2011                 expression:exp {:
2012                 ParseNode pn=new ParseNode("argument_list",parser.lexer.line_num);
2013                 pn.addChild(exp);
2014                 RESULT=pn;
2015         :}
2016         |       argument_list:list COMMA expression:exp {:
2017                 list.addChild(exp);
2018                 RESULT=list;
2019         :}
2020         ;
2021 array_creation_uninit ::=
2022                 NEW primitive_type:type dim_exprs:dimexpr dims_opt:dims {: 
2023                 ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
2024                 pn.addChild(type);
2025                 pn.addChild(dimexpr);
2026                 pn.addChild("dims_opt").setLiteral(dims);
2027                 RESULT=pn;
2028                 :}
2029         |       NEW class_or_interface_type:type dim_exprs:dimexpr dims_opt:dims {: 
2030                 ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
2031                 pn.addChild(type);
2032                 pn.addChild(dimexpr);
2033                 pn.addChild("dims_opt").setLiteral(dims);
2034                 RESULT=pn;
2035         :}
2036         |       GLOBAL NEW primitive_type:type dim_exprs:dimexpr dims_opt:dims {: 
2037                 ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
2038                 pn.addChild(type);
2039                 pn.addChild(dimexpr);
2040                 pn.addChild("dims_opt").setLiteral(dims);
2041                 pn.addChild("global");
2042                 RESULT=pn;
2043                 :}
2044         |       SCRATCH NEW primitive_type:type dim_exprs:dimexpr dims_opt:dims {: 
2045                 ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
2046                 pn.addChild(type);
2047                 pn.addChild(dimexpr);
2048                 pn.addChild("dims_opt").setLiteral(dims);
2049                 pn.addChild("scratch");
2050                 RESULT=pn;
2051                 :}
2052         |       DISJOINT IDENTIFIER:id NEW primitive_type:type dim_exprs:dimexpr dims_opt:dims {: 
2053                 ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
2054                 pn.addChild(type);
2055                 pn.addChild(dimexpr);
2056                 pn.addChild("dims_opt").setLiteral(dims);
2057                 pn.addChild("disjoint").addChild(id);
2058                 RESULT=pn;
2059                 :}
2060         |       GLOBAL NEW class_or_interface_type:type dim_exprs:dimexpr dims_opt:dims {: 
2061                 ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
2062                 pn.addChild(type);
2063                 pn.addChild(dimexpr);
2064                 pn.addChild("dims_opt").setLiteral(dims);
2065                 pn.addChild("global");
2066                 RESULT=pn;
2067                 :}
2068         |       SCRATCH NEW class_or_interface_type:type dim_exprs:dimexpr dims_opt:dims {: 
2069                 ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
2070                 pn.addChild(type);
2071                 pn.addChild(dimexpr);
2072                 pn.addChild("dims_opt").setLiteral(dims);
2073                 pn.addChild("scratch");
2074                 RESULT=pn;
2075                 :}
2076         |       DISJOINT IDENTIFIER:id NEW class_or_interface_type:type dim_exprs:dimexpr dims_opt:dims {: 
2077                 ParseNode pn=new ParseNode("createarray",parser.lexer.line_num);
2078                 pn.addChild(type);
2079                 pn.addChild(dimexpr);
2080                 pn.addChild("dims_opt").setLiteral(dims);
2081                 pn.addChild("disjoint").addChild(id);           
2082                 RESULT=pn;
2083                 :}
2084         ;
2085 array_creation_init ::=
2086                 NEW primitive_type:type dims:dims array_initializer:ai {: 
2087                 ParseNode pn=new ParseNode("createarray2",parser.lexer.line_num);
2088                 pn.addChild(type);
2089                 pn.addChild("dims_opt").setLiteral(dims);
2090                 pn.addChild("initializer").addChild(ai);
2091                 RESULT=pn;
2092                 :}
2093         |       NEW class_or_interface_type:type dims:dims array_initializer:ai {: 
2094                 ParseNode pn=new ParseNode("createarray2",parser.lexer.line_num);
2095                 pn.addChild(type);
2096                 pn.addChild("dims_opt").setLiteral(dims);
2097                 pn.addChild("initializer").addChild(ai);
2098                 RESULT=pn;
2099                 :}
2100         ;
2101 dim_exprs ::=   dim_expr:exp {: 
2102                 ParseNode pn=new ParseNode("dim_exprs",parser.lexer.line_num);
2103                 pn.addChild(exp);
2104                 RESULT=pn; :}
2105         |       dim_exprs:base dim_expr:exp {: 
2106                 base.addChild(exp);
2107                 RESULT=base;
2108         :}
2109         ;
2110 dim_expr ::=    LBRACK expression:exp RBRACK {: RESULT=exp; :}
2111         ;
2112 dims_opt ::= {: RESULT=new Integer(0); :}
2113         |       dims:dims {: RESULT = dims; :}
2114         ;
2115
2116 dims ::=        LBRACK RBRACK {: RESULT=new Integer(1); :}
2117         |       dims:dims LBRACK RBRACK {: RESULT=new Integer(dims.intValue()+1); :}
2118         ;
2119
2120 field_access ::=
2121                 primary:base DOT IDENTIFIER:id {: 
2122                 ParseNode pn=new ParseNode("fieldaccess",parser.lexer.line_num);
2123                 pn.addChild("base").addChild(base);
2124                 pn.addChild("field").addChild(id);
2125                 RESULT=pn;
2126     :}
2127 //      |       SUPER DOT IDENTIFIER
2128 //      |       name DOT SUPER DOT IDENTIFIER
2129         ;
2130 method_invocation ::=
2131                 name:name LPAREN argument_list_opt:args RPAREN {: 
2132                 ParseNode pn=new ParseNode("methodinvoke1",parser.lexer.line_num);
2133                 pn.addChild(name);
2134                 pn.addChild(args);
2135                 RESULT=pn;
2136         :}
2137         |       primary:base DOT IDENTIFIER:name LPAREN argument_list_opt:args RPAREN {: 
2138                 ParseNode pn=new ParseNode("methodinvoke2",parser.lexer.line_num);
2139                 pn.addChild("base").addChild(base);
2140                 pn.addChild("id").addChild(name);
2141                 pn.addChild(args);
2142                 RESULT=pn;
2143         :}
2144         |       SUPER DOT IDENTIFIER:id LPAREN argument_list_opt:args RPAREN {: 
2145                 ParseNode name=new ParseNode("name",parser.lexer.line_num);
2146                 name.addChild("base").addChild("name").addChild("identifier").addChild("super");
2147                 name.addChild("identifier").addChild(id);
2148                 ParseNode pn=new ParseNode("methodinvoke1",parser.lexer.line_num);
2149                 pn.addChild(name);
2150                 pn.addChild(args);
2151                 RESULT=pn;
2152         :}
2153 //      |       name DOT SUPER DOT IDENTIFIER LPAREN argument_list_opt RPAREN
2154         ;
2155 array_access ::=
2156                 name:name LBRACK expression:exp RBRACK {: 
2157                 ParseNode pn=new ParseNode("arrayaccess",parser.lexer.line_num);
2158                 pn.addChild("base").addChild(name);
2159                 pn.addChild("index").addChild(exp);
2160                 RESULT=pn;
2161         :}
2162         |       primary_no_new_array:base LBRACK expression:exp RBRACK {: 
2163                 ParseNode pn=new ParseNode("arrayaccess",parser.lexer.line_num);
2164                 pn.addChild("base").addChild(base);
2165                 pn.addChild("index").addChild(exp);
2166                 RESULT=pn;
2167         :}
2168 //      |       array_creation_init:init LBRACK expression:exp RBRACK {: 
2169 //              ParseNode pn=new ParseNode("arrayaccess",parser.lexer.line_num);
2170 //              pn.addChild("init").addChild(init);
2171 //              pn.addChild("index").addChild(exp);
2172 //              RESULT=pn;
2173 //      :}
2174         ;
2175
2176 postfix_expression ::=
2177                 primary:exp {: 
2178         RESULT=exp; :}
2179         |       name:exp {: RESULT=exp; :}
2180         |       postincrement_expression:exp {: RESULT=exp; :}
2181         |       postdecrement_expression:exp {: RESULT=exp; :}
2182         ;
2183 postincrement_expression ::=
2184                 postfix_expression:exp PLUSPLUS 
2185                 {: RESULT=(new ParseNode("postinc",parser.lexer.line_num)).addChild(exp).getRoot(); :}
2186         ;
2187 postdecrement_expression ::=
2188                 postfix_expression:exp MINUSMINUS
2189                 {: RESULT=(new ParseNode("postdec",parser.lexer.line_num)).addChild(exp).getRoot(); :}
2190         ;
2191 unary_expression ::=
2192                 preincrement_expression:exp {: RESULT=exp; :}
2193         |       predecrement_expression:exp {: RESULT=exp; :}
2194         |       PLUS unary_expression:exp 
2195         {: RESULT=(new ParseNode("unaryplus",parser.lexer.line_num)).addChild(exp).getRoot(); :}
2196         |       MINUS unary_expression:exp
2197         {: RESULT=(new ParseNode("unaryminus",parser.lexer.line_num)).addChild(exp).getRoot(); :}
2198         |       unary_expression_not_plus_minus:exp {: 
2199                         RESULT=exp; :}
2200         ;
2201 preincrement_expression ::=
2202                 PLUSPLUS unary_expression:exp
2203                 {: RESULT=(new ParseNode("preinc",parser.lexer.line_num)).addChild(exp).getRoot(); :}
2204         ;
2205 predecrement_expression ::=
2206                 MINUSMINUS unary_expression:exp
2207                 {: RESULT=(new ParseNode("predec",parser.lexer.line_num)).addChild(exp).getRoot(); :}
2208         ;
2209 unary_expression_not_plus_minus ::=
2210                 postfix_expression:exp {: 
2211                 RESULT=exp; :}
2212         |       COMP unary_expression:exp
2213                 {: RESULT=(new ParseNode("comp",parser.lexer.line_num)).addChild(exp).getRoot(); :}
2214         |       NOT unary_expression:exp 
2215                 {: RESULT=(new ParseNode("not",parser.lexer.line_num)).addChild(exp).getRoot(); :}
2216         |       cast_expression:exp {: RESULT=exp; :}
2217         ;
2218 cast_expression ::=
2219                 LPAREN primitive_type:type dims_opt:dims
2220                 RPAREN unary_expression:exp {: 
2221                 ParseNode pn=new ParseNode("cast1",parser.lexer.line_num);
2222 if (dims.intValue()==0)
2223                 pn.addChild("type").addChild(type);
2224 else {
2225                 ParseNode arrayt=pn.addChild("type").addChild("type").addChild("array");
2226                 arrayt.addChild("basetype").addChild(type);
2227                 arrayt.addChild("dims").setLiteral(dims);
2228 }
2229                 pn.addChild("exp").addChild(exp);
2230                 RESULT=pn;
2231         :}
2232         |       LPAREN expression:type RPAREN unary_expression_not_plus_minus:exp {: 
2233                 ParseNode pn=new ParseNode("cast2",parser.lexer.line_num);
2234                 pn.addChild("type").addChild(type);
2235                 pn.addChild("exp").addChild(exp);
2236                 RESULT=pn;
2237
2238         :}
2239         |       LPAREN name:name dims:dims RPAREN unary_expression_not_plus_minus:exp {: 
2240                 ParseNode pn=new ParseNode("cast1",parser.lexer.line_num);
2241 if (dims.intValue()==0)
2242                 pn.addChild("type").addChild("class").addChild(name);
2243 else {
2244                 ParseNode arrayt=pn.addChild("type").addChild("type").addChild("array");
2245                 arrayt.addChild("basetype").addChild("type").addChild("class").addChild(name);
2246                 arrayt.addChild("dims").setLiteral(dims);
2247 }
2248                 pn.addChild("exp").addChild(exp);
2249                 RESULT=pn;
2250
2251         :}
2252         ;
2253 multiplicative_expression ::=
2254                 unary_expression:exp {: 
2255                         RESULT=exp; :}
2256         |       multiplicative_expression:exp1 MULT unary_expression:exp2 {: 
2257                 ParseNode pn=new ParseNode("mult",parser.lexer.line_num);
2258                 pn.addChild(exp1);
2259                 pn.addChild(exp2);
2260                 RESULT=pn;
2261         :}
2262         |       multiplicative_expression:exp1 DIV unary_expression:exp2 {:
2263                 ParseNode pn=new ParseNode("div",parser.lexer.line_num);
2264                 pn.addChild(exp1);
2265                 pn.addChild(exp2);
2266                 RESULT=pn;
2267         :}
2268         |       multiplicative_expression:exp1 MOD unary_expression:exp2 {:
2269                 ParseNode pn=new ParseNode("mod",parser.lexer.line_num);
2270                 pn.addChild(exp1);
2271                 pn.addChild(exp2);
2272                 RESULT=pn;
2273         :}
2274         ;
2275 additive_expression ::=
2276                 multiplicative_expression:exp {: 
2277                         RESULT=exp; :}
2278         |       additive_expression:exp1 PLUS multiplicative_expression:exp2 {: 
2279                 ParseNode pn=new ParseNode("add",parser.lexer.line_num);
2280                 pn.addChild(exp1);
2281                 pn.addChild(exp2);
2282                 RESULT=pn;
2283         :}
2284         |       additive_expression:exp1 MINUS multiplicative_expression:exp2 {: 
2285                 ParseNode pn=new ParseNode("sub",parser.lexer.line_num);
2286                 pn.addChild(exp1);
2287                 pn.addChild(exp2);
2288                 RESULT=pn;
2289         :}
2290         ;
2291 shift_expression ::=
2292                 additive_expression:exp {: 
2293                         RESULT=exp; :}
2294         |       shift_expression:exp1 LSHIFT additive_expression:exp2 {: 
2295                 ParseNode pn=new ParseNode("leftshift",parser.lexer.line_num);
2296                 pn.addChild(exp1);
2297                 pn.addChild(exp2);
2298                 RESULT=pn;
2299         :}
2300         |       shift_expression:exp1 RSHIFT additive_expression:exp2 {: 
2301                 ParseNode pn=new ParseNode("rightshift",parser.lexer.line_num);
2302                 pn.addChild(exp1);
2303                 pn.addChild(exp2);
2304                 RESULT=pn;
2305         :}
2306         |       shift_expression:exp1 URSHIFT additive_expression:exp2 {:
2307                 ParseNode pn=new ParseNode("urightshift",parser.lexer.line_num);
2308                 pn.addChild(exp1);      
2309                 pn.addChild(exp2);      
2310                 RESULT=pn;
2311         :}
2312         ;
2313 relational_expression ::=
2314                 shift_expression:exp {: 
2315                         RESULT=exp; :}
2316         |       relational_expression:exp1 LT shift_expression:exp2 {:
2317                 ParseNode pn=new ParseNode("comp_lt",parser.lexer.line_num);
2318                 pn.addChild(exp1);
2319                 pn.addChild(exp2);
2320                 RESULT=pn;
2321         :}
2322         |       relational_expression:exp1 GT shift_expression:exp2 {:
2323                 ParseNode pn=new ParseNode("comp_gt",parser.lexer.line_num);
2324                 pn.addChild(exp1);
2325                 pn.addChild(exp2);
2326                 RESULT=pn;
2327         :}
2328         |       relational_expression:exp1 LTEQ shift_expression:exp2 {:
2329                 ParseNode pn=new ParseNode("comp_lte",parser.lexer.line_num);
2330                 pn.addChild(exp1);
2331                 pn.addChild(exp2);
2332                 RESULT=pn;
2333         :}
2334         |       relational_expression:exp1 GTEQ shift_expression:exp2 {:
2335                 ParseNode pn=new ParseNode("comp_gte",parser.lexer.line_num);
2336                 pn.addChild(exp1);
2337                 pn.addChild(exp2);
2338                 RESULT=pn;
2339         :}
2340         |       relational_expression:exp INSTANCEOF reference_type:type {: 
2341                 ParseNode pn=new ParseNode("instanceof",parser.lexer.line_num);
2342                 pn.addChild("exp").addChild(exp);
2343                 pn.addChild(type);
2344                 RESULT=pn;
2345         :}
2346         ;
2347
2348 equality_expression ::=
2349                 relational_expression:exp {: 
2350                         RESULT=exp; :}
2351         |       equality_expression:exp1 EQEQ relational_expression:exp2 {: 
2352                 ParseNode pn=new ParseNode("equal",parser.lexer.line_num);
2353                 pn.addChild(exp1);
2354                 pn.addChild(exp2);
2355                 RESULT=pn;
2356         :}
2357         |       equality_expression:exp1 NOTEQ relational_expression:exp2 {: 
2358                 ParseNode pn=new ParseNode("not_equal",parser.lexer.line_num);
2359                 pn.addChild(exp1);
2360                 pn.addChild(exp2);
2361                 RESULT=pn;
2362         :}
2363         ;
2364 and_expression ::=
2365                 equality_expression:exp {: 
2366                 RESULT=exp; :}
2367         |       and_expression:exp1 AND equality_expression:exp2 {: 
2368                 ParseNode pn=new ParseNode("bitwise_and",parser.lexer.line_num);
2369                 pn.addChild(exp1);
2370                 pn.addChild(exp2);
2371                 RESULT=pn;
2372         :}
2373         ;
2374 exclusive_or_expression ::=
2375                 and_expression:expr {: 
2376                         RESULT=expr;
2377                 :}
2378         |       exclusive_or_expression:exp1 XOR and_expression:exp2 {: 
2379                 ParseNode pn=new ParseNode("bitwise_xor",parser.lexer.line_num);
2380                 pn.addChild(exp1);
2381                 pn.addChild(exp2);
2382                 RESULT=pn;
2383 :}
2384         ;
2385 inclusive_or_expression ::=
2386                 exclusive_or_expression:exclor {: 
2387                         RESULT=exclor; :}
2388         |       inclusive_or_expression:exp1 OR exclusive_or_expression:exp2 {: 
2389                 ParseNode pn=new ParseNode("bitwise_or",parser.lexer.line_num);
2390                 pn.addChild(exp1);
2391                 pn.addChild(exp2);
2392                 RESULT=pn;
2393         :}
2394         ;
2395 conditional_and_expression ::=
2396                 inclusive_or_expression:inclor {: 
2397                         RESULT=inclor; :}
2398         |       conditional_and_expression:exp1 ANDAND inclusive_or_expression:exp2 {:
2399                 ParseNode pn=new ParseNode("logical_and",parser.lexer.line_num);
2400                 pn.addChild(exp1);
2401                 pn.addChild(exp2);
2402                 RESULT=pn;
2403         :}
2404         ;
2405 conditional_or_expression ::=
2406                 conditional_and_expression:condand {: 
2407                         RESULT=condand; :}
2408         |       conditional_or_expression:exp1 OROR conditional_and_expression:exp2 {: 
2409                 ParseNode pn=new ParseNode("logical_or",parser.lexer.line_num);
2410                 pn.addChild(exp1);
2411                 pn.addChild(exp2);
2412                 RESULT=pn;
2413         :}
2414         ;
2415 conditional_expression ::=
2416                 conditional_or_expression:condor {: 
2417                         RESULT=condor; :}
2418         |       conditional_or_expression:condor QUESTION expression:exptrue
2419                         COLON conditional_expression:expfalse {: 
2420                         ParseNode pn=new ParseNode("tert",parser.lexer.line_num);
2421                         pn.addChild("cond").addChild(condor);
2422                         pn.addChild("trueexpr").addChild(exptrue);
2423                         pn.addChild("falseexpr").addChild(expfalse);
2424                         RESULT=pn;
2425                         :}
2426         ;
2427 getoffset_expression ::=
2428         GETOFFSET LBRACE class_or_interface_type:type COMMA IDENTIFIER:id RBRACE {:
2429         ParseNode pn = new ParseNode("getoffset",parser.lexer.line_num);
2430         pn.addChild(type);
2431         pn.addChild("field").addChild(id);
2432         RESULT = pn;
2433       :}
2434    ;
2435  
2436 assignment_expression ::=
2437                 conditional_expression:expr {: 
2438                         RESULT=expr; :} |
2439                 assignment:assign {: 
2440                         RESULT=assign; :}             |
2441         getoffset_expression:expr {:
2442             RESULT=expr; :}
2443         ;
2444 // semantic check necessary here to ensure a valid left-hand side.
2445 // allowing a parenthesized variable here on the lhs was introduced in
2446 // JLS 2; thanks to Eric Blake for pointing this out.
2447 assignment ::=  postfix_expression:lvalue assignment_operator:op assignment_expression:rvalue {:
2448                 ParseNode pn=new ParseNode("assignment",parser.lexer.line_num);
2449                 pn.addChild("op").addChild(op);
2450                 ParseNode pnargs=pn.addChild("args");
2451                 pnargs.addChild(lvalue);
2452                 pnargs.addChild(rvalue);
2453                 RESULT=pn;
2454          :}
2455         ;
2456 assignment_operator ::=
2457                 EQ {: RESULT=new ParseNode("eq",parser.lexer.line_num); :}
2458         |       MULTEQ {: RESULT=new ParseNode("multeq",parser.lexer.line_num); :}
2459         |       DIVEQ {: RESULT=new ParseNode("diveq",parser.lexer.line_num); :}
2460         |       MODEQ {: RESULT=new ParseNode("modeq",parser.lexer.line_num); :}
2461         |       PLUSEQ {: RESULT=new ParseNode("pluseq",parser.lexer.line_num); :}
2462         |       MINUSEQ {: RESULT=new ParseNode("minuseq",parser.lexer.line_num); :}
2463         |       LSHIFTEQ {: RESULT=new ParseNode("lshifteq",parser.lexer.line_num); :}
2464         |       RSHIFTEQ {: RESULT=new ParseNode("rshifteq",parser.lexer.line_num); :}
2465         |       URSHIFTEQ {: RESULT=new ParseNode("urshifteq",parser.lexer.line_num); :}
2466         |       ANDEQ {: RESULT=new ParseNode("andeq",parser.lexer.line_num); :}
2467         |       XOREQ {: RESULT=new ParseNode("xoreq",parser.lexer.line_num); :}
2468         |       OREQ {: RESULT=new ParseNode("oreq",parser.lexer.line_num); :}
2469         ;
2470 expression_opt ::=
2471         {:      RESULT=new ParseNode("empty",parser.lexer.line_num); :}
2472         |       expression:exp {: 
2473                 RESULT=exp; :}
2474         ;
2475 expression ::=  assignment_expression:exp {: 
2476                 RESULT=exp; :}
2477         ;
2478 // note that this constraint must be enforced during semantic checking
2479 // 'constant_expression' should include enumerated constants.
2480 constant_expression ::=
2481                 expression:exp 
2482                 {:
2483                     ParseNode pn = new ParseNode("constant_expression",parser.lexer.line_num);
2484                     pn.addChild(exp);
2485                     RESULT=pn;
2486                 :}
2487         ;
2488
2489
2490 genreach_statement ::=
2491                 GENREACH IDENTIFIER:graphName SEMICOLON {: 
2492                 ParseNode pn=new ParseNode("genreach",parser.lexer.line_num);
2493                 pn.addChild("graphName").addChild(graphName);
2494                 RESULT=pn; :}
2495         ;