diff --git a/bin/mycompiler/myparser/JavaParser.jay b/bin/mycompiler/myparser/JavaParser.jay index 69dc34481..0bcaee019 100755 --- a/bin/mycompiler/myparser/JavaParser.jay +++ b/bin/mycompiler/myparser/JavaParser.jay @@ -323,7 +323,7 @@ compilationunit : typedeclarations { $$=$1; } -/* |importdeclarations typedeclarations + |importdeclarations typedeclarations { $2.addImports($1); $$=$2; @@ -346,7 +346,7 @@ compilationunit : typedeclarations this.testPair.add(new Pair($1,$2)); $$=$3; } - */ + packagedeclaration : PACKAGE name ';' ; { // SCJU: Package diff --git a/src/mycompiler/SourceFile.java b/src/mycompiler/SourceFile.java index 7b95736ba..4918595de 100755 --- a/src/mycompiler/SourceFile.java +++ b/src/mycompiler/SourceFile.java @@ -5,6 +5,7 @@ package mycompiler; // ino.module.SourceFile.8722.import import java.util.Collection; import java.util.Enumeration; +import java.util.HashMap; import java.util.Hashtable; import java.util.Iterator; import java.util.Vector; @@ -690,6 +691,27 @@ public class SourceFile } } + //Alle Generischen Typvariablen in TPH umwandeln: + HashMap gtv2tph = new HashMap(); + for(Pair pair : constraints){ + if(pair.TA1 instanceof GenericTypeVar){ + TypePlaceholder tph = gtv2tph.get(pair.TA1); + if(tph == null){ + tph = TypePlaceholder.fresh(); + gtv2tph.put((GenericTypeVar)pair.TA1, tph); + } + pair.TA1 = tph; + } + if(pair.TA2 instanceof GenericTypeVar){ + TypePlaceholder tph = gtv2tph.get(pair.TA2); + if(tph == null){ + tph = TypePlaceholder.fresh(); + gtv2tph.put((GenericTypeVar)pair.TA2, tph); + } + pair.TA2 = tph; + } + } + //Erst die Unifizierung erstellen: Vector constraintsClone = (Vector)constraints.clone(); Vector> unifyResult = Unify.unify(constraintsClone, finiteClosure); diff --git a/src/mycompiler/myclass/Class.java b/src/mycompiler/myclass/Class.java index ca4c87c8e..a35316475 100755 --- a/src/mycompiler/myclass/Class.java +++ b/src/mycompiler/myclass/Class.java @@ -1250,6 +1250,10 @@ public class Class extends SyntaxTreeNode implements AClassOrInterface * @return */ public RefType getType() { + Vector parameter = new Vector(); + for(Type param : this.get_ParaList()){ + parameter.add(((GenericTypeVar)param).getTypePlaceHolder());//(TypePlaceholder.fresh()); //Hier ist kein ReplacementListener notwendig. Der Typ soll nie eingesetzt werden. Der TPH wird nur gebraucht, damit das Unifizieren funktioniert. + } return new RefType(this.getName(), this.get_ParaList(), 0); } diff --git a/src/mycompiler/myclass/Method.java b/src/mycompiler/myclass/Method.java index 97f7df39a..3acb403ab 100755 --- a/src/mycompiler/myclass/Method.java +++ b/src/mycompiler/myclass/Method.java @@ -705,7 +705,9 @@ public class Method extends Field implements IItemWithOffset, TypeInsertable public boolean equals(Object obj){ if(!(obj instanceof Method))return false; Method equals = (Method) obj; - if(!this.returntype.equals(equals.returntype))return false; + if((this.returntype!=null && equals.returntype==null))return false; + if((this.returntype==null && equals.returntype!=null))return false; + if(this.returntype!=null && equals.returntype!=null)if(!this.returntype.equals(equals.returntype))return false; if(!this.parameterlist.equals(equals.parameterlist))return false; return super.equals(obj); } diff --git a/src/mycompiler/myparser/JavaParser.java b/src/mycompiler/myparser/JavaParser.java index ef95bad58..9dcd124ef 100644 --- a/src/mycompiler/myparser/JavaParser.java +++ b/src/mycompiler/myparser/JavaParser.java @@ -266,10 +266,14 @@ public Vector testPair = new Vector(); */ //t protected jay.yydebug.yyDebug yydebug; - protected static final int yyFinal = 9; + protected static final int yyFinal = 15; //t public static final String yyRule [] = { //t "$accept : compilationunit", //t "compilationunit : typedeclarations", +//t "compilationunit : importdeclarations typedeclarations", +//t "compilationunit : packagedeclaration importdeclarations typedeclarations", +//t "compilationunit : packagedeclaration typedeclarations", +//t "compilationunit : type type compilationunit", //t "packagedeclaration : PACKAGE name ';'", //t "importdeclarations : importdeclaration", //t "importdeclarations : importdeclarations importdeclaration", @@ -755,13 +759,44 @@ case 1: } break; case 2: + // line 327 "./../src/mycompiler/myparser/JavaParser.jay" + { + ((SourceFile)yyVals[0+yyTop]).addImports(((ImportDeclarations)yyVals[-1+yyTop])); + yyVal=((SourceFile)yyVals[0+yyTop]); + } + break; +case 3: + // line 332 "./../src/mycompiler/myparser/JavaParser.jay" + { + /* SCJU: Package*/ + ((SourceFile)yyVals[0+yyTop]).setPackageName(((UsedId)yyVals[-2+yyTop])); + ((SourceFile)yyVals[0+yyTop]).addImports(((ImportDeclarations)yyVals[-1+yyTop])); + yyVal=((SourceFile)yyVals[0+yyTop]); + } + break; +case 4: + // line 339 "./../src/mycompiler/myparser/JavaParser.jay" + { + /* SCJU: Package*/ + ((SourceFile)yyVals[0+yyTop]).setPackageName(((UsedId)yyVals[-1+yyTop])); + yyVal=((SourceFile)yyVals[0+yyTop]); + } + break; +case 5: + // line 345 "./../src/mycompiler/myparser/JavaParser.jay" + { + this.testPair.add(new Pair(((Type)yyVals[-2+yyTop]),((Type)yyVals[-1+yyTop]))); + yyVal=((SourceFile)yyVals[0+yyTop]); + } + break; +case 6: // line 351 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Package*/ yyVal = ((UsedId)yyVals[-1+yyTop]); } break; -case 3: +case 7: // line 357 "./../src/mycompiler/myparser/JavaParser.jay" { ImportDeclarations declarations=new ImportDeclarations(); @@ -769,20 +804,20 @@ case 3: yyVal=declarations; } break; -case 4: +case 8: // line 363 "./../src/mycompiler/myparser/JavaParser.jay" { ((ImportDeclarations)yyVals[-1+yyTop]).addElement(((UsedId)yyVals[0+yyTop])); yyVal=((ImportDeclarations)yyVals[-1+yyTop]); } break; -case 5: +case 9: // line 369 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((UsedId)yyVals[-1+yyTop]); } break; -case 6: +case 10: // line 374 "./../src/mycompiler/myparser/JavaParser.jay" { SourceFile Scfile = new SourceFile(); @@ -790,39 +825,39 @@ case 6: yyVal=Scfile; } break; -case 7: +case 11: // line 380 "./../src/mycompiler/myparser/JavaParser.jay" { ((SourceFile)yyVals[-1+yyTop]).addElement(((AClassOrInterface)yyVals[0+yyTop])); yyVal=((SourceFile)yyVals[-1+yyTop]); } break; -case 8: +case 12: // line 386 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((UsedId)yyVals[0+yyTop]); } break; -case 9: +case 13: // line 390 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((UsedId)yyVals[0+yyTop]); } break; -case 10: +case 14: // line 395 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Class)yyVals[0+yyTop]); } break; -case 11: +case 15: // line 399 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Interface*/ yyVal=((Interface)yyVals[0+yyTop]); } break; -case 12: +case 16: // line 406 "./../src/mycompiler/myparser/JavaParser.jay" { ((UsedId)yyVals[-2+yyTop]).set_Name(((Token)yyVals[0+yyTop]).getLexem()); @@ -830,7 +865,7 @@ case 12: yyVal=((UsedId)yyVals[-2+yyTop]); } break; -case 13: +case 17: // line 413 "./../src/mycompiler/myparser/JavaParser.jay" { ((UsedId)yyVals[-2+yyTop]).set_Name(((Token)yyVals[0+yyTop]).getLexem()); @@ -838,7 +873,7 @@ case 13: yyVal=((UsedId)yyVals[-2+yyTop]); } break; -case 14: +case 18: // line 419 "./../src/mycompiler/myparser/JavaParser.jay" { ((UsedId)yyVals[-2+yyTop]).set_Name("*"); @@ -846,7 +881,7 @@ case 14: yyVal=((UsedId)yyVals[-2+yyTop]); } break; -case 15: +case 19: // line 427 "./../src/mycompiler/myparser/JavaParser.jay" { UsedId UI = new UsedId(((Token)yyVals[0+yyTop]).getOffset()); @@ -855,7 +890,7 @@ case 15: yyVal = UI; } break; -case 16: +case 20: // line 435 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Um das hier uebersichtlicher zu halten,*/ @@ -874,7 +909,7 @@ case 16: this.initUsedIdsToCheck(); } break; -case 17: +case 21: // line 452 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = new Class(((ClassAndParameter)yyVals[-1+yyTop]).getName(), ((Modifiers)yyVals[-3+yyTop]), ((ClassBody)yyVals[0+yyTop]), containedTypes,usedIdsToCheck, null, null, ((ClassAndParameter)yyVals[-1+yyTop]).getParaVector()); @@ -882,7 +917,7 @@ case 17: this.initUsedIdsToCheck(); } break; -case 18: +case 22: // line 458 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = new Class(((ClassAndParameter)yyVals[-2+yyTop]).getName(), null, ((ClassBody)yyVals[0+yyTop]), containedTypes,usedIdsToCheck, ((UsedId)yyVals[-1+yyTop]), null, ((ClassAndParameter)yyVals[-2+yyTop]).getParaVector()); @@ -890,7 +925,7 @@ case 18: this.initUsedIdsToCheck(); } break; -case 19: +case 23: // line 464 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = new Class(((ClassAndParameter)yyVals[-2+yyTop]).getName(), ((Modifiers)yyVals[-4+yyTop]), ((ClassBody)yyVals[0+yyTop]), containedTypes, usedIdsToCheck, ((UsedId)yyVals[-1+yyTop]), null, ((ClassAndParameter)yyVals[-2+yyTop]).getParaVector()); @@ -898,7 +933,7 @@ case 19: this.initUsedIdsToCheck(); } break; -case 20: +case 24: // line 471 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = new Class(((ClassAndParameter)yyVals[-2+yyTop]).getName(), null, ((ClassBody)yyVals[0+yyTop]), containedTypes, usedIdsToCheck, null, ((InterfaceList)yyVals[-1+yyTop]).getVector(), ((ClassAndParameter)yyVals[-2+yyTop]).getParaVector()); @@ -906,7 +941,7 @@ case 20: this.initUsedIdsToCheck(); } break; -case 21: +case 25: // line 477 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = new Class(((ClassAndParameter)yyVals[-2+yyTop]).getName(), ((Modifiers)yyVals[-4+yyTop]), ((ClassBody)yyVals[0+yyTop]), containedTypes, usedIdsToCheck, null, ((InterfaceList)yyVals[-1+yyTop]).getVector(), ((ClassAndParameter)yyVals[-2+yyTop]).getParaVector()); @@ -914,7 +949,7 @@ case 21: this.initUsedIdsToCheck(); } break; -case 22: +case 26: // line 483 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = new Class(((ClassAndParameter)yyVals[-3+yyTop]).getName(), null, ((ClassBody)yyVals[0+yyTop]), containedTypes,usedIdsToCheck, ((UsedId)yyVals[-2+yyTop]), ((InterfaceList)yyVals[-1+yyTop]).getVector(), ((ClassAndParameter)yyVals[-3+yyTop]).getParaVector()); @@ -922,7 +957,7 @@ case 22: this.initUsedIdsToCheck(); } break; -case 23: +case 27: // line 489 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = new Class(((ClassAndParameter)yyVals[-3+yyTop]).getName(), ((Modifiers)yyVals[-5+yyTop]), ((ClassBody)yyVals[0+yyTop]), containedTypes, usedIdsToCheck, ((UsedId)yyVals[-2+yyTop]), ((InterfaceList)yyVals[-1+yyTop]).getVector(), ((ClassAndParameter)yyVals[-3+yyTop]).getParaVector()); @@ -930,7 +965,7 @@ case 23: this.initUsedIdsToCheck(); } break; -case 24: +case 28: // line 496 "./../src/mycompiler/myparser/JavaParser.jay" { /* HOTI*/ @@ -938,13 +973,13 @@ case 24: yyVal = new InterfaceAndParameter(((Token)yyVals[0+yyTop]).getLexem()); } break; -case 25: +case 29: // line 502 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = new InterfaceAndParameter(((Token)yyVals[-3+yyTop]).getLexem(), ((ParaList)yyVals[-1+yyTop])); } break; -case 26: +case 30: // line 507 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Hilfskonstrukt, um die Grammatik ueberschaubar zu halten*/ @@ -952,13 +987,13 @@ case 26: yyVal = new ClassAndParameter(((Token)yyVals[0+yyTop]).getLexem()); } break; -case 27: +case 31: // line 513 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = new ClassAndParameter(((Token)yyVals[-3+yyTop]).getLexem(), ((ParaList)yyVals[-1+yyTop])); } break; -case 28: +case 32: // line 518 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Interface*/ @@ -970,7 +1005,7 @@ case 28: yyVal = ic; } break; -case 29: +case 33: // line 528 "./../src/mycompiler/myparser/JavaParser.jay" { Interface ic = new Interface(((InterfaceAndParameter)yyVals[-1+yyTop]).getName(), ((Modifiers)yyVals[-3+yyTop])); @@ -981,7 +1016,7 @@ case 29: yyVal = ic; } break; -case 30: +case 34: // line 537 "./../src/mycompiler/myparser/JavaParser.jay" { Interface ic = new Interface(((InterfaceAndParameter)yyVals[-2+yyTop]).getName()); @@ -993,7 +1028,7 @@ case 30: yyVal = ic; } break; -case 31: +case 35: // line 547 "./../src/mycompiler/myparser/JavaParser.jay" { Interface ic = new Interface(((InterfaceAndParameter)yyVals[-2+yyTop]).getName(), ((Modifiers)yyVals[-4+yyTop])); @@ -1005,7 +1040,7 @@ case 31: yyVal = ic; } break; -case 32: +case 36: // line 558 "./../src/mycompiler/myparser/JavaParser.jay" { ParaList pl = new ParaList(); @@ -1018,7 +1053,7 @@ case 32: yyVal = pl; } break; -case 33: +case 37: // line 569 "./../src/mycompiler/myparser/JavaParser.jay" { ParaList pl = new ParaList(); @@ -1029,7 +1064,7 @@ case 33: yyVal = pl; } break; -case 34: +case 38: // line 578 "./../src/mycompiler/myparser/JavaParser.jay" { ParaList pl = new ParaList(); @@ -1037,7 +1072,7 @@ case 34: yyVal = pl; } break; -case 35: +case 39: // line 584 "./../src/mycompiler/myparser/JavaParser.jay" { @@ -1051,7 +1086,7 @@ case 35: yyVal=((ParaList)yyVals[-2+yyTop]); } break; -case 36: +case 40: // line 597 "./../src/mycompiler/myparser/JavaParser.jay" { RefType t = new RefType( ((Token)yyVals[-3+yyTop]).getLexem() ,((Token)yyVals[-3+yyTop]).getOffset() ); @@ -1061,14 +1096,14 @@ case 36: yyVal=((ParaList)yyVals[-5+yyTop]); } break; -case 37: +case 41: // line 605 "./../src/mycompiler/myparser/JavaParser.jay" { ((ParaList)yyVals[-2+yyTop]).getParalist().addElement(((WildcardType)yyVals[0+yyTop])); yyVal=((ParaList)yyVals[-2+yyTop]); } break; -case 38: +case 42: // line 611 "./../src/mycompiler/myparser/JavaParser.jay" { /*Luar 29.11.06 Offset auf -1, da keine Angabe vorhanden*/ @@ -1076,34 +1111,34 @@ case 38: yyVal = wc; } break; -case 39: +case 43: // line 617 "./../src/mycompiler/myparser/JavaParser.jay" { ExtendsWildcardType ewc = new ExtendsWildcardType(((Token)yyVals[-1+yyTop]).getOffset(),((RefType)yyVals[0+yyTop])); yyVal = ewc; } break; -case 40: +case 44: // line 622 "./../src/mycompiler/myparser/JavaParser.jay" { SuperWildcardType swc = new SuperWildcardType(((Token)yyVals[-1+yyTop]).getOffset(),((RefType)yyVals[0+yyTop])); yyVal = swc; } break; -case 41: +case 45: // line 628 "./../src/mycompiler/myparser/JavaParser.jay" { ClassBody CB = new ClassBody(); yyVal = CB; } break; -case 42: +case 46: // line 634 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = ((ClassBody)yyVals[-1+yyTop]); } break; -case 43: +case 47: // line 639 "./../src/mycompiler/myparser/JavaParser.jay" { Modifiers Mod = new Modifiers(); @@ -1111,20 +1146,20 @@ case 43: yyVal = Mod; } break; -case 44: +case 48: // line 645 "./../src/mycompiler/myparser/JavaParser.jay" { ((Modifiers)yyVals[-1+yyTop]).addModifier(((Modifier)yyVals[0+yyTop])); yyVal = ((Modifiers)yyVals[-1+yyTop]); } break; -case 45: +case 49: // line 651 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = ((UsedId)yyVals[0+yyTop]); } break; -case 46: +case 50: // line 656 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Interface*/ @@ -1133,27 +1168,27 @@ case 46: yyVal = il; } break; -case 47: +case 51: // line 663 "./../src/mycompiler/myparser/JavaParser.jay" { ((InterfaceList)yyVals[-2+yyTop]).addInterface(((UsedId)yyVals[0+yyTop])); yyVal = ((InterfaceList)yyVals[-2+yyTop]); } break; -case 48: +case 52: // line 669 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Interface*/ yyVal = new InterfaceBody(); } break; -case 49: +case 53: // line 674 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = ((InterfaceBody)yyVals[-1+yyTop]); } break; -case 50: +case 54: // line 681 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Interface*/ @@ -1162,14 +1197,14 @@ case 50: yyVal = il; } break; -case 51: +case 55: // line 688 "./../src/mycompiler/myparser/JavaParser.jay" { ((InterfaceList)yyVals[-2+yyTop]).addInterface(((UsedId)yyVals[0+yyTop])); yyVal = ((InterfaceList)yyVals[-2+yyTop]); } break; -case 52: +case 56: // line 695 "./../src/mycompiler/myparser/JavaParser.jay" { ClassBody CB = new ClassBody(); @@ -1177,55 +1212,55 @@ case 52: yyVal=CB; } break; -case 53: +case 57: // line 701 "./../src/mycompiler/myparser/JavaParser.jay" { ((ClassBody)yyVals[-1+yyTop]).addField(((Field)yyVals[0+yyTop])); yyVal = ((ClassBody)yyVals[-1+yyTop]); } break; -case 54: +case 58: // line 708 "./../src/mycompiler/myparser/JavaParser.jay" { Public Pub = new Public(); yyVal=Pub; } break; -case 55: +case 59: // line 713 "./../src/mycompiler/myparser/JavaParser.jay" { Protected Pro = new Protected(); yyVal=Pro; } break; -case 56: +case 60: // line 718 "./../src/mycompiler/myparser/JavaParser.jay" { Private Pri = new Private(); yyVal=Pri; } break; -case 57: +case 61: // line 723 "./../src/mycompiler/myparser/JavaParser.jay" { Static Sta = new Static(); yyVal=Sta; } break; -case 58: +case 62: // line 728 "./../src/mycompiler/myparser/JavaParser.jay" { Abstract Abs = new Abstract(); yyVal=Abs; } break; -case 59: +case 63: // line 733 "./../src/mycompiler/myparser/JavaParser.jay" { Final fin = new Final(); yyVal = fin; } break; -case 60: +case 64: // line 739 "./../src/mycompiler/myparser/JavaParser.jay" { /*PL 05-07-30 eingefuegt containedTypes ANFANG*/ @@ -1240,7 +1275,7 @@ case 60: yyVal = ((UsedId)yyVals[0+yyTop]); } break; -case 61: +case 65: // line 754 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Interface*/ @@ -1249,39 +1284,39 @@ case 61: yyVal = ib; } break; -case 62: +case 66: // line 761 "./../src/mycompiler/myparser/JavaParser.jay" { ((InterfaceBody)yyVals[-1+yyTop]).addElement(((Field)yyVals[0+yyTop])); yyVal = ((InterfaceBody)yyVals[-1+yyTop]); } break; -case 63: +case 67: // line 767 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Interfaces*/ yyVal = ((UsedId)yyVals[0+yyTop]); } break; -case 64: +case 68: // line 773 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Field)yyVals[0+yyTop]); } break; -case 65: +case 69: // line 778 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Method)yyVals[0+yyTop]); } break; -case 66: +case 70: // line 782 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Field)yyVals[0+yyTop]); } break; -case 67: +case 71: // line 787 "./../src/mycompiler/myparser/JavaParser.jay" { if (((Vector)yyVals[0+yyTop]) != null) { @@ -1293,7 +1328,7 @@ case 67: yyVal=((UsedId)yyVals[-1+yyTop]); } break; -case 68: +case 72: // line 798 "./../src/mycompiler/myparser/JavaParser.jay" { Vector tl = new Vector(); @@ -1301,49 +1336,49 @@ case 68: yyVal = tl; } break; -case 69: +case 73: // line 804 "./../src/mycompiler/myparser/JavaParser.jay" { ((Vector)yyVals[-2+yyTop]).add(((Type)yyVals[0+yyTop])); yyVal=((Vector)yyVals[-2+yyTop]); } break; -case 70: +case 74: // line 811 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = null; } break; -case 71: +case 75: // line 813 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = ((Vector)yyVals[-1+yyTop]); } break; -case 72: +case 76: // line 818 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Interfaces, Spezialform Konstantendef.*/ yyVal = ((Constant)yyVals[0+yyTop]); } break; -case 73: +case 77: // line 823 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = ((Method)yyVals[0+yyTop]); } break; -case 74: +case 78: // line 828 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Field)yyVals[0+yyTop]); } break; -case 75: +case 79: // line 832 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Method)yyVals[0+yyTop]); } break; -case 76: +case 80: // line 837 "./../src/mycompiler/myparser/JavaParser.jay" { Method STAT = new Method(((Token)yyVals[-1+yyTop]).getOffset()); @@ -1358,14 +1393,14 @@ case 76: yyVal=STAT; } break; -case 77: +case 81: // line 851 "./../src/mycompiler/myparser/JavaParser.jay" { ((Constructor)yyVals[-1+yyTop]).set_Block(((Block)yyVals[0+yyTop])); yyVal = ((Constructor)yyVals[-1+yyTop]); } break; -case 78: +case 82: // line 856 "./../src/mycompiler/myparser/JavaParser.jay" { ((Constructor)yyVals[-1+yyTop]).set_Block(((Block)yyVals[0+yyTop])); @@ -1373,7 +1408,7 @@ case 78: yyVal = ((Constructor)yyVals[-1+yyTop]); } break; -case 79: +case 83: // line 863 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Interface*/ @@ -1383,14 +1418,14 @@ case 79: yyVal = c; } break; -case 80: +case 84: // line 872 "./../src/mycompiler/myparser/JavaParser.jay" { /* SCJU: Interface*/ yyVal = ((Method)yyVals[-1+yyTop]); } break; -case 81: +case 85: // line 885 "./../src/mycompiler/myparser/JavaParser.jay" { FieldDeclaration ret = new FieldDeclaration(((DeclId)yyVals[-2+yyTop]).getOffset()); @@ -1400,7 +1435,7 @@ case 81: yyVal=ret; } break; -case 82: +case 86: // line 893 "./../src/mycompiler/myparser/JavaParser.jay" { FieldDeclaration ret = new FieldDeclaration(((DeclId)yyVals[-2+yyTop]).getOffset()); @@ -1409,26 +1444,26 @@ case 82: yyVal=ret; } break; -case 83: +case 87: // line 901 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((FieldDeclaration)yyVals[-1+yyTop]); } break; -case 84: +case 88: // line 905 "./../src/mycompiler/myparser/JavaParser.jay" { ((FieldDeclaration)yyVals[0+yyTop]).setType(((Type)yyVals[-1+yyTop])); yyVal=((FieldDeclaration)yyVals[0+yyTop]); } break; -case 85: +case 89: // line 911 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((FieldDeclaration)yyVals[-1+yyTop]); } break; -case 86: +case 90: // line 916 "./../src/mycompiler/myparser/JavaParser.jay" { org.apache.log4j.Logger.getLogger("parser").debug("T->Parser->fielddeclaration ...: type " + ((Type)yyVals[-2+yyTop])); @@ -1436,7 +1471,7 @@ case 86: yyVal = ((FieldDeclaration)yyVals[-1+yyTop]); } break; -case 87: +case 91: // line 923 "./../src/mycompiler/myparser/JavaParser.jay" { ((FieldDeclaration)yyVals[-1+yyTop]).setType(((Type)yyVals[-2+yyTop])); @@ -1447,27 +1482,27 @@ case 87: yyVal = ((FieldDeclaration)yyVals[-1+yyTop]); } break; -case 88: +case 92: // line 933 "./../src/mycompiler/myparser/JavaParser.jay" { ((Method)yyVals[-1+yyTop]).set_Block(((Block)yyVals[0+yyTop])); yyVal=((Method)yyVals[-1+yyTop]); } break; -case 89: +case 93: // line 940 "./../src/mycompiler/myparser/JavaParser.jay" { Block Bl = new Block(); yyVal=Bl; } break; -case 90: +case 94: // line 946 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Block)yyVals[-1+yyTop]); } break; -case 91: +case 95: // line 951 "./../src/mycompiler/myparser/JavaParser.jay" { Constructor CON = new Constructor(null); /*TODO: Der Parser kann sowieso nicht zwischen einem Konstruktor und einer Methode unterscheiden. Das hier kann wegfallen...*/ @@ -1477,7 +1512,7 @@ case 91: yyVal=CON; } break; -case 92: +case 96: // line 959 "./../src/mycompiler/myparser/JavaParser.jay" { Constructor CONpara = new Constructor(null); @@ -1488,14 +1523,14 @@ case 92: yyVal=CONpara; } break; -case 93: +case 97: // line 969 "./../src/mycompiler/myparser/JavaParser.jay" { Block CBL = new Block(); yyVal=CBL; } break; -case 94: +case 98: // line 974 "./../src/mycompiler/myparser/JavaParser.jay" { Block CBLexpl = new Block(); @@ -1503,13 +1538,13 @@ case 94: yyVal=CBLexpl; } break; -case 95: +case 99: // line 980 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Block)yyVals[-1+yyTop]); } break; -case 96: +case 100: // line 984 "./../src/mycompiler/myparser/JavaParser.jay" { Block CBes = new Block(); @@ -1521,7 +1556,7 @@ case 96: yyVal=CBes; } break; -case 97: +case 101: // line 995 "./../src/mycompiler/myparser/JavaParser.jay" { ExceptionList EL = new ExceptionList(); @@ -1529,13 +1564,13 @@ case 97: yyVal=EL; } break; -case 98: +case 102: // line 1002 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal = ((GenericTypeVar)yyVals[0+yyTop]); } break; -case 99: +case 103: // line 1007 "./../src/mycompiler/myparser/JavaParser.jay" { ParaList p = new ParaList(); @@ -1543,20 +1578,20 @@ case 99: yyVal=p; } break; -case 100: +case 104: // line 1013 "./../src/mycompiler/myparser/JavaParser.jay" { ((ParaList)yyVals[-2+yyTop]).add_ParaList(((GenericTypeVar)yyVals[0+yyTop])); yyVal=((ParaList)yyVals[-2+yyTop]); } break; -case 101: +case 105: // line 1020 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=new GenericTypeVar(((Token)yyVals[0+yyTop]).getLexem(),((Token)yyVals[0+yyTop]).getOffset()); } break; -case 102: +case 106: // line 1024 "./../src/mycompiler/myparser/JavaParser.jay" { BoundedGenericTypeVar gtv=new BoundedGenericTypeVar(((Token)yyVals[-2+yyTop]).getLexem(),((Token)yyVals[-2+yyTop]).getOffset()); @@ -1564,7 +1599,7 @@ case 102: yyVal=gtv; } break; -case 103: +case 107: // line 1031 "./../src/mycompiler/myparser/JavaParser.jay" { Vector vec=new Vector(); @@ -1573,7 +1608,7 @@ case 103: yyVal=vec; } break; -case 104: +case 108: // line 1038 "./../src/mycompiler/myparser/JavaParser.jay" { ((Vector)yyVals[-2+yyTop]).addElement(((RefType)yyVals[0+yyTop])); @@ -1581,7 +1616,7 @@ case 104: yyVal=((Vector)yyVals[-2+yyTop]); } break; -case 105: +case 109: // line 1045 "./../src/mycompiler/myparser/JavaParser.jay" { Vector vec=new Vector(); @@ -1589,14 +1624,14 @@ case 105: yyVal=vec; } break; -case 106: +case 110: // line 1051 "./../src/mycompiler/myparser/JavaParser.jay" { ((Vector)yyVals[-2+yyTop]).addElement(((GenericTypeVar)yyVals[0+yyTop])); yyVal=((Vector)yyVals[-2+yyTop]); } break; -case 107: +case 111: // line 1059 "./../src/mycompiler/myparser/JavaParser.jay" { ((Method)yyVals[0+yyTop]).setType(((Type)yyVals[-1+yyTop])); @@ -1604,14 +1639,14 @@ case 107: yyVal=((Method)yyVals[0+yyTop]); } break; -case 108: +case 112: // line 1065 "./../src/mycompiler/myparser/JavaParser.jay" { ((Method)yyVals[0+yyTop]).setType(((Type)yyVals[-1+yyTop])); yyVal=((Method)yyVals[0+yyTop]); } break; -case 109: +case 113: // line 1070 "./../src/mycompiler/myparser/JavaParser.jay" { ((Method)yyVals[0+yyTop]).set_Modifiers(((Modifiers)yyVals[-2+yyTop])); @@ -1619,7 +1654,7 @@ case 109: yyVal=((Method)yyVals[0+yyTop]); } break; -case 110: +case 114: // line 1076 "./../src/mycompiler/myparser/JavaParser.jay" { ((Method)yyVals[0+yyTop]).set_Modifiers(((Modifiers)yyVals[-5+yyTop])); @@ -1628,7 +1663,7 @@ case 110: yyVal=((Method)yyVals[0+yyTop]); } break; -case 111: +case 115: // line 1083 "./../src/mycompiler/myparser/JavaParser.jay" { ((Method)yyVals[-1+yyTop]).setType(((Type)yyVals[-2+yyTop])); @@ -1636,7 +1671,7 @@ case 111: yyVal=((Method)yyVals[-1+yyTop]); } break; -case 112: +case 116: // line 1089 "./../src/mycompiler/myparser/JavaParser.jay" { ((Method)yyVals[-1+yyTop]).setGenericMethodParameters(((Vector)yyVals[-4+yyTop])); @@ -1645,7 +1680,7 @@ case 112: yyVal=((Method)yyVals[-1+yyTop]); } break; -case 113: +case 117: // line 1096 "./../src/mycompiler/myparser/JavaParser.jay" { ((Method)yyVals[-1+yyTop]).set_Modifiers(((Modifiers)yyVals[-3+yyTop])); @@ -1654,7 +1689,7 @@ case 113: yyVal=((Method)yyVals[-1+yyTop]); } break; -case 114: +case 118: // line 1103 "./../src/mycompiler/myparser/JavaParser.jay" { ((Method)yyVals[-1+yyTop]).set_Modifiers(((Modifiers)yyVals[-6+yyTop])); @@ -1664,7 +1699,7 @@ case 114: yyVal=((Method)yyVals[-1+yyTop]); } break; -case 115: +case 119: // line 1111 "./../src/mycompiler/myparser/JavaParser.jay" { Void Voit = new Void(((Token)yyVals[-1+yyTop]).getOffset()); @@ -1672,7 +1707,7 @@ case 115: yyVal=((Method)yyVals[0+yyTop]); } break; -case 116: +case 120: // line 1117 "./../src/mycompiler/myparser/JavaParser.jay" { Void voit = new Void(((Token)yyVals[-1+yyTop]).getOffset()); @@ -1681,7 +1716,7 @@ case 116: yyVal=((Method)yyVals[0+yyTop]); } break; -case 117: +case 121: // line 1124 "./../src/mycompiler/myparser/JavaParser.jay" { Void voyt = new Void(((Token)yyVals[-2+yyTop]).getOffset()); @@ -1690,7 +1725,7 @@ case 117: yyVal=((Method)yyVals[-1+yyTop]); } break; -case 118: +case 122: // line 1131 "./../src/mycompiler/myparser/JavaParser.jay" { Void voyd = new Void(((Token)yyVals[-2+yyTop]).getOffset()); @@ -1700,7 +1735,7 @@ case 118: yyVal=((Method)yyVals[-1+yyTop]); } break; -case 119: +case 123: // line 1139 "./../src/mycompiler/myparser/JavaParser.jay" { Void Voit = new Void(((Token)yyVals[-1+yyTop]).getOffset()); @@ -1709,7 +1744,7 @@ case 119: yyVal=((Method)yyVals[0+yyTop]); } break; -case 120: +case 124: // line 1146 "./../src/mycompiler/myparser/JavaParser.jay" { Void voit = new Void(((Token)yyVals[-1+yyTop]).getOffset()); @@ -1719,7 +1754,7 @@ case 120: yyVal=((Method)yyVals[0+yyTop]); } break; -case 121: +case 125: // line 1154 "./../src/mycompiler/myparser/JavaParser.jay" { Void voyt = new Void(((Token)yyVals[-2+yyTop]).getOffset()); @@ -1729,7 +1764,7 @@ case 121: yyVal=((Method)yyVals[-1+yyTop]); } break; -case 122: +case 126: // line 1162 "./../src/mycompiler/myparser/JavaParser.jay" { Void voyd = new Void(((Token)yyVals[-2+yyTop]).getOffset()); @@ -1740,14 +1775,14 @@ case 122: yyVal=((Method)yyVals[-1+yyTop]); } break; -case 123: +case 127: // line 1172 "./../src/mycompiler/myparser/JavaParser.jay" { /*auskommentiert von Andreas Stadelmeier (a10023) $1.setType(TypePlaceholder.fresh()); */ yyVal=((Method)yyVals[0+yyTop]); } break; -case 124: +case 128: // line 1177 "./../src/mycompiler/myparser/JavaParser.jay" { /*auskommentiert von Andreas Stadelmeier (a10023) $4.setType(TypePlaceholder.fresh());*/ @@ -1755,7 +1790,7 @@ case 124: yyVal=((Method)yyVals[0+yyTop]); } break; -case 125: +case 129: // line 1184 "./../src/mycompiler/myparser/JavaParser.jay" { ((Method)yyVals[0+yyTop]).set_Modifiers(((Modifiers)yyVals[-1+yyTop])); @@ -1763,7 +1798,7 @@ case 125: yyVal=((Method)yyVals[0+yyTop]); } break; -case 126: +case 130: // line 1190 "./../src/mycompiler/myparser/JavaParser.jay" { /*auskommentiert von Andreas Stadelmeier (a10023) $1.setType(TypePlaceholder.fresh());*/ @@ -1771,7 +1806,7 @@ case 126: yyVal=((Method)yyVals[-1+yyTop]); } break; -case 127: +case 131: // line 1196 "./../src/mycompiler/myparser/JavaParser.jay" { ((Method)yyVals[-1+yyTop]).set_Modifiers(((Modifiers)yyVals[-2+yyTop])); @@ -1780,31 +1815,31 @@ case 127: yyVal=((Method)yyVals[-1+yyTop]); } break; -case 128: +case 132: // line 1205 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((BaseType)yyVals[0+yyTop]); } break; -case 129: +case 133: // line 1209 "./../src/mycompiler/myparser/JavaParser.jay" { ((BaseType)yyVals[-2+yyTop]).setArray(true); } break; -case 130: +case 134: // line 1213 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((RefType)yyVals[0+yyTop]); } break; -case 131: +case 135: // line 1217 "./../src/mycompiler/myparser/JavaParser.jay" { ((RefType)yyVals[-2+yyTop]).setArray(true); } break; -case 132: +case 136: // line 1221 "./../src/mycompiler/myparser/JavaParser.jay" { FieldDeclaration IVD = new FieldDeclaration(((DeclId)yyVals[0+yyTop]).getOffset()); @@ -1813,20 +1848,20 @@ case 132: yyVal = IVD; } break; -case 133: +case 137: // line 1228 "./../src/mycompiler/myparser/JavaParser.jay" { ((FieldDeclaration)yyVals[-2+yyTop]).getDeclIdVector().addElement(((DeclId)yyVals[0+yyTop])); yyVal=((FieldDeclaration)yyVals[-2+yyTop]); } break; -case 134: +case 138: // line 1234 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Block)yyVals[0+yyTop]); } break; -case 135: +case 139: // line 1239 "./../src/mycompiler/myparser/JavaParser.jay" { Block Blstat = new Block(); @@ -1834,14 +1869,14 @@ case 135: yyVal=Blstat; } break; -case 136: +case 140: // line 1246 "./../src/mycompiler/myparser/JavaParser.jay" { ((Block)yyVals[-1+yyTop]).set_Statement(((Statement)yyVals[0+yyTop])); yyVal=((Block)yyVals[-1+yyTop]); } break; -case 137: +case 141: // line 1252 "./../src/mycompiler/myparser/JavaParser.jay" { ParameterList PL = new ParameterList(); @@ -1849,21 +1884,21 @@ case 137: yyVal = PL; } break; -case 138: +case 142: // line 1258 "./../src/mycompiler/myparser/JavaParser.jay" { ((ParameterList)yyVals[-2+yyTop]).set_AddParameter(((FormalParameter)yyVals[0+yyTop])); yyVal = ((ParameterList)yyVals[-2+yyTop]); } break; -case 139: +case 143: // line 1264 "./../src/mycompiler/myparser/JavaParser.jay" { This THCON = new This(((Token)yyVals[-3+yyTop]).getOffset(),((Token)yyVals[-3+yyTop]).getLexem().length()); yyVal=THCON; } break; -case 140: +case 144: // line 1269 "./../src/mycompiler/myparser/JavaParser.jay" { This THCONargl = new This(((Token)yyVals[-4+yyTop]).getOffset(),((Token)yyVals[-4+yyTop]).getLexem().length()); @@ -1871,7 +1906,7 @@ case 140: yyVal=THCONargl; } break; -case 141: +case 145: // line 1278 "./../src/mycompiler/myparser/JavaParser.jay" { RefType RT = new RefType(-1); @@ -1880,7 +1915,7 @@ case 141: yyVal=RT; } break; -case 142: +case 146: // line 1285 "./../src/mycompiler/myparser/JavaParser.jay" { ((RefType)yyVals[-2+yyTop]).set_UsedId(((UsedId)yyVals[0+yyTop])); @@ -1888,7 +1923,7 @@ case 142: yyVal=((RefType)yyVals[-2+yyTop]); } break; -case 143: +case 147: // line 1292 "./../src/mycompiler/myparser/JavaParser.jay" { Method met = new Method(((Token)yyVals[-2+yyTop]).getOffset()); @@ -1903,7 +1938,7 @@ case 143: yyVal = met; } break; -case 144: +case 148: // line 1305 "./../src/mycompiler/myparser/JavaParser.jay" { Method met_para = new Method(((Token)yyVals[-3+yyTop]).getOffset()); @@ -1919,7 +1954,7 @@ case 144: yyVal = met_para; } break; -case 145: +case 149: // line 1320 "./../src/mycompiler/myparser/JavaParser.jay" { BooleanType BT = new BooleanType(); @@ -1930,13 +1965,13 @@ case 145: yyVal=BT; } break; -case 146: +case 150: // line 1329 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((BaseType)yyVals[0+yyTop]); } break; -case 147: +case 151: // line 1335 "./../src/mycompiler/myparser/JavaParser.jay" { org.apache.log4j.Logger.getLogger("parser").debug("T->Parser->referenctype: " + ((UsedId)yyVals[0+yyTop])); @@ -1956,25 +1991,25 @@ case 147: yyVal=RT; } break; -case 148: +case 152: // line 1355 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((DeclId)yyVals[0+yyTop]); } break; -case 149: +case 153: // line 1376 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((LocalVarDecl)yyVals[0+yyTop]); } break; -case 150: +case 154: // line 1380 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Statement)yyVals[0+yyTop]); } break; -case 151: +case 155: // line 1385 "./../src/mycompiler/myparser/JavaParser.jay" { FormalParameter FP = new FormalParameter(((DeclId)yyVals[0+yyTop])); @@ -1983,7 +2018,7 @@ case 151: yyVal=FP; } break; -case 152: +case 156: // line 1410 "./../src/mycompiler/myparser/JavaParser.jay" { org.apache.log4j.Logger.getLogger("parser").debug("\nFunktionsdeklaration mit typlosen Parametern: " + ((DeclId)yyVals[0+yyTop]).name); @@ -2003,7 +2038,7 @@ case 152: yyVal=FP; } break; -case 153: +case 157: // line 1429 "./../src/mycompiler/myparser/JavaParser.jay" { ArgumentList AL = new ArgumentList(); @@ -2011,20 +2046,20 @@ case 153: yyVal=AL; } break; -case 154: +case 158: // line 1435 "./../src/mycompiler/myparser/JavaParser.jay" { ((ArgumentList)yyVals[-2+yyTop]).expr.addElement(((Expr)yyVals[0+yyTop])); yyVal=((ArgumentList)yyVals[-2+yyTop]); } break; -case 155: +case 159: // line 1441 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((BaseType)yyVals[0+yyTop]); } break; -case 156: +case 160: // line 1446 "./../src/mycompiler/myparser/JavaParser.jay" { DeclId DI = new DeclId(); @@ -2037,61 +2072,61 @@ case 156: yyVal=DI; } break; -case 157: +case 161: // line 1458 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 158: +case 162: // line 1463 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((LocalVarDecl)yyVals[-1+yyTop]); } break; -case 159: +case 163: // line 1468 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Statement)yyVals[0+yyTop]); } break; -case 160: +case 164: // line 1472 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((IfStmt)yyVals[0+yyTop]); } break; -case 161: +case 165: // line 1476 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((IfStmt)yyVals[0+yyTop]); } break; -case 162: +case 166: // line 1480 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((WhileStmt)yyVals[0+yyTop]); } break; -case 163: +case 167: // line 1484 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((ForStmt)yyVals[0+yyTop]); } break; -case 164: +case 168: // line 1489 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 165: +case 169: // line 1493 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((NewClass)yyVals[0+yyTop]); } break; -case 166: +case 170: // line 1498 "./../src/mycompiler/myparser/JavaParser.jay" { IntegerType IT = new IntegerType(); @@ -2102,7 +2137,7 @@ case 166: yyVal=IT; } break; -case 167: +case 171: // line 1507 "./../src/mycompiler/myparser/JavaParser.jay" { CharacterType CT = new CharacterType(); @@ -2113,7 +2148,7 @@ case 167: yyVal=CT; } break; -case 168: +case 172: // line 1517 "./../src/mycompiler/myparser/JavaParser.jay" { org.apache.log4j.Logger.getLogger("parser").debug("P -> Lokale Variable angelegt!"); @@ -2123,7 +2158,7 @@ case 168: yyVal = LVD; } break; -case 169: +case 173: // line 1528 "./../src/mycompiler/myparser/JavaParser.jay" { org.apache.log4j.Logger.getLogger("parser").debug("P -> Lokale Variable angelegt!"); @@ -2133,31 +2168,31 @@ case 169: yyVal = LVD; } break; -case 170: +case 174: // line 1538 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Block)yyVals[0+yyTop]); } break; -case 171: +case 175: // line 1542 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((EmptyStmt)yyVals[0+yyTop]); } break; -case 172: +case 176: // line 1546 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((ExprStmt)yyVals[0+yyTop]); } break; -case 173: +case 177: // line 1550 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Return)yyVals[0+yyTop]); } break; -case 174: +case 178: // line 1555 "./../src/mycompiler/myparser/JavaParser.jay" { IfStmt Ifst = new IfStmt(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -2166,7 +2201,7 @@ case 174: yyVal=Ifst; } break; -case 175: +case 179: // line 1563 "./../src/mycompiler/myparser/JavaParser.jay" { IfStmt IfstElst = new IfStmt(((Expr)yyVals[-4+yyTop]).getOffset(),((Expr)yyVals[-4+yyTop]).getVariableLength()); @@ -2176,7 +2211,7 @@ case 175: yyVal=IfstElst; } break; -case 176: +case 180: // line 1572 "./../src/mycompiler/myparser/JavaParser.jay" { WhileStmt Whlst = new WhileStmt(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -2185,7 +2220,7 @@ case 176: yyVal=Whlst; } break; -case 177: +case 181: // line 1583 "./../src/mycompiler/myparser/JavaParser.jay" { ForStmt Fst = new ForStmt(((Expr)yyVals[-6+yyTop]).getOffset(),((Expr)yyVals[-6+yyTop]).getVariableLength()); @@ -2198,7 +2233,7 @@ case 177: yyVal = Fst; } break; -case 178: +case 182: // line 1595 "./../src/mycompiler/myparser/JavaParser.jay" { ForStmt Fst = new ForStmt(((Expr)yyVals[-5+yyTop]).getOffset(),((Expr)yyVals[-5+yyTop]).getVariableLength()); @@ -2210,7 +2245,7 @@ case 178: yyVal = Fst; } break; -case 179: +case 183: // line 1606 "./../src/mycompiler/myparser/JavaParser.jay" { ForStmt Fst = new ForStmt(((Expr)yyVals[-5+yyTop]).getOffset(),((Expr)yyVals[-5+yyTop]).getVariableLength()); @@ -2222,7 +2257,7 @@ case 179: yyVal = Fst; } break; -case 180: +case 184: // line 1617 "./../src/mycompiler/myparser/JavaParser.jay" { ForStmt Fst = new ForStmt(((Expr)yyVals[-4+yyTop]).getOffset(),((Expr)yyVals[-4+yyTop]).getVariableLength()); @@ -2234,7 +2269,7 @@ case 180: yyVal = Fst; } break; -case 181: +case 185: // line 1628 "./../src/mycompiler/myparser/JavaParser.jay" { ForStmt Fst = new ForStmt(((Expr)yyVals[-4+yyTop]).getOffset(),((Expr)yyVals[-4+yyTop]).getVariableLength()); @@ -2245,7 +2280,7 @@ case 181: yyVal = Fst; } break; -case 182: +case 186: // line 1638 "./../src/mycompiler/myparser/JavaParser.jay" { ForStmt Fst = new ForStmt(((Expr)yyVals[-3+yyTop]).getOffset(),((Expr)yyVals[-3+yyTop]).getVariableLength()); @@ -2256,7 +2291,7 @@ case 182: yyVal = Fst; } break; -case 183: +case 187: // line 1648 "./../src/mycompiler/myparser/JavaParser.jay" { ForStmt Fst = new ForStmt(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -2267,7 +2302,7 @@ case 183: yyVal = Fst; } break; -case 184: +case 188: // line 1658 "./../src/mycompiler/myparser/JavaParser.jay" { ForStmt Fst = new ForStmt(((Statement)yyVals[0+yyTop]).getOffset(),((Statement)yyVals[0+yyTop]).getVariableLength()); @@ -2277,40 +2312,40 @@ case 184: yyVal = Fst; } break; -case 185: +case 189: // line 1667 "./../src/mycompiler/myparser/JavaParser.jay" { org.apache.log4j.Logger.getLogger("parser").debug("conditionalexpression"); yyVal=((Expr)yyVals[0+yyTop]); } break; -case 186: +case 190: // line 1672 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Assign)yyVals[0+yyTop]); } break; -case 187: +case 191: // line 1678 "./../src/mycompiler/myparser/JavaParser.jay" { EmptyStmt Empst = new EmptyStmt(); yyVal=Empst; } break; -case 188: +case 192: // line 1684 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[-1+yyTop]); } break; -case 189: +case 193: // line 1689 "./../src/mycompiler/myparser/JavaParser.jay" { Return ret = new Return(-1,-1); yyVal= ret; } break; -case 190: +case 194: // line 1694 "./../src/mycompiler/myparser/JavaParser.jay" { Return retexp = new Return(((Expr)yyVals[-1+yyTop]).getOffset(),((Expr)yyVals[-1+yyTop]).getVariableLength()); @@ -2318,31 +2353,31 @@ case 190: yyVal=retexp; } break; -case 191: +case 195: // line 1701 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Statement)yyVals[0+yyTop]); } break; -case 192: +case 196: // line 1705 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((IfStmt)yyVals[0+yyTop]); } break; -case 193: +case 197: // line 1709 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((WhileStmt)yyVals[0+yyTop]); } break; -case 194: +case 198: // line 1714 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 195: +case 199: // line 1720 "./../src/mycompiler/myparser/JavaParser.jay" { org.apache.log4j.Logger.getLogger("parser").debug("\nParser --> Zuweisung1!\n"); @@ -2369,7 +2404,7 @@ case 195: yyVal=Ass; } break; -case 196: +case 200: // line 1745 "./../src/mycompiler/myparser/JavaParser.jay" { Assign Ass =new Assign(((UsedId)yyVals[-2+yyTop]).getOffset(),((UsedId)yyVals[-2+yyTop]).getVariableLength()); @@ -2393,43 +2428,43 @@ case 196: yyVal=Ass; } break; -case 197: +case 201: // line 1768 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Assign)yyVals[0+yyTop]); } break; -case 198: +case 202: // line 1772 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 199: +case 203: // line 1776 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 200: +case 204: // line 1780 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 201: +case 205: // line 1784 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 202: +case 206: // line 1788 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((MethodCall)yyVals[0+yyTop]); } break; -case 203: +case 207: // line 1799 "./../src/mycompiler/myparser/JavaParser.jay" { IfStmt IfElno = new IfStmt(((Expr)yyVals[-4+yyTop]).getOffset(),((Expr)yyVals[-4+yyTop]).getVariableLength()); @@ -2439,7 +2474,7 @@ case 203: yyVal=IfElno; } break; -case 204: +case 208: // line 1808 "./../src/mycompiler/myparser/JavaParser.jay" { WhileStmt Whstno = new WhileStmt(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -2448,13 +2483,13 @@ case 204: yyVal=Whstno; } break; -case 205: +case 209: // line 1816 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 206: +case 210: // line 1820 "./../src/mycompiler/myparser/JavaParser.jay" { Binary LogOr = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -2466,19 +2501,19 @@ case 206: yyVal=LogOr; } break; -case 207: +case 211: // line 1833 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=null; } break; -case 208: +case 212: // line 1838 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Block)yyVals[0+yyTop]); } break; -case 209: +case 213: // line 1842 "./../src/mycompiler/myparser/JavaParser.jay" { /*Lambdabody kann auch nur aus einer Expression bestehen. In diesem Fall wird ein Block erstellt, welcher als einziges Statement ein return statment mit der expression hat.*/ @@ -2489,19 +2524,19 @@ case 209: yyVal=ret; } break; -case 210: +case 214: // line 1852 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=null; } break; -case 211: +case 215: // line 1856 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((ParameterList)yyVals[-1+yyTop]); } break; -case 212: +case 216: // line 1861 "./../src/mycompiler/myparser/JavaParser.jay" { LambdaExpression lambda = new LambdaExpression(/*((ParameSterList)$2).getOffset(),((ParameterList)$2).getVariableLength()*/0,0); @@ -2510,54 +2545,54 @@ case 212: yyVal=lambda; } break; -case 213: +case 217: // line 1880 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((UsedId)yyVals[0+yyTop]); } break; -case 214: +case 218: // line 1885 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=null; } break; -case 215: +case 219: // line 1889 "./../src/mycompiler/myparser/JavaParser.jay" { TimesOp TEO = new TimesOp(-1,-1); yyVal=TEO; } break; -case 216: +case 220: // line 1894 "./../src/mycompiler/myparser/JavaParser.jay" { DivideOp DEO = new DivideOp(-1,-1); yyVal=DEO; } break; -case 217: +case 221: // line 1899 "./../src/mycompiler/myparser/JavaParser.jay" { ModuloOp MEO = new ModuloOp(-1,-1); yyVal=MEO; } break; -case 218: +case 222: // line 1904 "./../src/mycompiler/myparser/JavaParser.jay" { PlusOp PEO = new PlusOp(-1,-1); yyVal=PEO; } break; -case 219: +case 223: // line 1909 "./../src/mycompiler/myparser/JavaParser.jay" { MinusOp MEO = new MinusOp(-1,-1); yyVal=MEO; } break; -case 220: +case 224: // line 1921 "./../src/mycompiler/myparser/JavaParser.jay" { PreIncExpr PRINC = new PreIncExpr(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength()); @@ -2565,7 +2600,7 @@ case 220: yyVal=PRINC; } break; -case 221: +case 225: // line 1928 "./../src/mycompiler/myparser/JavaParser.jay" { PreDecExpr PRDEC = new PreDecExpr(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength()); @@ -2573,7 +2608,7 @@ case 221: yyVal=PRDEC; } break; -case 222: +case 226: // line 1935 "./../src/mycompiler/myparser/JavaParser.jay" { PostIncExpr PIE = new PostIncExpr(((Expr)yyVals[-1+yyTop]).getOffset(),((Expr)yyVals[-1+yyTop]).getVariableLength()); @@ -2581,7 +2616,7 @@ case 222: yyVal=PIE; } break; -case 223: +case 227: // line 1942 "./../src/mycompiler/myparser/JavaParser.jay" { PostDecExpr PDE = new PostDecExpr(((Expr)yyVals[-1+yyTop]).getOffset(),((Expr)yyVals[-1+yyTop]).getVariableLength()); @@ -2589,7 +2624,7 @@ case 223: yyVal=PDE; } break; -case 224: +case 228: // line 1950 "./../src/mycompiler/myparser/JavaParser.jay" { org.apache.log4j.Logger.getLogger("parser").debug("M1"); @@ -2621,7 +2656,7 @@ case 224: yyVal=MC; } break; -case 225: +case 229: // line 1980 "./../src/mycompiler/myparser/JavaParser.jay" { org.apache.log4j.Logger.getLogger("parser").debug("M2"); @@ -2654,7 +2689,7 @@ case 225: yyVal=MCarg; } break; -case 226: +case 230: // line 2011 "./../src/mycompiler/myparser/JavaParser.jay" { org.apache.log4j.Logger.getLogger("parser").debug("M3"); @@ -2675,7 +2710,7 @@ case 226: yyVal=MCpr; } break; -case 227: +case 231: // line 2030 "./../src/mycompiler/myparser/JavaParser.jay" { org.apache.log4j.Logger.getLogger("parser").debug("M4"); @@ -2697,7 +2732,7 @@ case 227: yyVal=MCPA; } break; -case 228: +case 232: // line 2053 "./../src/mycompiler/myparser/JavaParser.jay" { NewClass NC = new NewClass(((UsedId)yyVals[-2+yyTop]).getOffset(),((UsedId)yyVals[-2+yyTop]).getVariableLength()); @@ -2707,7 +2742,7 @@ case 228: yyVal=NC; } break; -case 229: +case 233: // line 2061 "./../src/mycompiler/myparser/JavaParser.jay" { NewClass NCarg = new NewClass(((UsedId)yyVals[-3+yyTop]).getOffset(),((UsedId)yyVals[-3+yyTop]).getVariableLength()); @@ -2718,13 +2753,13 @@ case 229: yyVal=NCarg; } break; -case 230: +case 234: // line 2071 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 231: +case 235: // line 2075 "./../src/mycompiler/myparser/JavaParser.jay" { Binary And = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -2736,19 +2771,19 @@ case 231: yyVal=And; } break; -case 232: +case 236: // line 2091 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 233: +case 237: // line 2095 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 234: +case 238: // line 2099 "./../src/mycompiler/myparser/JavaParser.jay" { PositivExpr POSEX=new PositivExpr(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength()); @@ -2758,7 +2793,7 @@ case 234: yyVal=POSEX; } break; -case 235: +case 239: // line 2107 "./../src/mycompiler/myparser/JavaParser.jay" { NegativeExpr NEGEX=new NegativeExpr(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength()); @@ -2768,19 +2803,19 @@ case 235: yyVal=NEGEX; } break; -case 236: +case 240: // line 2115 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 237: +case 241: // line 2120 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 238: +case 242: // line 2124 "./../src/mycompiler/myparser/JavaParser.jay" { if (((UsedId)yyVals[0+yyTop]).get_Name().size() > 1) { @@ -2800,37 +2835,37 @@ case 238: } } break; -case 239: +case 243: // line 2142 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 240: +case 244: // line 2146 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 241: +case 245: // line 2151 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 242: +case 246: // line 2156 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 244: +case 248: // line 2162 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Literal)yyVals[0+yyTop]); } break; -case 245: +case 249: // line 2166 "./../src/mycompiler/myparser/JavaParser.jay" { This T = new This(((Token)yyVals[0+yyTop]).getOffset(),((Token)yyVals[0+yyTop]).getLexem().length()); @@ -2840,23 +2875,23 @@ case 245: yyVal=T; } break; -case 246: +case 250: // line 2187 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((MethodCall)yyVals[0+yyTop]); } break; -case 247: +case 251: // line 2191 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 248: +case 252: // line 2196 "./../src/mycompiler/myparser/JavaParser.jay" {yyVal=((Expr)yyVals[0+yyTop]);} break; -case 249: +case 253: // line 2198 "./../src/mycompiler/myparser/JavaParser.jay" {NotExpr NE=new NotExpr(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength()); UnaryNot UN=new UnaryNot(); @@ -2865,36 +2900,36 @@ case 249: yyVal=NE; } break; -case 250: +case 254: // line 2204 "./../src/mycompiler/myparser/JavaParser.jay" {yyVal=((CastExpr)yyVals[0+yyTop]);} break; -case 251: +case 255: // line 2206 "./../src/mycompiler/myparser/JavaParser.jay" {yyVal=((Expr)yyVals[0+yyTop]);} break; -case 253: +case 257: // line 2211 "./../src/mycompiler/myparser/JavaParser.jay" {IntLiteral IL = new IntLiteral(); IL.set_Int(((Token)yyVals[0+yyTop]).String2Int()); yyVal = IL; } break; -case 254: +case 258: // line 2216 "./../src/mycompiler/myparser/JavaParser.jay" {BoolLiteral BL = new BoolLiteral(); BL.set_Bool(((Token)yyVals[0+yyTop]).String2Bool()); yyVal = BL; } break; -case 255: +case 259: // line 2220 "./../src/mycompiler/myparser/JavaParser.jay" {CharLiteral CL = new CharLiteral(); CL.set_Char(((Token)yyVals[0+yyTop]).CharInString()); yyVal=CL; } break; -case 256: +case 260: // line 2225 "./../src/mycompiler/myparser/JavaParser.jay" { StringLiteral ST = new StringLiteral(); @@ -2902,14 +2937,14 @@ case 256: yyVal=ST; } break; -case 257: +case 261: // line 2230 "./../src/mycompiler/myparser/JavaParser.jay" { LongLiteral LL = new LongLiteral(); LL.set_Long(((Token)yyVals[0+yyTop]).String2Long()); yyVal = LL; } break; -case 258: +case 262: // line 2234 "./../src/mycompiler/myparser/JavaParser.jay" { FloatLiteral FL = new FloatLiteral(); @@ -2917,7 +2952,7 @@ case 258: yyVal = FL; } break; -case 259: +case 263: // line 2239 "./../src/mycompiler/myparser/JavaParser.jay" { DoubleLiteral DL = new DoubleLiteral(); @@ -2925,14 +2960,14 @@ case 259: yyVal = DL; } break; -case 260: +case 264: // line 2245 "./../src/mycompiler/myparser/JavaParser.jay" { Null NN = new Null(); yyVal=NN; } break; -case 261: +case 265: // line 2251 "./../src/mycompiler/myparser/JavaParser.jay" { CastExpr CaEx=new CastExpr(((Expr)yyVals[0+yyTop]).getOffset(),((Expr)yyVals[0+yyTop]).getVariableLength()); @@ -2941,24 +2976,24 @@ case 261: yyVal=CaEx; } break; -case 262: +case 266: // line 2260 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 263: +case 267: // line 2264 "./../src/mycompiler/myparser/JavaParser.jay" { } break; -case 264: +case 268: // line 2268 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 265: +case 269: // line 2272 "./../src/mycompiler/myparser/JavaParser.jay" { Binary EQ = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -2970,7 +3005,7 @@ case 265: yyVal=EQ; } break; -case 266: +case 270: // line 2282 "./../src/mycompiler/myparser/JavaParser.jay" { Binary NEQ = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -2982,13 +3017,13 @@ case 266: yyVal=NEQ; } break; -case 267: +case 271: // line 2293 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 268: +case 272: // line 2297 "./../src/mycompiler/myparser/JavaParser.jay" { Binary LO = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -3000,7 +3035,7 @@ case 268: yyVal=LO; } break; -case 269: +case 273: // line 2307 "./../src/mycompiler/myparser/JavaParser.jay" { Binary GO = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -3012,7 +3047,7 @@ case 269: yyVal=GO; } break; -case 270: +case 274: // line 2317 "./../src/mycompiler/myparser/JavaParser.jay" { Binary LE = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -3024,7 +3059,7 @@ case 270: yyVal=LE; } break; -case 271: +case 275: // line 2327 "./../src/mycompiler/myparser/JavaParser.jay" { Binary GE = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -3036,7 +3071,7 @@ case 271: yyVal=GE; } break; -case 272: +case 276: // line 2337 "./../src/mycompiler/myparser/JavaParser.jay" { InstanceOf ISO=new InstanceOf(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -3045,19 +3080,19 @@ case 272: yyVal=ISO; } break; -case 273: +case 277: // line 2345 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 274: +case 278: // line 2350 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 275: +case 279: // line 2354 "./../src/mycompiler/myparser/JavaParser.jay" { Binary AD = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -3069,7 +3104,7 @@ case 275: yyVal=AD; } break; -case 276: +case 280: // line 2364 "./../src/mycompiler/myparser/JavaParser.jay" { Binary MI = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -3081,13 +3116,13 @@ case 276: yyVal=MI; } break; -case 277: +case 281: // line 2375 "./../src/mycompiler/myparser/JavaParser.jay" { yyVal=((Expr)yyVals[0+yyTop]); } break; -case 278: +case 282: // line 2379 "./../src/mycompiler/myparser/JavaParser.jay" { Binary ML = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -3099,7 +3134,7 @@ case 278: yyVal=ML; } break; -case 279: +case 283: // line 2389 "./../src/mycompiler/myparser/JavaParser.jay" { Binary DV = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -3111,7 +3146,7 @@ case 279: yyVal = DV; } break; -case 280: +case 284: // line 2399 "./../src/mycompiler/myparser/JavaParser.jay" { Binary MD = new Binary(((Expr)yyVals[-2+yyTop]).getOffset(),((Expr)yyVals[-2+yyTop]).getVariableLength()); @@ -3123,7 +3158,7 @@ case 280: yyVal =MD; } break; - // line 3127 "-" + // line 3162 "-" } yyTop -= yyLen[yyN]; yyState = yyStates[yyTop]; @@ -3154,1059 +3189,1053 @@ case 280: } protected static final short yyLhs [] = { -1, - 0, 98, 26, 26, 25, 92, 92, 27, 27, 105, - 105, 23, 24, 24, 22, 1, 1, 1, 1, 1, - 1, 1, 1, 9, 9, 8, 8, 2, 2, 2, - 2, 112, 112, 112, 112, 112, 112, 115, 115, 115, - 7, 7, 40, 40, 28, 32, 32, 3, 3, 33, - 33, 15, 15, 41, 41, 41, 41, 41, 41, 29, - 4, 4, 31, 16, 16, 16, 30, 113, 113, 114, - 114, 5, 5, 17, 17, 110, 106, 106, 10, 6, - 19, 19, 11, 11, 11, 11, 11, 13, 42, 42, - 107, 107, 108, 108, 108, 108, 48, 94, 97, 97, - 93, 93, 95, 95, 96, 96, 12, 12, 12, 12, + 0, 0, 0, 0, 0, 98, 26, 26, 25, 92, + 92, 27, 27, 105, 105, 23, 24, 24, 22, 1, + 1, 1, 1, 1, 1, 1, 1, 9, 9, 8, + 8, 2, 2, 2, 2, 112, 112, 112, 112, 112, + 112, 115, 115, 115, 7, 7, 40, 40, 28, 32, + 32, 3, 3, 33, 33, 15, 15, 41, 41, 41, + 41, 41, 41, 29, 4, 4, 31, 16, 16, 16, + 30, 113, 113, 114, 114, 5, 5, 17, 17, 110, + 106, 106, 10, 6, 19, 19, 11, 11, 11, 11, + 11, 13, 42, 42, 107, 107, 108, 108, 108, 108, + 48, 94, 97, 97, 93, 93, 95, 95, 96, 96, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, - 12, 12, 12, 12, 12, 12, 12, 39, 39, 39, - 39, 18, 18, 43, 44, 44, 50, 50, 109, 109, - 38, 38, 14, 14, 36, 36, 37, 20, 80, 80, - 49, 49, 103, 103, 35, 21, 78, 46, 81, 81, - 81, 81, 81, 71, 71, 34, 34, 47, 47, 79, - 79, 79, 79, 86, 87, 83, 84, 84, 84, 84, - 84, 84, 84, 84, 69, 69, 89, 77, 90, 90, - 82, 82, 82, 68, 99, 99, 72, 72, 72, 72, - 72, 72, 88, 85, 67, 67, 101, 45, 45, 51, - 51, 70, 102, 100, 100, 100, 100, 100, 100, 73, - 74, 75, 76, 104, 104, 104, 104, 91, 91, 66, - 66, 57, 57, 57, 57, 57, 55, 55, 55, 55, - 54, 65, 65, 53, 53, 53, 53, 56, 56, 56, - 64, 64, 52, 52, 52, 52, 52, 52, 52, 52, - 111, 63, 63, 62, 62, 62, 61, 61, 61, 61, - 61, 61, 60, 59, 59, 59, 58, 58, 58, 58, + 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, + 12, 39, 39, 39, 39, 18, 18, 43, 44, 44, + 50, 50, 109, 109, 38, 38, 14, 14, 36, 36, + 37, 20, 80, 80, 49, 49, 103, 103, 35, 21, + 78, 46, 81, 81, 81, 81, 81, 71, 71, 34, + 34, 47, 47, 79, 79, 79, 79, 86, 87, 83, + 84, 84, 84, 84, 84, 84, 84, 84, 69, 69, + 89, 77, 90, 90, 82, 82, 82, 68, 99, 99, + 72, 72, 72, 72, 72, 72, 88, 85, 67, 67, + 101, 45, 45, 51, 51, 70, 102, 100, 100, 100, + 100, 100, 100, 73, 74, 75, 76, 104, 104, 104, + 104, 91, 91, 66, 66, 57, 57, 57, 57, 57, + 55, 55, 55, 55, 54, 65, 65, 53, 53, 53, + 53, 56, 56, 56, 64, 64, 52, 52, 52, 52, + 52, 52, 52, 52, 111, 63, 63, 62, 62, 62, + 61, 61, 61, 61, 61, 61, 60, 59, 59, 59, + 58, 58, 58, 58, }; protected static final short yyLen [] = { 2, - 1, 3, 1, 2, 3, 1, 2, 1, 1, 1, - 1, 3, 3, 3, 1, 3, 4, 4, 5, 4, - 5, 5, 6, 1, 4, 1, 4, 3, 4, 4, - 5, 1, 4, 1, 3, 6, 3, 1, 3, 3, - 2, 3, 1, 2, 2, 2, 3, 2, 3, 2, - 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, - 1, 2, 1, 1, 1, 1, 2, 1, 3, 0, - 3, 1, 1, 1, 1, 2, 2, 3, 6, 2, - 4, 3, 2, 2, 2, 3, 4, 2, 2, 3, - 3, 4, 2, 3, 3, 4, 2, 1, 1, 3, - 1, 3, 1, 3, 1, 3, 5, 2, 3, 6, - 3, 6, 4, 7, 2, 3, 3, 4, 5, 6, - 6, 7, 1, 4, 2, 2, 3, 1, 3, 1, - 3, 1, 3, 1, 1, 2, 1, 3, 4, 5, - 1, 3, 3, 4, 1, 1, 1, 1, 1, 1, - 2, 1, 1, 3, 1, 1, 1, 2, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, - 1, 1, 1, 5, 7, 5, 9, 8, 8, 8, - 7, 7, 7, 6, 1, 1, 1, 2, 2, 3, - 1, 1, 1, 1, 3, 3, 1, 1, 1, 1, - 1, 1, 7, 5, 1, 3, 1, 1, 1, 2, - 3, 3, 1, 1, 1, 1, 1, 1, 1, 2, - 2, 2, 2, 3, 4, 5, 6, 4, 5, 1, - 3, 1, 1, 2, 2, 1, 1, 1, 1, 1, - 1, 1, 3, 1, 1, 1, 1, 1, 2, 1, - 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, - 4, 1, 3, 1, 3, 3, 1, 3, 3, 3, - 3, 3, 1, 1, 3, 3, 1, 3, 3, 3, + 1, 2, 3, 2, 3, 3, 1, 2, 3, 1, + 2, 1, 1, 1, 1, 3, 3, 3, 1, 3, + 4, 4, 5, 4, 5, 5, 6, 1, 4, 1, + 4, 3, 4, 4, 5, 1, 4, 1, 3, 6, + 3, 1, 3, 3, 2, 3, 1, 2, 2, 2, + 3, 2, 3, 2, 3, 1, 2, 1, 1, 1, + 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, + 2, 1, 3, 0, 3, 1, 1, 1, 1, 2, + 2, 3, 6, 2, 4, 3, 2, 2, 2, 3, + 4, 2, 2, 3, 3, 4, 2, 3, 3, 4, + 2, 1, 1, 3, 1, 3, 1, 3, 1, 3, + 5, 2, 3, 6, 3, 6, 4, 7, 2, 3, + 3, 4, 5, 6, 6, 7, 1, 4, 2, 2, + 3, 1, 3, 1, 3, 1, 3, 1, 1, 2, + 1, 3, 4, 5, 1, 3, 3, 4, 1, 1, + 1, 1, 1, 1, 2, 1, 1, 3, 1, 1, + 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 2, 1, 1, 1, 1, 1, 5, 7, 5, + 9, 8, 8, 8, 7, 7, 7, 6, 1, 1, + 1, 2, 2, 3, 1, 1, 1, 1, 3, 3, + 1, 1, 1, 1, 1, 1, 7, 5, 1, 3, + 1, 1, 1, 2, 3, 3, 1, 1, 1, 1, + 1, 1, 1, 2, 2, 2, 2, 3, 4, 5, + 6, 4, 5, 1, 3, 1, 1, 2, 2, 1, + 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, + 1, 1, 2, 1, 1, 3, 1, 1, 1, 1, + 1, 1, 1, 1, 4, 1, 3, 1, 3, 3, + 1, 3, 3, 3, 3, 3, 1, 1, 3, 3, + 1, 3, 3, 3, }; protected static final short yyDefRed [] = { 0, - 58, 0, 59, 56, 55, 54, 0, 57, 0, 10, - 11, 0, 43, 0, 6, 0, 0, 0, 0, 0, - 0, 44, 7, 0, 0, 0, 0, 16, 0, 0, - 0, 0, 0, 28, 0, 0, 0, 0, 98, 99, - 0, 15, 0, 45, 60, 63, 46, 145, 167, 166, - 0, 0, 0, 0, 41, 74, 0, 75, 0, 0, - 52, 64, 0, 0, 0, 148, 0, 147, 155, 146, - 0, 0, 0, 0, 66, 0, 65, 18, 0, 0, - 20, 0, 50, 0, 48, 0, 61, 73, 72, 0, - 0, 0, 0, 30, 17, 0, 0, 29, 0, 0, - 0, 27, 0, 67, 0, 76, 0, 0, 0, 105, - 0, 134, 88, 0, 126, 42, 53, 0, 85, 83, - 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, - 0, 0, 0, 0, 0, 77, 22, 47, 25, 49, - 62, 80, 0, 51, 19, 0, 21, 31, 103, 0, - 100, 68, 0, 0, 0, 0, 245, 0, 253, 257, - 259, 258, 254, 260, 255, 256, 0, 0, 0, 187, - 89, 0, 0, 132, 0, 8, 0, 0, 170, 0, - 149, 0, 0, 244, 241, 0, 0, 247, 0, 198, - 199, 0, 0, 172, 159, 135, 150, 162, 163, 160, - 161, 171, 173, 197, 0, 0, 117, 143, 152, 0, - 137, 0, 0, 0, 141, 0, 156, 133, 0, 0, - 0, 0, 0, 9, 0, 236, 277, 0, 0, 267, - 0, 0, 0, 0, 0, 0, 0, 185, 164, 82, - 232, 233, 239, 240, 165, 186, 246, 250, 91, 0, - 129, 131, 111, 86, 0, 0, 0, 0, 127, 0, - 0, 0, 78, 0, 93, 0, 0, 0, 23, 0, - 0, 71, 0, 0, 189, 0, 0, 0, 220, 221, - 210, 0, 0, 0, 0, 90, 136, 158, 207, 0, - 0, 222, 223, 188, 218, 219, 215, 216, 217, 214, - 0, 151, 0, 144, 106, 0, 124, 0, 0, 0, - 0, 234, 235, 249, 0, 0, 0, 0, 0, 0, + 62, 149, 171, 0, 63, 170, 60, 59, 58, 0, + 0, 0, 61, 19, 0, 14, 15, 0, 7, 0, + 151, 159, 150, 0, 0, 0, 0, 47, 0, 0, + 10, 0, 0, 13, 12, 0, 0, 0, 0, 0, + 0, 71, 8, 0, 0, 0, 0, 0, 0, 48, + 11, 0, 0, 0, 0, 0, 0, 20, 0, 0, + 6, 0, 9, 0, 0, 0, 0, 32, 0, 72, + 0, 133, 135, 5, 0, 0, 0, 0, 102, 103, + 0, 49, 64, 67, 50, 0, 0, 0, 0, 45, + 78, 0, 79, 0, 0, 56, 68, 0, 0, 0, + 152, 0, 0, 0, 70, 0, 69, 22, 0, 0, + 24, 16, 0, 18, 0, 54, 0, 52, 0, 65, + 77, 76, 0, 0, 0, 0, 34, 0, 75, 21, + 0, 0, 33, 0, 0, 0, 31, 0, 80, 0, + 0, 0, 109, 0, 138, 92, 0, 130, 46, 57, + 0, 89, 87, 0, 0, 0, 0, 88, 0, 0, + 0, 0, 0, 0, 0, 0, 81, 26, 51, 29, + 53, 66, 84, 0, 55, 73, 23, 0, 25, 35, + 107, 0, 104, 0, 0, 0, 249, 0, 257, 261, + 263, 262, 258, 264, 259, 260, 0, 0, 0, 191, + 93, 0, 0, 136, 0, 0, 0, 174, 0, 153, + 0, 0, 248, 245, 0, 0, 251, 0, 202, 203, + 0, 0, 176, 163, 139, 154, 166, 167, 164, 165, + 175, 177, 201, 0, 0, 121, 147, 156, 0, 141, + 0, 0, 0, 145, 0, 160, 137, 0, 0, 0, + 0, 0, 0, 240, 281, 0, 0, 271, 0, 0, + 0, 0, 0, 0, 0, 189, 168, 86, 236, 237, + 243, 244, 169, 190, 250, 254, 95, 0, 115, 90, + 0, 0, 0, 0, 131, 0, 0, 0, 82, 0, + 97, 0, 0, 0, 27, 0, 0, 0, 193, 0, + 0, 0, 224, 225, 214, 0, 0, 0, 94, 140, + 162, 211, 0, 0, 226, 227, 192, 222, 223, 219, + 220, 221, 218, 0, 155, 0, 148, 110, 0, 128, + 0, 0, 0, 0, 238, 239, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 92, 0, 0, 118, 0, 113, 87, 0, 95, - 94, 0, 0, 104, 69, 0, 0, 0, 190, 0, - 211, 12, 224, 153, 0, 208, 212, 209, 0, 195, - 196, 138, 0, 0, 142, 0, 0, 278, 279, 280, - 0, 0, 272, 270, 271, 268, 269, 0, 0, 0, - 0, 0, 0, 0, 81, 0, 0, 0, 0, 96, - 0, 0, 0, 0, 0, 0, 0, 225, 0, 121, - 112, 228, 0, 261, 0, 0, 139, 0, 79, 0, - 0, 0, 0, 0, 0, 0, 0, 174, 0, 193, - 192, 176, 154, 226, 0, 229, 122, 114, 140, 184, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 227, - 183, 182, 0, 181, 0, 0, 0, 0, 0, 175, - 180, 179, 178, 0, 0, 0, 177, 0, 204, 0, - 203, + 0, 0, 0, 0, 96, 0, 0, 122, 0, 117, + 91, 0, 99, 98, 0, 0, 108, 0, 0, 0, + 194, 0, 215, 228, 157, 0, 212, 216, 213, 0, + 199, 200, 142, 0, 0, 146, 0, 0, 282, 283, + 284, 0, 0, 276, 274, 275, 272, 273, 0, 0, + 0, 0, 0, 0, 0, 85, 0, 0, 0, 0, + 100, 0, 0, 0, 0, 0, 0, 0, 229, 0, + 125, 116, 232, 0, 265, 0, 0, 143, 0, 83, + 0, 0, 0, 0, 0, 0, 0, 0, 178, 0, + 197, 196, 180, 158, 230, 0, 233, 126, 118, 144, + 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 231, 187, 186, 0, 185, 0, 0, 0, 0, 0, + 179, 184, 183, 182, 0, 0, 0, 181, 0, 208, + 0, 207, }; - protected static final short yyDgoto [] = { 9, - 10, 11, 34, 86, 87, 88, 28, 17, 19, 89, - 56, 57, 58, 59, 60, 61, 62, 173, 64, 174, - 66, 224, 176, 0, 0, 0, 177, 29, 44, 68, - 47, 30, 35, 69, 70, 71, 72, 216, 178, 12, - 13, 179, 113, 180, 357, 181, 182, 115, 211, 282, - 183, 184, 185, 186, 225, 226, 227, 228, 229, 230, - 231, 232, 233, 234, 235, 236, 237, 238, 239, 188, - 354, 189, 241, 242, 243, 244, 194, 0, 195, 196, - 197, 419, 198, 199, 420, 200, 201, 421, 202, 203, - 245, 14, 39, 40, 150, 111, 41, 0, 246, 301, - 290, 205, 355, 247, 15, 75, 76, 136, 267, 77, - 248, 0, 153, 104, 0, + protected static final short yyDgoto [] = { 15, + 16, 17, 68, 119, 120, 121, 58, 33, 40, 122, + 91, 92, 93, 94, 95, 96, 97, 203, 99, 204, + 101, 34, 35, 37, 19, 20, 206, 59, 82, 21, + 85, 60, 69, 22, 23, 24, 25, 245, 207, 27, + 28, 208, 146, 209, 378, 210, 211, 148, 240, 306, + 212, 213, 214, 215, 253, 254, 255, 256, 257, 258, + 259, 260, 261, 262, 263, 264, 265, 266, 267, 217, + 375, 218, 269, 270, 271, 272, 223, 0, 224, 225, + 226, 440, 227, 228, 441, 229, 230, 442, 231, 232, + 273, 29, 79, 80, 182, 144, 81, 30, 274, 324, + 313, 234, 376, 275, 31, 105, 106, 167, 293, 107, + 276, 0, 71, 42, 0, }; - protected static final short yySindex [] = { 350, - 0, -263, 0, 0, 0, 0, -230, 0, 0, 0, - 0, 548, 0, 350, 0, 29, -99, 61, -92, -263, - -230, 0, 0, -155, -133, -133, 3458, 0, -89, -9, - -155, -133, 3503, 0, -7, -99, -92, -93, 0, 0, - 3, 0, 144, 0, 0, 0, 0, 0, 0, 0, - 88, -85, 193, -155, 0, 0, 88, 0, -42, 3538, - 0, 0, 143, 212, 211, 0, 73, 0, 0, 0, - 187, 188, 276, 396, 0, 174, 0, 0, -9, -133, - 0, 127, 0, 193, 0, 3566, 0, 0, 0, 243, - -85, 396, -133, 0, 0, -89, -9, 0, -7, -133, - -155, 0, 296, 0, 3068, 0, 193, -42, -39, 0, - 137, 0, 0, -133, 0, 0, 0, 21, 0, 0, - 992, -28, 242, 273, -42, 150, 0, 275, 21, -85, - -155, -42, 71, 174, 3150, 0, 0, 0, 0, 0, - 0, 0, 86, 0, 0, -9, 0, 0, 0, 266, - 0, 0, 177, 334, 336, 597, 0, 351, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1039, 1039, 0, - 0, -13, 361, 0, 144, 0, 91, 21, 0, 3259, - 0, 335, 89, 0, 0, 376, -248, 0, 378, 0, + protected static final short yySindex [] = { 1561, + 0, 0, 0, -265, 0, 0, 0, 0, 0, -248, + -248, -239, 0, 0, 0, 0, 0, 8, 0, 504, + 0, 0, 0, 36, 83, 191, 361, 0, 1049, 504, + 0, 48, -97, 0, 0, 38, 125, 154, 149, -88, + 191, 0, 0, 1049, 127, 160, 1561, -265, -239, 0, + 0, 504, 1049, -42, -248, -248, 2581, 0, -104, -4, + 0, -26, 0, -37, -42, -248, 3380, 0, -3, 0, + 159, 0, 0, 0, -97, -88, 1049, 57, 0, 0, + 163, 0, 0, 0, 0, 185, 61, 326, -42, 0, + 0, 185, 0, 86, 3408, 0, 0, 93, 311, 329, + 0, 25, 223, 3471, 0, 259, 0, 0, -4, -248, + 0, 0, 0, 0, 168, 0, 326, 0, 3443, 0, + 0, 0, 336, 61, 3471, -248, 0, 191, 0, 0, + -104, -4, 0, -3, -248, -42, 0, 2993, 0, 326, + 86, -8, 0, 187, 0, 0, -248, 0, 0, 0, + 96, 0, 0, 1041, 173, 86, 235, 0, 359, 96, + 61, -42, 86, 138, 259, 3054, 0, 0, 0, 0, + 0, 0, 0, 139, 0, 0, 0, -4, 0, 0, + 0, 410, 0, 411, 412, 572, 0, 414, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 923, 923, 0, + 0, 176, 413, 0, 8, 56, 96, 0, 3110, 0, + 396, 130, 0, 0, 420, 68, 0, 408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 117, 0, 0, 0, 0, 21, - 0, 53, -155, 186, 0, 391, 0, 0, -133, -13, - 1039, 1039, 1039, 0, -248, 0, 0, 399, 303, 0, - -3, 23, 401, 353, 321, 151, 155, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, - 0, 0, 0, 0, 992, 403, -42, 181, 0, 193, - -42, 259, 0, 422, 0, 3313, 3361, 22, 0, -133, - 296, 0, 624, 992, 0, 412, 992, 91, 0, 0, - 0, 341, 171, 651, 361, 0, 0, 0, 0, 668, - 172, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 992, 0, 299, 0, 0, -85, 0, -85, -133, 444, - 15, 0, 0, 0, 1039, 1039, 1039, 1039, 1039, -133, - 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, - 1039, 0, 0, 992, 0, 236, 0, 0, 695, 0, - 0, 3413, 992, 0, 0, 722, 426, 447, 0, 448, - 0, 0, 0, 0, 354, 0, 0, 0, 451, 0, - 0, 0, -42, -42, 0, 752, 1039, 0, 0, 0, - 399, 399, 0, 0, 0, 0, 0, -3, -3, 23, - 401, 353, 321, 151, 0, -85, -85, 436, 365, 0, - 437, 769, 440, 814, 1100, 1590, 992, 0, 867, 0, - 0, 0, 373, 0, -42, -42, 0, 449, 0, 1590, - 472, 894, 938, 455, 475, 480, 0, 0, 261, 0, - 0, 0, 0, 0, 382, 0, 0, 0, 0, 0, - 1590, 1590, 490, 1590, 494, 965, 992, 992, 1590, 0, - 0, 0, 1590, 0, 1590, 1590, 499, 504, 505, 0, - 0, 0, 0, 1590, 1100, 1100, 0, 269, 0, 1100, - 0, + 0, 0, 0, 40, 0, 0, 0, 0, 96, 0, + 72, -42, 249, 0, 424, 0, 0, -248, 176, 923, + 923, 923, 68, 0, 0, 459, 304, 0, -6, -211, + 437, 384, 366, 179, 182, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 110, 0, 0, + 1041, 438, 86, 245, 0, 326, 86, 262, 0, 460, + 0, 3154, 3198, 92, 0, -248, 601, 1041, 0, 446, + 1041, 56, 0, 0, 0, 167, 618, 413, 0, 0, + 0, 0, 678, 209, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1041, 0, 321, 0, 0, 61, 0, + 61, -248, 475, 42, 0, 0, 0, 923, 923, 923, + 923, 923, -248, 923, 923, 923, 923, 923, 923, 923, + 923, 923, 923, 923, 0, 0, 1041, 0, 291, 0, + 0, 714, 0, 0, 3255, 1041, 0, 731, 457, 487, + 0, 488, 0, 0, 0, 260, 0, 0, 0, 490, + 0, 0, 0, 86, 86, 0, 771, 923, 0, 0, + 0, 459, 459, 0, 0, 0, 0, 0, -6, -6, + -211, 437, 384, 366, 179, 0, 61, 61, 473, 323, + 0, 476, 808, 477, 844, 1169, 1447, 1041, 0, 888, + 0, 0, 0, 347, 0, 86, 86, 0, 478, 0, + 1447, 500, 905, 950, 486, 506, 507, 0, 0, 284, + 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, + 0, 1447, 1447, 511, 1447, 513, 1002, 1041, 1041, 1447, + 0, 0, 0, 1447, 0, 1447, 1447, 514, 517, 518, + 0, 0, 0, 0, 1447, 1169, 1169, 0, 296, 0, + 1169, 0, }; protected static final short yyRindex [] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 549, 0, -96, 0, -83, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1223, 0, 0, + 0, 0, 0, 3312, 3352, 0, 0, 0, 568, 0, + 0, -92, 0, 0, 0, 0, 0, 0, -71, 0, + 0, 0, 0, 569, 0, 0, 0, 0, 0, 0, + 0, 0, 577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 230, 0, 0, - 0, 0, 1265, 0, 0, 0, 0, 0, 0, 0, - 495, 0, -38, 0, 0, 0, 0, 0, 17, 0, - 0, 0, 0, 0, 271, 0, 286, 0, 0, 0, - 126, 166, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -48, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 27, 0, 0, 271, 0, 0, - 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 409, 0, 0, 0, - 0, 0, 492, 0, 208, 0, 561, 0, 0, 0, - 0, 0, 0, 0, 0, 1320, 0, 0, 0, 0, - 0, -58, -52, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -27, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, - 0, 0, 0, 0, 3204, 0, 0, 2844, 2228, 0, - 2424, 2479, 1374, 1428, 1679, 1733, 1771, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 75, 0, 0, 272, - 83, 0, 0, -43, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1808, 0, 0, - 0, 0, 0, 0, 497, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 578, 247, 0, 0, + 0, 0, 0, 0, 0, 3499, 0, 122, 0, 0, + 0, 0, 0, -12, 0, 0, 0, 0, 0, 267, + 0, -64, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 299, 0, 0, 0, -54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 262, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 5, 0, 0, 267, 0, + 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1235, 0, 0, 0, 0, 0, 0, 0, + 0, 252, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -31, 0, 0, 0, + 0, 0, 336, 0, 155, 529, 0, 0, 0, 0, + 0, 0, 0, 0, 1117, 0, 0, 0, 0, 0, + -57, -51, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -35, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, + 0, 0, 2968, 0, 0, 2693, 2216, 0, 2342, 2306, + 1318, 1391, 1503, 1592, 1664, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 34, 0, 0, 274, 50, 0, 0, -21, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1754, 0, 0, 0, 0, 0, 521, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 84, 85, 0, 0, 0, 0, 0, 0, - 2898, 2953, 0, 0, 0, 0, 0, 2593, 2784, 2533, - 1868, 2059, 2119, 2173, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 95, 115, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 3014, 0, 0, 0, + 0, 0, 0, 0, 0, 1825, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 76, 79, 0, 0, 0, 0, 0, + 0, 2782, 2894, 0, 0, 0, 0, 0, 2507, 2617, + 2417, 1865, 1940, 2030, 2141, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 81, 120, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, + 0, 0, }; - protected static final short yyGindex [] = { 0, - 0, 0, 37, 0, 476, 0, 51, 544, 553, 0, - 0, 55, 0, -23, 0, 515, 0, 18, 503, 6, - -5, 479, 0, 0, 0, 0, 1432, 542, -97, -16, - 12, 13, 543, 0, 0, 363, -80, 0, -19, 279, - 34, -46, 0, -109, 0, 0, 0, 7, 278, 202, - 0, 0, 0, 0, -105, 0, -57, -190, 0, 245, - -84, 258, 263, 257, 260, 264, 0, 0, 288, 0, - -117, 0, -87, -53, -35, 20, 0, 0, -337, -165, - 1791, -123, 0, 0, 0, 0, 0, 0, 0, 0, - 291, 0, -29, 493, 0, 465, 578, 0, 47, 0, - 0, 0, -303, 87, 596, 0, 537, 478, 0, 0, + protected static final short yyGindex [] = { 546, + 0, 0, 2, 0, 481, 0, 386, 553, 545, 0, + 0, -16, 0, 131, 0, 508, 0, -15, 499, 9, + -11, 20, 0, 0, 3, 576, -10, 532, -126, -52, + -28, -2, 533, 0, 0, 365, -128, 0, 22, 205, + 17, -74, 0, -123, 0, 0, 0, -124, 287, 77, + 0, 0, 0, 0, -66, 0, 174, 80, 0, 240, + 65, 276, 277, 275, 282, 286, 0, 0, 319, 0, + 335, 0, -48, 27, 67, 144, 0, 0, -371, -193, + 2296, -154, 0, 0, 0, 0, 0, 0, 0, 0, + 328, 29, -55, 519, 0, 485, 591, 0, 233, 0, + 0, 0, -139, 264, 364, 0, 558, 492, 0, 0, 0, 0, 0, 0, 0, }; - protected static final short yyTable [] = { 187, - 200, 208, 245, 240, 106, 156, 201, 73, 45, 46, - 112, 15, 249, 91, 287, 46, 215, 190, 246, 149, - 156, 15, 156, 27, 110, 266, 26, 281, 108, 187, - 33, 202, 65, 27, 80, 389, 93, 16, 276, 24, - 73, 79, 15, 83, 63, 22, 101, 190, 97, 125, - 132, 191, 15, 129, 133, 367, 323, 417, 324, 292, - 293, 109, 403, 46, 102, 65, 91, 125, 132, 192, - 18, 94, 143, 98, 187, 123, 46, 63, 128, 78, - 81, 191, 343, 152, 115, 108, 95, 90, 24, 210, - 126, 138, 190, 304, 125, 425, 303, 45, 97, 192, - 287, 110, 210, 209, 144, 123, 257, 22, 146, 261, - 279, 280, 122, 27, 207, 33, 209, 417, 417, 261, - 31, 310, 417, 218, 193, 22, 191, 371, 372, 137, - 284, 253, 103, 116, 256, 148, 283, 333, 259, 123, - 90, 109, 119, 107, 192, 38, 145, 147, 115, 108, - 262, 204, 210, 120, 193, 347, 348, 342, 125, 350, - 187, 187, 97, 312, 313, 314, 209, 42, 25, 128, - 101, 26, 358, 110, 100, 32, 287, 300, 190, 190, - 213, 204, 26, 305, 24, 26, 118, 128, 139, 344, - 307, 206, 26, 118, 308, 285, 269, 116, 214, 193, - 210, 119, 45, 103, 302, 109, 119, 107, 254, 130, - 105, 365, 191, 191, 209, 107, 385, 120, 48, 15, - 271, 206, 49, 15, 213, 391, 204, 130, 393, 48, - 192, 192, 109, 49, 50, 15, 187, 110, 272, 373, - 378, 379, 336, 356, 48, 50, 114, 9, 49, 239, - 239, 345, 15, 9, 190, 240, 240, 368, 369, 370, - 50, 167, 15, 335, 245, 245, 206, 337, 9, 320, - 120, 121, 167, 101, 411, 102, 414, 123, 124, 423, - 246, 246, 363, 210, 364, 193, 193, 167, 191, 187, - 187, 101, 45, 102, 433, 435, 135, 209, 70, 321, - 322, 142, 118, 270, 187, 74, 192, 190, 190, 404, - 212, 92, 204, 204, 132, 156, 387, 338, 447, 448, - 449, 217, 190, 250, 325, 187, 187, 326, 187, 132, - 156, 458, 459, 187, 251, 255, 461, 187, 74, 187, - 187, 191, 191, 190, 190, 318, 190, 319, 187, 187, - 187, 190, 206, 206, 187, 190, 191, 190, 190, 192, - 192, 193, 405, 406, 92, 252, 190, 190, 190, 400, - 401, 260, 190, 273, 192, 274, 70, 191, 191, 332, - 191, 351, 303, 128, 303, 191, 268, 128, 204, 191, - 277, 191, 191, 288, 398, 192, 192, 397, 192, 128, - 191, 191, 191, 192, 118, 408, 191, 192, 397, 192, - 192, 427, 428, 426, 193, 193, 397, 289, 192, 192, - 192, 291, 440, 130, 192, 397, 128, 130, 206, 193, - 295, 296, 297, 298, 309, 317, 294, 299, 327, 130, - 315, 204, 204, 48, 329, 316, 328, 49, 15, 156, - 193, 193, 156, 193, 15, 131, 204, 330, 193, 50, - 331, 339, 193, 334, 193, 193, 130, 156, 15, 15, - 349, 352, 359, 193, 193, 193, 306, 204, 204, 193, - 204, 206, 206, 366, 394, 204, 84, 395, 396, 204, - 399, 204, 204, 48, 407, 409, 206, 49, 412, 15, - 204, 204, 204, 43, 43, 67, 204, 429, 70, 50, - 43, 43, 431, 436, 437, 9, 9, 206, 206, 438, - 206, 9, 9, 9, 9, 206, 386, 439, 9, 206, - 443, 206, 206, 48, 445, 460, 42, 49, 67, 454, - 206, 206, 206, 70, 455, 456, 206, 70, 1, 50, - 169, 43, 67, 48, 57, 168, 48, 49, 43, 70, - 49, 141, 128, 36, 43, 374, 375, 376, 377, 50, - 43, 43, 50, 37, 117, 127, 53, 96, 43, 99, - 362, 43, 311, 175, 380, 382, 70, 43, 360, 383, - 381, 361, 43, 151, 384, 258, 42, 238, 238, 167, - 43, 238, 238, 238, 238, 238, 1, 238, 82, 23, - 134, 263, 2, 175, 0, 0, 0, 0, 3, 238, - 238, 213, 238, 0, 0, 4, 5, 6, 0, 223, - 7, 0, 0, 8, 0, 0, 220, 0, 0, 221, - 0, 222, 0, 0, 0, 0, 0, 0, 0, 0, - 43, 0, 1, 48, 238, 275, 223, 49, 175, 0, - 0, 0, 0, 220, 3, 0, 221, 0, 222, 50, - 0, 4, 5, 6, 0, 0, 0, 0, 0, 8, - 0, 0, 346, 223, 238, 238, 130, 0, 0, 0, - 220, 353, 43, 221, 0, 222, 84, 43, 43, 0, - 223, 0, 0, 0, 0, 0, 0, 220, 0, 15, - 221, 0, 222, 0, 0, 0, 15, 15, 0, 0, - 0, 0, 15, 15, 15, 15, 0, 223, 0, 15, - 0, 0, 0, 0, 220, 388, 0, 221, 0, 222, - 0, 0, 0, 0, 175, 175, 0, 0, 43, 43, - 0, 57, 57, 0, 223, 0, 57, 0, 0, 0, - 0, 220, 0, 57, 221, 0, 222, 0, 57, 0, - 57, 57, 57, 0, 0, 0, 0, 0, 57, 0, - 392, 43, 0, 0, 223, 57, 0, 43, 0, 0, - 105, 220, 402, 0, 221, 57, 222, 0, 43, 0, - 0, 223, 0, 0, 1, 0, 0, 0, 220, 410, - 20, 221, 0, 222, 43, 0, 3, 238, 238, 0, - 175, 0, 238, 4, 5, 6, 0, 0, 21, 238, - 0, 8, 0, 238, 238, 0, 238, 238, 238, 0, - 0, 0, 0, 0, 238, 0, 223, 0, 0, 0, - 0, 238, 0, 220, 0, 0, 221, 0, 222, 0, - 0, 238, 238, 238, 238, 238, 238, 238, 238, 238, - 0, 219, 413, 0, 213, 213, 213, 213, 0, 0, - 0, 213, 0, 157, 0, 0, 0, 0, 0, 159, - 160, 161, 162, 163, 164, 165, 166, 42, 219, 223, - 0, 0, 0, 0, 168, 169, 220, 424, 0, 221, - 157, 222, 0, 0, 0, 0, 159, 160, 161, 162, - 163, 164, 165, 166, 42, 219, 223, 0, 0, 0, - 0, 168, 169, 220, 432, 0, 221, 157, 222, 0, - 0, 0, 219, 159, 160, 161, 162, 163, 164, 165, - 166, 42, 0, 0, 157, 0, 0, 0, 168, 169, - 159, 160, 161, 162, 163, 164, 165, 166, 42, 219, - 223, 0, 0, 0, 0, 168, 169, 220, 434, 0, - 221, 157, 222, 0, 0, 0, 0, 159, 160, 161, - 162, 163, 164, 165, 166, 42, 219, 223, 0, 0, - 0, 0, 168, 169, 220, 446, 0, 221, 157, 222, - 0, 0, 0, 0, 159, 160, 161, 162, 163, 164, - 165, 166, 42, 0, 223, 0, 219, 0, 0, 168, - 169, 220, 0, 0, 221, 0, 222, 0, 157, 0, - 0, 0, 0, 219, 159, 160, 161, 162, 163, 164, - 165, 166, 42, 0, 0, 157, 0, 0, 0, 168, - 169, 159, 160, 161, 162, 163, 164, 165, 166, 42, - 0, 223, 0, 0, 0, 0, 168, 169, 220, 0, - 0, 221, 0, 222, 0, 0, 0, 0, 219, 0, + protected static final short yyTable [] = { 36, + 38, 204, 83, 84, 114, 19, 181, 205, 19, 160, + 250, 139, 160, 84, 19, 310, 236, 145, 57, 18, + 244, 26, 43, 206, 249, 57, 74, 160, 19, 19, + 30, 279, 237, 143, 67, 32, 19, 116, 285, 110, + 126, 98, 292, 50, 438, 18, 127, 47, 44, 119, + 123, 28, 14, 346, 43, 347, 109, 84, 53, 19, + 18, 39, 70, 112, 155, 100, 18, 41, 26, 129, + 127, 216, 132, 84, 18, 18, 102, 133, 103, 98, + 77, 169, 388, 62, 41, 18, 18, 157, 124, 219, + 348, 101, 120, 349, 83, 307, 61, 175, 310, 216, + 323, 62, 123, 100, 438, 438, 143, 54, 113, 438, + 127, 159, 327, 119, 102, 326, 103, 219, 57, 67, + 50, 333, 18, 102, 160, 164, 45, 112, 178, 18, + 238, 142, 45, 129, 123, 180, 151, 111, 18, 124, + 124, 50, 216, 238, 18, 18, 174, 18, 288, 176, + 355, 152, 366, 326, 18, 101, 120, 205, 358, 247, + 219, 18, 360, 239, 220, 160, 18, 367, 282, 365, + 55, 310, 113, 46, 18, 30, 239, 56, 114, 66, + 160, 19, 160, 63, 56, 205, 328, 302, 302, 30, + 238, 308, 220, 74, 13, 83, 28, 74, 123, 64, + 13, 111, 128, 124, 221, 386, 136, 373, 65, 74, + 326, 136, 19, 277, 394, 13, 305, 141, 241, 72, + 129, 18, 410, 239, 137, 216, 216, 325, 205, 170, + 242, 278, 221, 156, 163, 220, 74, 238, 377, 302, + 302, 302, 114, 219, 219, 74, 19, 424, 243, 2, + 243, 243, 73, 3, 156, 163, 244, 244, 78, 421, + 422, 104, 18, 113, 331, 6, 343, 18, 18, 19, + 239, 125, 250, 250, 112, 221, 19, 19, 151, 83, + 446, 222, 19, 19, 19, 19, 249, 249, 242, 19, + 105, 283, 197, 280, 287, 106, 344, 345, 216, 104, + 419, 448, 449, 418, 287, 151, 359, 138, 105, 222, + 136, 205, 205, 106, 238, 18, 219, 160, 220, 220, + 361, 479, 480, 125, 135, 136, 482, 302, 302, 302, + 302, 302, 160, 302, 302, 302, 302, 302, 302, 302, + 302, 302, 302, 302, 16, 18, 341, 239, 342, 216, + 216, 18, 222, 318, 319, 320, 321, 17, 221, 221, + 322, 140, 18, 429, 216, 142, 418, 219, 219, 153, + 233, 303, 304, 330, 147, 315, 316, 302, 18, 19, + 408, 166, 219, 19, 205, 216, 216, 447, 216, 154, + 418, 220, 51, 216, 173, 19, 246, 216, 233, 216, + 216, 235, 461, 219, 219, 418, 219, 51, 216, 216, + 216, 219, 399, 400, 216, 219, 51, 219, 219, 281, + 392, 393, 19, 335, 336, 337, 219, 219, 219, 235, + 2, 221, 219, 2, 3, 222, 222, 3, 286, 294, + 51, 233, 220, 220, 108, 111, 6, 296, 2, 6, + 297, 298, 3, 301, 311, 74, 151, 220, 312, 384, + 130, 385, 13, 13, 6, 314, 317, 332, 13, 13, + 13, 13, 235, 197, 350, 13, 197, 351, 220, 220, + 2, 220, 221, 221, 3, 353, 220, 354, 268, 352, + 220, 14, 220, 220, 168, 340, 6, 221, 357, 362, + 338, 220, 220, 220, 371, 339, 2, 220, 222, 380, + 3, 389, 390, 391, 387, 415, 177, 179, 221, 221, + 300, 221, 6, 88, 233, 233, 221, 416, 417, 420, + 221, 428, 221, 221, 430, 433, 450, 426, 427, 329, + 452, 221, 221, 221, 457, 458, 459, 221, 2, 117, + 460, 464, 3, 466, 475, 235, 235, 476, 477, 222, + 222, 425, 481, 295, 6, 242, 242, 1, 2, 242, + 242, 242, 242, 242, 222, 242, 4, 3, 2, 172, + 132, 407, 3, 395, 396, 397, 398, 242, 242, 217, + 242, 14, 74, 76, 6, 222, 222, 233, 222, 172, + 75, 158, 150, 222, 252, 52, 131, 222, 134, 222, + 222, 249, 383, 334, 250, 356, 251, 1, 222, 222, + 222, 197, 242, 48, 222, 401, 403, 402, 235, 5, + 299, 369, 370, 252, 404, 372, 7, 8, 9, 405, + 249, 49, 381, 250, 13, 251, 284, 379, 233, 233, + 252, 382, 242, 242, 183, 115, 289, 249, 374, 368, + 250, 165, 251, 233, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 235, + 235, 0, 0, 0, 233, 233, 0, 233, 0, 0, + 0, 406, 233, 0, 235, 0, 233, 0, 233, 233, + 412, 0, 414, 0, 0, 0, 0, 233, 233, 233, + 252, 0, 0, 233, 0, 235, 235, 249, 235, 0, + 250, 0, 251, 235, 0, 0, 0, 235, 0, 235, + 235, 0, 0, 0, 0, 0, 0, 0, 235, 235, + 235, 0, 0, 0, 235, 0, 252, 432, 0, 435, + 0, 0, 444, 249, 409, 0, 250, 0, 251, 0, + 1, 0, 0, 252, 0, 0, 4, 454, 456, 0, + 249, 0, 5, 250, 0, 251, 0, 0, 0, 7, + 8, 9, 0, 11, 12, 242, 242, 13, 0, 413, + 242, 468, 469, 470, 0, 0, 0, 242, 0, 0, + 138, 242, 242, 252, 242, 242, 242, 0, 0, 0, + 249, 423, 242, 250, 0, 251, 0, 0, 0, 242, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 242, + 242, 242, 242, 242, 242, 242, 242, 242, 0, 0, + 252, 0, 217, 217, 217, 217, 248, 249, 431, 217, + 250, 0, 251, 0, 0, 0, 0, 0, 187, 0, + 0, 0, 0, 0, 189, 190, 191, 192, 193, 194, + 195, 196, 14, 0, 0, 248, 252, 0, 0, 198, + 199, 0, 0, 249, 0, 0, 250, 187, 251, 0, + 0, 0, 248, 189, 190, 191, 192, 193, 194, 195, + 196, 14, 434, 0, 187, 0, 0, 0, 198, 199, + 189, 190, 191, 192, 193, 194, 195, 196, 14, 0, + 252, 0, 0, 0, 0, 198, 199, 249, 445, 0, + 250, 0, 251, 0, 0, 0, 0, 252, 0, 0, + 0, 0, 0, 0, 249, 453, 0, 250, 0, 251, + 0, 0, 248, 0, 0, 252, 0, 0, 0, 0, + 0, 0, 249, 0, 187, 250, 0, 251, 0, 0, + 189, 190, 191, 192, 193, 194, 195, 196, 14, 0, + 0, 0, 252, 0, 0, 198, 199, 0, 248, 249, + 455, 0, 250, 0, 251, 0, 0, 0, 0, 0, + 187, 0, 0, 0, 0, 248, 189, 190, 191, 192, + 193, 194, 195, 196, 14, 0, 0, 187, 0, 0, + 0, 198, 199, 189, 190, 191, 192, 193, 194, 195, + 196, 14, 0, 0, 252, 0, 0, 0, 198, 199, + 0, 249, 467, 0, 250, 248, 251, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 187, 0, 0, + 0, 0, 0, 189, 190, 191, 192, 193, 194, 195, + 196, 14, 0, 252, 0, 0, 0, 0, 198, 199, + 249, 0, 248, 250, 0, 251, 0, 0, 0, 0, + 0, 0, 0, 0, 187, 0, 0, 0, 0, 0, + 189, 190, 191, 192, 193, 194, 195, 196, 14, 0, + 0, 0, 0, 0, 0, 198, 199, 0, 248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 157, 0, 0, 0, 0, 0, 159, 160, 161, 162, - 163, 164, 165, 166, 42, 0, 0, 0, 0, 0, - 0, 168, 169, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, - 0, 219, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 157, 0, 0, 0, 0, 170, 159, - 160, 161, 162, 163, 164, 165, 166, 42, 219, 0, - 0, 0, 0, 0, 168, 169, 0, 0, 0, 0, - 157, 0, 0, 0, 0, 0, 159, 160, 161, 162, - 163, 164, 165, 166, 42, 0, 0, 0, 0, 0, - 0, 168, 169, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 219, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 105, 0, 157, 0, 0, 0, 0, 0, - 159, 160, 161, 162, 163, 164, 165, 166, 42, 219, - 0, 0, 0, 0, 0, 168, 169, 0, 0, 0, - 0, 157, 0, 0, 0, 0, 0, 159, 160, 161, - 162, 163, 164, 165, 166, 42, 219, 0, 0, 0, - 0, 0, 168, 169, 0, 0, 0, 0, 157, 0, - 0, 0, 0, 0, 159, 160, 161, 162, 163, 164, - 165, 166, 42, 81, 82, 0, 0, 0, 0, 168, - 169, 70, 70, 0, 70, 70, 70, 70, 70, 70, - 70, 70, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 70, 0, 157, 70, 0, 0, 0, - 0, 159, 160, 161, 162, 163, 164, 165, 166, 42, - 0, 0, 0, 0, 0, 0, 168, 169, 0, 0, - 0, 0, 0, 0, 0, 70, 237, 237, 70, 82, - 237, 237, 237, 237, 237, 0, 237, 0, 0, 0, - 154, 415, 0, 0, 0, 0, 0, 0, 237, 237, - 0, 237, 156, 0, 0, 0, 157, 70, 70, 70, - 0, 416, 159, 160, 161, 162, 163, 164, 165, 166, - 42, 0, 0, 0, 0, 0, 0, 168, 169, 0, - 251, 0, 0, 237, 251, 251, 251, 251, 251, 251, - 251, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 251, 251, 0, 251, 0, 0, 0, 0, - 0, 0, 0, 237, 237, 0, 0, 0, 0, 0, + 187, 0, 0, 0, 0, 0, 189, 190, 191, 192, + 193, 194, 195, 196, 14, 0, 0, 0, 0, 0, + 0, 198, 199, 241, 241, 0, 0, 241, 241, 241, + 241, 241, 248, 241, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 187, 241, 241, 0, 241, 248, + 189, 190, 191, 192, 193, 194, 195, 196, 14, 0, + 0, 187, 0, 0, 0, 198, 199, 189, 190, 191, + 192, 193, 194, 195, 196, 14, 0, 0, 202, 187, + 241, 0, 198, 199, 0, 189, 190, 191, 192, 193, + 194, 195, 196, 14, 248, 0, 0, 200, 0, 0, + 198, 199, 0, 0, 0, 0, 187, 0, 0, 0, + 241, 241, 189, 190, 191, 192, 193, 194, 195, 196, + 14, 0, 0, 0, 0, 0, 0, 198, 199, 74, + 74, 0, 74, 74, 74, 74, 74, 74, 74, 74, + 0, 0, 0, 0, 0, 0, 248, 0, 0, 0, + 0, 74, 0, 0, 74, 0, 0, 0, 187, 0, + 0, 138, 0, 0, 189, 190, 191, 192, 193, 194, + 195, 196, 14, 0, 0, 1, 0, 0, 0, 198, + 199, 4, 0, 74, 0, 248, 74, 5, 0, 0, + 0, 0, 0, 0, 7, 8, 9, 187, 0, 12, + 0, 0, 13, 189, 190, 191, 192, 193, 194, 195, + 196, 14, 0, 0, 0, 74, 74, 74, 198, 199, + 0, 0, 0, 0, 255, 0, 0, 0, 255, 255, + 255, 255, 255, 255, 255, 0, 0, 0, 0, 0, + 0, 0, 0, 241, 241, 0, 255, 255, 241, 255, + 0, 0, 0, 0, 0, 241, 0, 0, 0, 241, + 241, 0, 241, 241, 241, 0, 0, 0, 0, 0, + 241, 0, 0, 0, 0, 0, 0, 241, 0, 0, + 0, 255, 0, 0, 0, 0, 0, 241, 241, 241, + 241, 241, 241, 241, 241, 241, 0, 246, 246, 0, + 0, 246, 246, 246, 246, 246, 246, 246, 0, 184, + 436, 255, 255, 0, 0, 0, 0, 0, 0, 246, + 246, 186, 246, 0, 0, 187, 0, 0, 0, 0, + 437, 189, 190, 191, 192, 193, 194, 195, 196, 14, + 0, 0, 0, 0, 0, 0, 198, 199, 0, 74, + 74, 0, 0, 0, 74, 74, 202, 0, 0, 0, + 0, 74, 0, 0, 0, 74, 74, 0, 74, 74, + 74, 74, 74, 74, 74, 200, 74, 0, 0, 0, + 0, 0, 0, 74, 246, 246, 0, 0, 0, 0, + 0, 0, 0, 74, 74, 74, 74, 74, 74, 74, + 74, 74, 0, 0, 0, 0, 0, 0, 0, 234, + 234, 0, 0, 234, 234, 234, 234, 234, 234, 234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 242, 242, 0, 251, 242, 242, - 242, 242, 242, 242, 242, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 242, 242, 0, 242, - 0, 82, 82, 0, 0, 0, 82, 251, 251, 0, - 0, 0, 0, 82, 0, 0, 0, 0, 82, 0, - 82, 82, 82, 0, 0, 0, 0, 0, 82, 0, - 0, 70, 70, 0, 0, 82, 70, 0, 0, 0, - 0, 0, 0, 70, 0, 82, 0, 70, 70, 0, - 70, 70, 70, 0, 0, 0, 70, 0, 70, 0, - 0, 242, 242, 0, 0, 70, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 70, 70, 70, 70, 70, - 70, 70, 70, 70, 0, 0, 237, 237, 0, 0, - 0, 237, 0, 0, 0, 0, 0, 0, 237, 0, - 0, 0, 237, 237, 0, 237, 237, 237, 0, 278, - 278, 0, 0, 237, 0, 0, 0, 0, 0, 0, - 237, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 237, 237, 237, 237, 237, 237, 237, 237, 237, 172, - 251, 251, 0, 0, 0, 251, 0, 0, 0, 0, - 0, 0, 251, 0, 0, 0, 251, 251, 170, 251, - 251, 251, 278, 278, 278, 0, 0, 251, 0, 0, - 0, 0, 0, 0, 251, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 251, 251, 251, 251, 251, 251, - 251, 251, 251, 0, 242, 242, 0, 0, 0, 242, - 0, 0, 0, 0, 0, 0, 242, 0, 0, 0, - 242, 242, 0, 242, 242, 242, 0, 0, 0, 0, - 0, 242, 105, 0, 0, 230, 230, 0, 242, 230, - 230, 230, 230, 230, 230, 230, 0, 0, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 230, 230, 0, - 230, 0, 0, 0, 0, 0, 278, 278, 278, 278, - 278, 0, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 0, 0, 0, 0, 0, 0, 205, - 205, 0, 230, 205, 205, 205, 205, 205, 205, 205, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 205, 205, 0, 205, 0, 0, 0, 278, 0, - 0, 0, 0, 230, 0, 0, 0, 194, 194, 0, - 0, 194, 194, 194, 194, 194, 194, 194, 0, 0, - 0, 0, 0, 0, 0, 0, 205, 0, 0, 194, - 194, 0, 194, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 238, 238, 0, 0, 238, 238, - 238, 238, 238, 0, 238, 0, 205, 205, 0, 0, - 154, 155, 0, 0, 194, 0, 238, 238, 0, 238, - 0, 0, 156, 0, 0, 0, 157, 0, 0, 0, - 0, 158, 159, 160, 161, 162, 163, 164, 165, 166, - 42, 0, 0, 0, 194, 194, 0, 168, 169, 0, - 0, 238, 0, 0, 252, 0, 0, 0, 252, 252, - 252, 252, 252, 252, 252, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 252, 252, 0, 252, - 0, 238, 238, 0, 0, 230, 230, 0, 0, 0, - 230, 0, 0, 0, 0, 0, 0, 230, 0, 0, - 0, 230, 230, 0, 230, 230, 230, 0, 0, 0, - 0, 252, 230, 0, 0, 0, 0, 0, 0, 230, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, - 230, 230, 230, 230, 230, 230, 230, 230, 0, 205, - 205, 252, 252, 0, 205, 0, 0, 0, 0, 0, - 0, 205, 0, 0, 0, 205, 205, 0, 205, 205, - 205, 0, 0, 0, 0, 0, 205, 0, 0, 0, - 0, 0, 0, 205, 0, 0, 0, 194, 194, 0, - 0, 0, 194, 205, 205, 205, 205, 205, 205, 194, - 205, 205, 0, 194, 194, 0, 194, 194, 194, 0, - 0, 0, 0, 0, 194, 0, 0, 0, 0, 0, - 0, 194, 0, 0, 238, 238, 0, 0, 0, 238, - 0, 194, 194, 194, 194, 194, 238, 194, 194, 194, - 238, 238, 0, 238, 238, 238, 0, 0, 0, 0, - 0, 238, 0, 0, 0, 243, 243, 0, 238, 243, - 243, 243, 243, 243, 243, 243, 0, 0, 238, 238, - 238, 238, 238, 238, 238, 238, 238, 243, 243, 0, - 243, 0, 0, 0, 252, 252, 0, 0, 0, 252, - 0, 0, 0, 0, 0, 0, 252, 0, 0, 0, - 252, 252, 0, 252, 252, 252, 0, 0, 0, 0, - 0, 252, 0, 0, 0, 231, 231, 0, 252, 231, - 231, 231, 231, 231, 231, 231, 0, 0, 252, 252, - 252, 252, 252, 252, 252, 252, 252, 231, 231, 0, - 231, 0, 243, 243, 0, 418, 422, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 430, 0, 0, 0, 0, 0, 0, 0, 0, 206, - 206, 0, 231, 206, 206, 206, 206, 206, 206, 206, - 0, 441, 442, 0, 444, 0, 0, 0, 0, 450, - 0, 206, 206, 451, 206, 452, 453, 0, 0, 0, - 0, 0, 0, 231, 457, 418, 422, 0, 0, 0, - 450, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 273, 273, 206, 0, 273, 273, - 0, 273, 0, 273, 273, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 273, 273, 0, 273, - 0, 0, 0, 0, 0, 0, 206, 206, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 243, 243, 0, 0, 0, - 243, 273, 0, 0, 0, 0, 0, 243, 0, 0, - 0, 243, 243, 0, 243, 243, 243, 0, 0, 0, - 0, 0, 243, 0, 0, 0, 0, 0, 0, 243, - 0, 273, 273, 0, 0, 0, 0, 0, 0, 243, - 243, 243, 243, 243, 243, 243, 243, 243, 0, 0, - 0, 0, 0, 0, 0, 231, 231, 0, 0, 0, - 231, 0, 0, 0, 0, 0, 0, 231, 0, 0, - 0, 231, 231, 0, 231, 231, 231, 0, 0, 0, - 0, 0, 231, 0, 0, 0, 0, 0, 0, 231, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 231, - 231, 231, 231, 231, 231, 231, 231, 231, 0, 206, - 206, 0, 0, 0, 206, 0, 0, 0, 0, 0, - 0, 206, 0, 0, 0, 206, 206, 0, 206, 206, - 206, 0, 0, 0, 0, 0, 206, 0, 0, 0, - 264, 264, 0, 206, 264, 264, 264, 264, 264, 264, - 264, 0, 0, 206, 206, 206, 206, 206, 206, 0, - 206, 206, 264, 0, 273, 273, 0, 0, 0, 273, - 0, 0, 0, 0, 0, 0, 273, 0, 0, 0, - 273, 273, 0, 273, 273, 273, 0, 0, 0, 0, - 0, 273, 0, 0, 0, 262, 262, 264, 273, 262, - 262, 262, 262, 262, 262, 262, 0, 0, 273, 273, - 273, 273, 273, 273, 273, 273, 273, 262, 262, 0, - 262, 0, 0, 0, 0, 0, 0, 264, 264, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, - 263, 0, 262, 263, 263, 263, 263, 263, 263, 263, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 263, 263, 0, 263, 0, 0, 0, 0, 0, - 0, 0, 262, 262, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 263, 0, 0, 265, - 265, 0, 0, 265, 265, 265, 265, 265, 265, 265, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 265, 0, 0, 0, 0, 263, 263, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 264, 264, 0, 0, 0, 264, 265, 0, 0, 0, - 0, 0, 264, 0, 0, 0, 0, 264, 0, 264, - 264, 264, 0, 0, 0, 0, 0, 264, 0, 0, - 0, 0, 0, 0, 264, 0, 265, 265, 0, 0, - 0, 0, 0, 0, 264, 264, 0, 0, 264, 264, - 264, 264, 264, 0, 0, 262, 262, 0, 0, 0, - 262, 0, 0, 0, 0, 0, 0, 262, 0, 0, - 0, 262, 262, 0, 262, 262, 262, 0, 0, 0, - 0, 0, 262, 0, 0, 0, 0, 0, 0, 262, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, - 0, 262, 262, 0, 262, 262, 262, 262, 0, 263, - 263, 0, 0, 0, 263, 0, 0, 0, 0, 0, - 0, 263, 0, 0, 0, 263, 263, 0, 263, 263, - 263, 0, 0, 0, 0, 0, 263, 0, 0, 0, - 266, 266, 0, 263, 266, 266, 266, 266, 266, 266, - 266, 0, 0, 263, 0, 263, 263, 0, 263, 263, - 263, 263, 266, 0, 0, 0, 0, 0, 0, 265, - 265, 0, 0, 0, 265, 0, 0, 0, 0, 0, - 0, 265, 0, 0, 0, 0, 265, 0, 265, 265, - 265, 0, 0, 0, 0, 0, 265, 266, 0, 0, - 0, 274, 0, 265, 274, 0, 274, 274, 274, 274, - 0, 0, 0, 265, 265, 0, 0, 265, 265, 265, - 265, 265, 274, 274, 0, 274, 0, 266, 266, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 275, 0, 274, 275, 0, - 275, 275, 275, 275, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 275, 275, 0, 275, - 0, 0, 0, 0, 0, 0, 0, 274, 274, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 276, 275, 0, 276, 0, 276, 276, 276, 276, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 276, 276, 0, 276, 0, 0, 0, 0, 0, - 0, 275, 275, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 266, 266, 0, 0, 0, 266, 276, 0, 0, 0, - 0, 0, 266, 159, 0, 0, 0, 266, 0, 266, - 266, 266, 0, 0, 0, 0, 0, 266, 0, 0, - 0, 0, 159, 0, 266, 0, 276, 276, 0, 0, - 0, 0, 0, 0, 266, 266, 0, 0, 266, 266, + 0, 234, 234, 0, 234, 0, 0, 0, 0, 138, + 0, 0, 0, 0, 255, 255, 0, 0, 0, 255, + 0, 0, 0, 0, 0, 0, 255, 0, 0, 0, + 255, 255, 0, 255, 255, 255, 234, 0, 0, 0, + 0, 255, 0, 0, 0, 0, 0, 0, 255, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 234, 209, 209, + 0, 0, 209, 209, 209, 209, 209, 209, 209, 0, + 0, 0, 0, 0, 0, 0, 0, 246, 246, 0, + 209, 209, 246, 209, 0, 0, 0, 0, 0, 246, + 0, 0, 0, 246, 246, 0, 246, 246, 246, 0, + 0, 0, 0, 0, 246, 0, 0, 0, 0, 0, + 0, 246, 0, 0, 0, 209, 0, 0, 0, 0, + 0, 246, 246, 246, 246, 246, 246, 246, 246, 246, + 198, 198, 0, 0, 198, 198, 198, 198, 198, 198, + 198, 0, 0, 0, 0, 209, 209, 184, 185, 0, + 0, 0, 198, 198, 0, 198, 0, 0, 0, 186, + 0, 0, 0, 187, 0, 0, 0, 0, 188, 189, + 190, 191, 192, 193, 194, 195, 196, 14, 0, 0, + 0, 0, 0, 0, 198, 199, 0, 198, 0, 234, + 234, 0, 0, 0, 234, 0, 0, 0, 0, 0, + 0, 234, 0, 0, 0, 234, 234, 0, 234, 234, + 234, 0, 0, 0, 0, 0, 234, 198, 198, 0, + 242, 242, 0, 234, 242, 242, 242, 242, 242, 0, + 242, 0, 0, 234, 234, 234, 234, 234, 234, 234, + 234, 234, 242, 242, 0, 242, 0, 1, 2, 0, + 0, 0, 3, 4, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 0, 6, 0, 7, 8, 9, 10, + 11, 12, 0, 0, 13, 0, 0, 242, 209, 209, + 0, 0, 0, 209, 0, 0, 0, 0, 0, 0, + 209, 14, 0, 0, 209, 209, 0, 209, 209, 209, + 0, 0, 0, 0, 0, 209, 0, 242, 242, 0, + 0, 0, 209, 85, 86, 0, 0, 0, 0, 0, + 0, 0, 209, 209, 209, 209, 209, 209, 0, 209, + 209, 256, 0, 0, 0, 256, 256, 256, 256, 256, + 256, 256, 0, 0, 0, 0, 0, 0, 0, 0, + 198, 198, 0, 256, 256, 198, 256, 0, 0, 0, + 0, 0, 198, 0, 0, 0, 198, 198, 0, 198, + 198, 198, 0, 0, 0, 0, 0, 198, 0, 86, + 0, 0, 0, 0, 198, 0, 0, 0, 256, 0, + 0, 0, 0, 0, 198, 198, 198, 198, 198, 0, + 198, 198, 198, 0, 0, 0, 247, 247, 0, 0, + 247, 247, 247, 247, 247, 247, 247, 0, 256, 256, + 0, 0, 0, 0, 0, 0, 0, 0, 247, 247, + 0, 247, 0, 0, 0, 0, 0, 0, 0, 0, + 242, 242, 0, 0, 0, 242, 0, 0, 0, 0, + 0, 0, 242, 0, 0, 0, 242, 242, 0, 242, + 242, 242, 0, 0, 0, 0, 0, 242, 0, 0, + 0, 0, 0, 0, 242, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 242, 242, 242, 242, 242, 242, + 242, 242, 242, 247, 247, 0, 235, 235, 0, 0, + 235, 235, 235, 235, 235, 235, 235, 0, 0, 0, + 0, 86, 86, 0, 0, 0, 86, 0, 235, 235, + 0, 235, 0, 86, 0, 0, 0, 0, 86, 0, + 86, 86, 86, 0, 0, 0, 0, 0, 86, 0, + 0, 0, 0, 0, 0, 86, 0, 0, 0, 0, + 0, 256, 256, 235, 0, 86, 256, 0, 0, 0, + 0, 0, 0, 256, 0, 0, 0, 256, 256, 0, + 256, 256, 256, 0, 0, 0, 0, 0, 256, 0, + 0, 0, 0, 0, 235, 256, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 256, 256, 256, 256, 256, + 256, 256, 256, 256, 0, 0, 0, 210, 210, 0, + 0, 210, 210, 210, 210, 210, 210, 210, 0, 0, + 0, 0, 0, 0, 0, 0, 247, 247, 0, 210, + 210, 247, 210, 0, 0, 0, 0, 0, 247, 0, + 0, 0, 247, 247, 0, 247, 247, 247, 0, 0, + 0, 0, 0, 247, 0, 0, 0, 0, 0, 0, + 247, 0, 0, 0, 210, 0, 0, 0, 0, 0, + 247, 247, 247, 247, 247, 247, 247, 247, 247, 0, + 0, 0, 277, 277, 0, 0, 277, 277, 0, 277, + 0, 277, 277, 0, 210, 210, 0, 0, 0, 0, + 0, 0, 0, 0, 277, 277, 0, 277, 0, 0, + 0, 0, 0, 0, 0, 0, 235, 235, 0, 0, + 0, 235, 0, 0, 0, 0, 0, 0, 235, 0, + 0, 0, 235, 235, 0, 235, 235, 235, 0, 277, + 0, 0, 0, 235, 0, 0, 0, 0, 0, 0, + 235, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 235, 235, 235, 235, 235, 235, 235, 235, 235, 277, + 277, 0, 266, 266, 0, 0, 266, 266, 266, 266, 266, 266, 266, 0, 0, 0, 0, 0, 0, 0, - 274, 274, 0, 0, 0, 274, 0, 172, 0, 0, - 0, 0, 274, 0, 0, 0, 274, 274, 0, 274, - 274, 274, 0, 0, 0, 0, 170, 274, 0, 0, - 0, 0, 0, 0, 274, 0, 159, 0, 159, 0, - 0, 0, 0, 0, 274, 274, 274, 274, 274, 274, - 274, 274, 274, 0, 275, 275, 0, 0, 0, 275, - 0, 0, 0, 0, 0, 0, 275, 0, 0, 0, - 275, 275, 0, 275, 275, 275, 0, 0, 0, 0, - 0, 275, 0, 0, 0, 0, 0, 0, 275, 172, - 105, 0, 171, 0, 0, 0, 0, 0, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 0, 170, 276, - 276, 0, 0, 0, 276, 0, 0, 0, 0, 0, - 0, 276, 0, 0, 0, 276, 276, 0, 276, 276, - 276, 0, 0, 0, 0, 0, 276, 0, 0, 0, - 248, 248, 0, 276, 248, 248, 248, 248, 248, 248, - 248, 0, 0, 276, 276, 276, 276, 276, 276, 276, - 276, 276, 248, 248, 0, 248, 0, 0, 0, 0, - 0, 159, 105, 0, 265, 159, 0, 0, 0, 0, - 191, 0, 0, 0, 159, 159, 0, 159, 0, 0, - 0, 0, 0, 0, 0, 0, 159, 248, 172, 0, - 159, 0, 0, 0, 0, 159, 159, 159, 159, 159, - 159, 159, 159, 159, 159, 0, 0, 170, 0, 0, - 0, 159, 159, 0, 0, 48, 0, 248, 248, 49, - 0, 0, 0, 0, 0, 0, 0, 0, 154, 155, - 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, - 156, 0, 172, 0, 157, 0, 0, 0, 0, 158, - 159, 160, 161, 162, 163, 164, 165, 166, 167, 0, - 0, 170, 0, 0, 0, 168, 169, 0, 0, 0, - 0, 105, 0, 286, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 266, 266, 0, 266, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 268, 268, + 0, 0, 268, 268, 268, 268, 268, 268, 268, 0, + 0, 0, 0, 0, 0, 0, 0, 210, 210, 266, + 268, 0, 210, 0, 0, 0, 0, 0, 0, 210, + 0, 0, 0, 210, 210, 0, 210, 210, 210, 0, + 0, 0, 0, 0, 210, 0, 0, 0, 0, 266, + 266, 210, 0, 0, 0, 268, 0, 0, 0, 0, + 0, 210, 210, 210, 210, 210, 210, 0, 210, 210, + 0, 0, 0, 267, 267, 0, 0, 267, 267, 267, + 267, 267, 267, 267, 0, 268, 268, 0, 0, 0, + 0, 0, 277, 277, 0, 267, 267, 277, 267, 0, + 0, 0, 0, 0, 277, 0, 0, 0, 277, 277, + 0, 277, 277, 277, 0, 0, 0, 0, 0, 277, + 0, 0, 0, 0, 0, 0, 277, 0, 0, 0, + 267, 0, 0, 0, 0, 0, 277, 277, 277, 277, + 277, 277, 277, 277, 277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 172, 0, 0, 0, 0, 0, 0, 48, 0, 0, - 0, 49, 0, 0, 0, 0, 0, 0, 0, 170, - 154, 155, 0, 50, 0, 0, 0, 0, 0, 0, - 0, 0, 156, 0, 0, 105, 264, 340, 0, 0, - 0, 158, 159, 160, 161, 162, 163, 164, 165, 166, - 167, 0, 172, 0, 0, 0, 0, 168, 169, 0, - 248, 248, 0, 0, 0, 248, 0, 0, 0, 0, - 0, 170, 248, 0, 0, 0, 248, 248, 0, 248, - 248, 248, 0, 105, 0, 341, 0, 248, 0, 0, - 0, 0, 0, 0, 248, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 248, 248, 248, 248, 248, 248, - 248, 0, 0, 0, 0, 0, 48, 54, 0, 0, - 49, 0, 0, 0, 0, 0, 0, 0, 0, 154, - 155, 0, 50, 0, 0, 105, 0, 390, 0, 0, - 0, 156, 0, 0, 0, 157, 0, 0, 0, 0, - 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, - 0, 0, 54, 0, 0, 0, 168, 169, 0, 0, - 48, 0, 0, 0, 49, 0, 0, 0, 0, 0, - 0, 0, 55, 154, 155, 0, 50, 0, 0, 0, - 0, 0, 0, 0, 0, 156, 0, 54, 0, 157, - 0, 0, 0, 0, 158, 159, 160, 161, 162, 163, - 164, 165, 166, 167, 0, 0, 0, 0, 48, 0, - 168, 169, 49, 0, 0, 54, 0, 85, 0, 0, - 0, 154, 155, 0, 50, 0, 0, 0, 0, 0, - 0, 0, 0, 156, 0, 0, 0, 157, 0, 0, - 0, 0, 158, 159, 160, 161, 162, 163, 164, 165, - 166, 167, 116, 0, 0, 0, 0, 0, 168, 169, - 48, 0, 0, 0, 49, 0, 0, 0, 0, 0, - 0, 0, 0, 154, 155, 0, 50, 0, 0, 0, - 140, 0, 0, 0, 0, 156, 0, 0, 0, 157, - 0, 0, 0, 0, 158, 159, 160, 161, 162, 163, - 164, 165, 166, 167, 1, 48, 0, 0, 0, 49, - 168, 169, 0, 0, 0, 0, 3, 0, 0, 0, - 0, 50, 0, 4, 5, 6, 0, 0, 0, 0, - 0, 51, 0, 0, 0, 0, 0, 0, 52, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 53, 1, - 48, 0, 0, 0, 49, 0, 0, 0, 0, 0, - 0, 3, 0, 0, 0, 0, 50, 0, 4, 5, - 6, 0, 0, 0, 0, 0, 8, 0, 0, 0, - 0, 0, 0, 52, 1, 48, 0, 0, 0, 49, - 0, 0, 0, 84, 0, 0, 3, 0, 0, 0, - 0, 50, 0, 4, 5, 6, 0, 0, 0, 0, - 0, 51, 1, 48, 0, 0, 0, 49, 52, 0, - 0, 0, 0, 0, 3, 0, 0, 0, 53, 50, - 0, 4, 5, 6, 0, 0, 0, 0, 0, 8, - 0, 0, 0, 0, 0, 0, 52, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 84, + 267, 267, 0, 269, 269, 0, 0, 269, 269, 269, + 269, 269, 269, 269, 0, 0, 0, 0, 0, 0, + 0, 0, 266, 266, 0, 269, 0, 266, 0, 0, + 0, 0, 0, 0, 266, 0, 0, 0, 266, 266, + 0, 266, 266, 266, 0, 0, 0, 0, 0, 266, + 0, 0, 0, 0, 0, 0, 266, 0, 268, 268, + 269, 0, 0, 268, 0, 0, 266, 0, 266, 266, + 268, 266, 266, 266, 266, 268, 0, 268, 268, 268, + 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, + 269, 269, 268, 0, 0, 0, 0, 0, 0, 0, + 89, 0, 268, 268, 0, 0, 268, 268, 268, 268, + 268, 0, 0, 270, 270, 0, 0, 270, 270, 270, + 270, 270, 270, 270, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 267, 267, 270, 0, 0, 267, 0, + 0, 0, 0, 0, 0, 267, 0, 0, 0, 267, + 267, 0, 267, 267, 267, 0, 0, 0, 0, 0, + 267, 0, 0, 0, 0, 90, 0, 267, 0, 0, + 270, 439, 443, 0, 0, 0, 0, 267, 0, 267, + 267, 0, 267, 267, 267, 267, 451, 0, 0, 0, + 278, 0, 0, 278, 0, 278, 278, 278, 278, 0, + 270, 270, 0, 0, 0, 0, 0, 462, 463, 0, + 465, 278, 278, 0, 278, 471, 0, 0, 0, 472, + 0, 473, 474, 269, 269, 0, 0, 0, 269, 0, + 478, 439, 443, 0, 0, 269, 471, 0, 0, 0, + 269, 0, 269, 269, 269, 0, 278, 0, 0, 0, + 269, 0, 0, 0, 0, 0, 0, 269, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 269, 269, 0, + 0, 269, 269, 269, 269, 269, 278, 278, 0, 279, + 0, 0, 279, 0, 279, 279, 279, 279, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, + 279, 279, 3, 279, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 0, 6, 0, 7, 8, 9, 0, + 0, 0, 0, 0, 86, 0, 0, 0, 0, 0, + 0, 87, 0, 270, 270, 279, 0, 163, 270, 0, + 0, 88, 0, 0, 0, 270, 0, 0, 0, 0, + 270, 0, 270, 270, 270, 0, 163, 0, 0, 0, + 270, 0, 0, 0, 0, 279, 279, 270, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 270, 270, 0, + 0, 270, 270, 270, 270, 270, 0, 0, 0, 0, + 0, 280, 0, 0, 280, 0, 280, 280, 280, 280, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 278, + 278, 0, 280, 280, 278, 280, 0, 0, 0, 0, + 163, 278, 163, 0, 0, 278, 278, 0, 278, 278, + 278, 0, 0, 0, 0, 0, 278, 0, 0, 0, + 0, 0, 0, 278, 0, 0, 0, 280, 0, 0, + 0, 0, 0, 278, 278, 278, 278, 278, 278, 278, + 278, 278, 0, 0, 252, 252, 0, 0, 252, 252, + 252, 252, 252, 252, 252, 0, 0, 280, 280, 0, + 0, 0, 0, 0, 0, 0, 252, 252, 0, 252, + 0, 0, 202, 0, 0, 0, 0, 0, 279, 279, + 0, 0, 0, 279, 0, 0, 0, 0, 0, 0, + 279, 200, 0, 0, 279, 279, 0, 279, 279, 279, + 0, 252, 0, 0, 0, 279, 0, 0, 0, 0, + 0, 0, 279, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 252, 252, 202, 0, 163, 0, 0, 0, 163, + 0, 0, 0, 0, 195, 0, 0, 0, 163, 163, + 0, 163, 200, 0, 0, 138, 0, 201, 0, 0, + 163, 0, 0, 0, 163, 0, 0, 0, 0, 163, + 163, 163, 163, 163, 163, 163, 163, 163, 163, 0, + 0, 0, 0, 0, 0, 163, 163, 0, 0, 202, + 280, 280, 0, 0, 0, 280, 0, 0, 0, 0, + 0, 0, 280, 0, 0, 0, 280, 280, 200, 280, + 280, 280, 0, 0, 0, 0, 138, 280, 291, 0, + 0, 0, 0, 0, 280, 0, 0, 0, 0, 0, + 0, 0, 0, 202, 280, 280, 280, 280, 280, 280, + 280, 280, 280, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 200, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 252, 252, 0, 0, 0, 252, + 0, 0, 138, 0, 309, 0, 252, 202, 0, 0, + 252, 252, 0, 252, 252, 252, 0, 0, 0, 0, + 2, 252, 0, 0, 3, 0, 200, 0, 252, 0, + 0, 0, 0, 184, 185, 0, 6, 0, 252, 252, + 252, 252, 252, 252, 252, 186, 138, 0, 363, 187, + 0, 0, 0, 0, 188, 189, 190, 191, 192, 193, + 194, 195, 196, 197, 202, 0, 0, 0, 0, 0, + 198, 199, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 0, 200, 0, 3, 0, 0, 0, 0, + 138, 0, 364, 0, 184, 185, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 0, 186, 0, 0, 0, + 290, 0, 0, 0, 0, 188, 189, 190, 191, 192, + 193, 194, 195, 196, 197, 132, 0, 0, 0, 0, + 0, 198, 199, 0, 0, 0, 0, 2, 0, 0, + 0, 3, 0, 132, 0, 0, 0, 138, 0, 411, + 184, 185, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 0, 186, 0, 0, 134, 187, 0, 0, 0, + 0, 188, 189, 190, 191, 192, 193, 194, 195, 196, + 197, 2, 0, 134, 0, 3, 0, 198, 199, 0, + 0, 0, 0, 0, 184, 185, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 0, 186, 0, 0, 89, + 187, 0, 0, 0, 0, 188, 189, 190, 191, 192, + 193, 194, 195, 196, 197, 2, 0, 0, 0, 3, + 0, 198, 199, 0, 0, 0, 0, 89, 184, 185, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, + 186, 0, 0, 0, 187, 0, 0, 0, 0, 188, + 189, 190, 191, 192, 193, 194, 195, 196, 197, 0, + 0, 0, 89, 0, 118, 198, 199, 0, 0, 0, + 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 0, 184, 185, 0, 6, 0, + 162, 0, 149, 0, 0, 0, 0, 186, 0, 0, + 0, 187, 0, 0, 0, 0, 188, 189, 190, 191, + 192, 193, 194, 195, 196, 197, 0, 0, 61, 0, + 0, 0, 198, 199, 0, 0, 0, 171, 132, 132, + 0, 0, 0, 132, 132, 0, 0, 0, 0, 0, + 132, 0, 0, 0, 0, 132, 0, 132, 132, 132, + 132, 132, 132, 0, 0, 132, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 134, 134, + 0, 0, 132, 134, 134, 0, 0, 0, 0, 0, + 134, 0, 0, 0, 0, 134, 0, 134, 134, 134, + 134, 134, 134, 0, 0, 134, 1, 2, 0, 0, + 0, 3, 0, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 134, 6, 0, 7, 8, 9, 0, 0, + 0, 0, 0, 13, 1, 2, 0, 0, 0, 3, + 87, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 117, 6, 0, 7, 8, 9, 0, 0, 0, 0, + 0, 86, 0, 0, 0, 0, 0, 0, 87, 1, + 2, 0, 0, 0, 3, 0, 0, 0, 88, 0, + 0, 5, 0, 0, 0, 0, 6, 0, 7, 8, + 9, 0, 0, 0, 0, 0, 13, 1, 2, 0, + 0, 0, 3, 87, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 117, 6, 0, 7, 8, 9, 0, + 0, 0, 0, 0, 13, 61, 61, 0, 0, 0, + 61, 161, 0, 0, 0, 0, 0, 61, 0, 0, + 0, 117, 61, 0, 61, 61, 61, 0, 0, 0, + 0, 0, 61, 0, 0, 0, 0, 0, 0, 61, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, }; - protected short yyCheck[] = new short[3868]; + protected short yyCheck[] = new short[3801]; } class yyCheck0 { - protected static final short yyCheck0 [] = { 105, - 59, 41, 46, 121, 51, 44, 59, 27, 25, 26, - 57, 60, 41, 33, 180, 32, 114, 105, 46, 100, - 59, 60, 61, 123, 54, 135, 123, 41, 52, 135, - 123, 59, 27, 123, 44, 339, 44, 301, 156, 123, - 60, 29, 91, 32, 27, 12, 44, 135, 36, 73, - 74, 105, 91, 73, 74, 41, 60, 395, 62, 308, - 309, 40, 366, 80, 62, 60, 86, 91, 92, 105, - 301, 35, 92, 37, 180, 59, 93, 60, 73, 29, - 30, 135, 61, 103, 59, 59, 36, 33, 60, 109, - 73, 80, 180, 41, 59, 399, 44, 114, 59, 135, - 266, 131, 122, 109, 93, 91, 130, 74, 96, 133, - 168, 169, 40, 123, 108, 123, 122, 455, 456, 143, - 60, 219, 460, 118, 105, 92, 180, 318, 319, 79, - 40, 125, 60, 59, 129, 99, 46, 255, 132, 123, - 86, 59, 59, 59, 180, 301, 96, 97, 123, 123, - 133, 105, 172, 59, 135, 273, 274, 267, 123, 277, - 266, 267, 123, 221, 222, 223, 172, 301, 268, 44, - 44, 268, 290, 59, 268, 268, 342, 61, 266, 267, - 44, 135, 282, 213, 268, 282, 44, 62, 62, 270, - 214, 105, 282, 44, 214, 178, 146, 123, 62, 180, - 220, 59, 219, 60, 210, 123, 123, 123, 59, 44, - 123, 309, 266, 267, 220, 301, 334, 123, 258, 258, - 44, 135, 262, 262, 44, 343, 180, 62, 346, 258, - 266, 267, 40, 262, 274, 274, 342, 123, 62, 320, - 325, 326, 62, 290, 258, 274, 289, 40, 262, 308, - 309, 271, 301, 46, 342, 308, 309, 315, 316, 317, - 274, 301, 301, 257, 308, 309, 180, 261, 61, 273, - 59, 61, 301, 44, 392, 44, 394, 91, 91, 397, - 308, 309, 306, 303, 308, 266, 267, 301, 342, 395, - 396, 62, 309, 62, 412, 413, 123, 303, 91, 303, - 304, 59, 44, 38, 410, 27, 342, 395, 396, 367, - 109, 33, 266, 267, 44, 44, 336, 59, 436, 437, - 438, 301, 410, 122, 302, 431, 432, 305, 434, 59, - 59, 455, 456, 439, 93, 61, 460, 443, 60, 445, - 446, 395, 396, 431, 432, 43, 434, 45, 454, 455, - 456, 439, 266, 267, 460, 443, 410, 445, 446, 395, - 396, 342, 386, 387, 86, 93, 454, 455, 456, 363, - 364, 301, 460, 40, 410, 40, 91, 431, 432, 41, - 434, 41, 44, 258, 44, 439, 301, 262, 342, 443, - 40, 445, 446, 59, 41, 431, 432, 44, 434, 274, - 454, 455, 456, 439, 44, 41, 460, 443, 44, 445, - 446, 405, 406, 41, 395, 396, 44, 329, 454, 455, - 456, 46, 41, 258, 460, 44, 301, 262, 342, 410, - 314, 315, 316, 317, 44, 37, 59, 321, 38, 274, - 42, 395, 396, 258, 124, 47, 94, 262, 40, 41, - 431, 432, 44, 434, 46, 60, 410, 307, 439, 274, - 306, 40, 443, 61, 445, 446, 301, 59, 60, 61, - 59, 301, 301, 454, 455, 456, 291, 431, 432, 460, - 434, 395, 396, 40, 59, 439, 301, 41, 41, 443, - 40, 445, 446, 258, 59, 59, 410, 262, 59, 91, - 454, 455, 456, 25, 26, 27, 460, 59, 301, 274, - 32, 33, 41, 59, 40, 308, 309, 431, 432, 40, - 434, 314, 315, 316, 317, 439, 291, 267, 321, 443, - 41, 445, 446, 258, 41, 267, 301, 262, 60, 41, - 454, 455, 456, 258, 41, 41, 460, 262, 0, 274, - 59, 73, 74, 258, 60, 59, 258, 262, 80, 274, - 262, 86, 301, 20, 86, 321, 322, 323, 324, 274, - 92, 93, 274, 21, 60, 73, 301, 36, 100, 37, - 303, 103, 220, 105, 327, 329, 301, 109, 301, 330, - 328, 301, 114, 101, 331, 131, 301, 37, 38, 301, - 122, 41, 42, 43, 44, 45, 257, 47, 31, 14, - 74, 134, 263, 135, -1, -1, -1, -1, 269, 59, - 60, 61, 62, -1, -1, 276, 277, 278, -1, 33, - 281, -1, -1, 284, -1, -1, 40, -1, -1, 43, - -1, 45, -1, -1, -1, -1, -1, -1, -1, -1, - 172, -1, 257, 258, 94, 59, 33, 262, 180, -1, - -1, -1, -1, 40, 269, -1, 43, -1, 45, 274, - -1, 276, 277, 278, -1, -1, -1, -1, -1, 284, - -1, -1, 59, 33, 124, 125, 291, -1, -1, -1, - 40, 41, 214, 43, -1, 45, 301, 219, 220, -1, - 33, -1, -1, -1, -1, -1, -1, 40, -1, 301, - 43, -1, 45, -1, -1, -1, 308, 309, -1, -1, - -1, -1, 314, 315, 316, 317, -1, 33, -1, 321, - -1, -1, -1, -1, 40, 41, -1, 43, -1, 45, - -1, -1, -1, -1, 266, 267, -1, -1, 270, 271, - -1, 257, 258, -1, 33, -1, 262, -1, -1, -1, - -1, 40, -1, 269, 43, -1, 45, -1, 274, -1, - 276, 277, 278, -1, -1, -1, -1, -1, 284, -1, - 59, 303, -1, -1, 33, 291, -1, 309, -1, -1, - 123, 40, 41, -1, 43, 301, 45, -1, 320, -1, - -1, 33, -1, -1, 257, -1, -1, -1, 40, 41, - 263, 43, -1, 45, 336, -1, 269, 257, 258, -1, - 342, -1, 262, 276, 277, 278, -1, -1, 281, 269, - -1, 284, -1, 273, 274, -1, 276, 277, 278, -1, - -1, -1, -1, -1, 284, -1, 33, -1, -1, -1, - -1, 291, -1, 40, -1, -1, 43, -1, 45, -1, - -1, 301, 302, 303, 304, 305, 306, 307, 308, 309, - -1, 275, 59, -1, 314, 315, 316, 317, -1, -1, - -1, 321, -1, 287, -1, -1, -1, -1, -1, 293, - 294, 295, 296, 297, 298, 299, 300, 301, 275, 33, - -1, -1, -1, -1, 308, 309, 40, 41, -1, 43, - 287, 45, -1, -1, -1, -1, 293, 294, 295, 296, - 297, 298, 299, 300, 301, 275, 33, -1, -1, -1, - -1, 308, 309, 40, 41, -1, 43, 287, 45, -1, + protected static final short yyCheck0 [] = { 10, + 11, 59, 55, 56, 42, 60, 135, 59, 40, 41, + 46, 86, 44, 66, 46, 209, 141, 92, 123, 0, + 147, 0, 20, 59, 46, 123, 91, 59, 60, 61, + 123, 156, 41, 89, 123, 301, 91, 66, 163, 44, + 44, 57, 166, 27, 416, 26, 59, 26, 20, 59, + 67, 123, 301, 60, 52, 62, 59, 110, 30, 91, + 41, 301, 41, 59, 40, 57, 47, 60, 47, 59, + 69, 138, 75, 126, 55, 56, 57, 76, 57, 95, + 52, 110, 41, 46, 60, 66, 67, 103, 67, 138, + 302, 59, 59, 305, 147, 40, 59, 126, 292, 166, + 61, 46, 119, 95, 476, 477, 162, 60, 59, 481, + 123, 103, 41, 123, 95, 44, 95, 166, 123, 123, + 104, 248, 103, 104, 103, 104, 91, 123, 131, 110, + 142, 40, 91, 123, 59, 134, 44, 59, 119, 59, + 119, 125, 209, 155, 125, 126, 125, 128, 164, 128, + 41, 59, 61, 44, 135, 123, 123, 138, 283, 151, + 209, 142, 287, 142, 138, 44, 147, 296, 160, 293, + 268, 365, 123, 91, 155, 268, 155, 282, 59, 268, + 59, 60, 61, 59, 282, 166, 242, 198, 199, 282, + 202, 207, 166, 258, 40, 248, 268, 262, 123, 46, + 46, 123, 44, 123, 138, 332, 44, 41, 60, 274, + 44, 44, 91, 41, 343, 61, 41, 87, 142, 93, + 62, 202, 362, 202, 62, 292, 293, 239, 209, 62, + 44, 155, 166, 103, 104, 209, 301, 249, 313, 250, + 251, 252, 123, 292, 293, 91, 301, 387, 62, 258, + 308, 309, 93, 262, 124, 125, 308, 309, 301, 384, + 385, 57, 243, 301, 243, 274, 273, 248, 249, 301, + 249, 67, 308, 309, 301, 209, 308, 309, 44, 332, + 420, 138, 314, 315, 316, 317, 308, 309, 44, 321, + 44, 161, 301, 59, 164, 44, 303, 304, 365, 95, + 41, 426, 427, 44, 174, 44, 62, 123, 62, 166, + 44, 292, 293, 62, 326, 296, 365, 44, 292, 293, + 59, 476, 477, 119, 268, 59, 481, 338, 339, 340, + 341, 342, 59, 344, 345, 346, 347, 348, 349, 350, + 351, 352, 353, 354, 46, 326, 43, 326, 45, 416, + 417, 332, 209, 314, 315, 316, 317, 59, 292, 293, + 321, 301, 343, 41, 431, 40, 44, 416, 417, 59, + 138, 198, 199, 243, 289, 308, 309, 388, 359, 258, + 359, 123, 431, 262, 365, 452, 453, 41, 455, 61, + 44, 365, 29, 460, 59, 274, 301, 464, 166, 466, + 467, 138, 41, 452, 453, 44, 455, 44, 475, 476, + 477, 460, 348, 349, 481, 464, 53, 466, 467, 61, + 341, 342, 301, 250, 251, 252, 475, 476, 477, 166, + 258, 365, 481, 258, 262, 292, 293, 262, 301, 301, + 77, 209, 416, 417, 59, 60, 274, 38, 258, 274, + 40, 40, 262, 40, 59, 301, 44, 431, 329, 329, + 75, 331, 308, 309, 274, 46, 59, 44, 314, 315, + 316, 317, 209, 301, 38, 321, 301, 94, 452, 453, + 258, 455, 416, 417, 262, 307, 460, 306, 154, 124, + 464, 301, 466, 467, 109, 37, 274, 431, 61, 40, + 42, 475, 476, 477, 59, 47, 258, 481, 365, 301, + 262, 338, 339, 340, 40, 59, 131, 132, 452, 453, + 186, 455, 274, 301, 292, 293, 460, 41, 41, 40, + 464, 59, 466, 467, 59, 59, 59, 407, 408, 291, + 41, 475, 476, 477, 59, 40, 40, 481, 258, 301, + 267, 41, 262, 41, 41, 292, 293, 41, 41, 416, + 417, 388, 267, 178, 274, 37, 38, 0, 0, 41, + 42, 43, 44, 45, 431, 47, 0, 0, 258, 59, + 301, 291, 262, 344, 345, 346, 347, 59, 60, 61, + 62, 301, 47, 49, 274, 452, 453, 365, 455, 119, + 48, 103, 95, 460, 33, 30, 75, 464, 76, 466, + 467, 40, 326, 249, 43, 281, 45, 257, 475, 476, + 477, 301, 94, 263, 481, 350, 352, 351, 365, 269, + 59, 297, 298, 33, 353, 301, 276, 277, 278, 354, + 40, 281, 324, 43, 284, 45, 162, 313, 416, 417, + 33, 324, 124, 125, 136, 65, 165, 40, 41, 59, + 43, 104, 45, 431, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 416, + 417, -1, -1, -1, 452, 453, -1, 455, -1, -1, + -1, 357, 460, -1, 431, -1, 464, -1, 466, 467, + 366, -1, 368, -1, -1, -1, -1, 475, 476, 477, + 33, -1, -1, 481, -1, 452, 453, 40, 455, -1, + 43, -1, 45, 460, -1, -1, -1, 464, -1, 466, + 467, -1, -1, -1, -1, -1, -1, -1, 475, 476, + 477, -1, -1, -1, 481, -1, 33, 413, -1, 415, + -1, -1, 418, 40, 41, -1, 43, -1, 45, -1, + 257, -1, -1, 33, -1, -1, 263, 433, 434, -1, + 40, -1, 269, 43, -1, 45, -1, -1, -1, 276, + 277, 278, -1, 280, 281, 257, 258, 284, -1, 59, + 262, 457, 458, 459, -1, -1, -1, 269, -1, -1, + 123, 273, 274, 33, 276, 277, 278, -1, -1, -1, + 40, 41, 284, 43, -1, 45, -1, -1, -1, 291, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 301, + 302, 303, 304, 305, 306, 307, 308, 309, -1, -1, + 33, -1, 314, 315, 316, 317, 275, 40, 41, 321, + 43, -1, 45, -1, -1, -1, -1, -1, 287, -1, + -1, -1, -1, -1, 293, 294, 295, 296, 297, 298, + 299, 300, 301, -1, -1, 275, 33, -1, -1, 308, + 309, -1, -1, 40, -1, -1, 43, 287, 45, -1, -1, -1, 275, 293, 294, 295, 296, 297, 298, 299, - 300, 301, -1, -1, 287, -1, -1, -1, 308, 309, - 293, 294, 295, 296, 297, 298, 299, 300, 301, 275, + 300, 301, 59, -1, 287, -1, -1, -1, 308, 309, + 293, 294, 295, 296, 297, 298, 299, 300, 301, -1, 33, -1, -1, -1, -1, 308, 309, 40, 41, -1, - 43, 287, 45, -1, -1, -1, -1, 293, 294, 295, - 296, 297, 298, 299, 300, 301, 275, 33, -1, -1, + 43, -1, 45, -1, -1, -1, -1, 33, -1, -1, + -1, -1, -1, -1, 40, 41, -1, 43, -1, 45, + -1, -1, 275, -1, -1, 33, -1, -1, -1, -1, + -1, -1, 40, -1, 287, 43, -1, 45, -1, -1, + 293, 294, 295, 296, 297, 298, 299, 300, 301, -1, + -1, -1, 33, -1, -1, 308, 309, -1, 275, 40, + 41, -1, 43, -1, 45, -1, -1, -1, -1, -1, }; } class yyCheck1 { - protected static final short yyCheck1 [] = { -1, - -1, 308, 309, 40, 41, -1, 43, 287, 45, -1, - -1, -1, -1, 293, 294, 295, 296, 297, 298, 299, - 300, 301, -1, 33, -1, 275, -1, -1, 308, 309, - 40, -1, -1, 43, -1, 45, -1, 287, -1, -1, - -1, -1, 275, 293, 294, 295, 296, 297, 298, 299, - 300, 301, -1, -1, 287, -1, -1, -1, 308, 309, - 293, 294, 295, 296, 297, 298, 299, 300, 301, -1, - 33, -1, -1, -1, -1, 308, 309, 40, -1, -1, - 43, -1, 45, -1, -1, -1, -1, 275, -1, -1, + protected static final short yyCheck1 [] = { 287, + -1, -1, -1, -1, 275, 293, 294, 295, 296, 297, + 298, 299, 300, 301, -1, -1, 287, -1, -1, -1, + 308, 309, 293, 294, 295, 296, 297, 298, 299, 300, + 301, -1, -1, 33, -1, -1, -1, 308, 309, -1, + 40, 41, -1, 43, 275, 45, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 287, -1, -1, -1, + -1, -1, 293, 294, 295, 296, 297, 298, 299, 300, + 301, -1, 33, -1, -1, -1, -1, 308, 309, 40, + -1, 275, 43, -1, 45, -1, -1, -1, -1, -1, + -1, -1, -1, 287, -1, -1, -1, -1, -1, 293, + 294, 295, 296, 297, 298, 299, 300, 301, -1, -1, + -1, -1, -1, -1, 308, 309, -1, 275, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 287, -1, -1, -1, -1, -1, 293, 294, 295, 296, 297, 298, 299, 300, 301, -1, -1, -1, -1, -1, -1, - 308, 309, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 40, -1, - 275, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 287, -1, -1, -1, -1, 59, 293, 294, - 295, 296, 297, 298, 299, 300, 301, 275, -1, -1, - -1, -1, -1, 308, 309, -1, -1, -1, -1, 287, - -1, -1, -1, -1, -1, 293, 294, 295, 296, 297, - 298, 299, 300, 301, -1, -1, -1, -1, -1, -1, - 308, 309, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 275, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 123, -1, 287, -1, -1, -1, -1, -1, 293, - 294, 295, 296, 297, 298, 299, 300, 301, 275, -1, - -1, -1, -1, -1, 308, 309, -1, -1, -1, -1, - 287, -1, -1, -1, -1, -1, 293, 294, 295, 296, - 297, 298, 299, 300, 301, 275, -1, -1, -1, -1, - -1, 308, 309, -1, -1, -1, -1, 287, -1, -1, - -1, -1, -1, 293, 294, 295, 296, 297, 298, 299, - 300, 301, 59, 60, -1, -1, -1, -1, 308, 309, - 37, 38, -1, 40, 41, 42, 43, 44, 45, 46, - 47, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 59, -1, 287, 62, -1, -1, -1, -1, + 308, 309, 37, 38, -1, -1, 41, 42, 43, 44, + 45, 275, 47, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 287, 59, 60, -1, 62, 275, 293, + 294, 295, 296, 297, 298, 299, 300, 301, -1, -1, + 287, -1, -1, -1, 308, 309, 293, 294, 295, 296, + 297, 298, 299, 300, 301, -1, -1, 40, 287, 94, + -1, 308, 309, -1, 293, 294, 295, 296, 297, 298, + 299, 300, 301, 275, -1, -1, 59, -1, -1, 308, + 309, -1, -1, -1, -1, 287, -1, -1, -1, 124, + 125, 293, 294, 295, 296, 297, 298, 299, 300, 301, + -1, -1, -1, -1, -1, -1, 308, 309, 37, 38, + -1, 40, 41, 42, 43, 44, 45, 46, 47, -1, + -1, -1, -1, -1, -1, 275, -1, -1, -1, -1, + 59, -1, -1, 62, -1, -1, -1, 287, -1, -1, + 123, -1, -1, 293, 294, 295, 296, 297, 298, 299, + 300, 301, -1, -1, 257, -1, -1, -1, 308, 309, + 263, -1, 91, -1, 275, 94, 269, -1, -1, -1, + -1, -1, -1, 276, 277, 278, 287, -1, 281, -1, + -1, 284, 293, 294, 295, 296, 297, 298, 299, 300, + 301, -1, -1, -1, 123, 124, 125, 308, 309, -1, + -1, -1, -1, 37, -1, -1, -1, 41, 42, 43, + 44, 45, 46, 47, -1, -1, -1, -1, -1, -1, + -1, -1, 257, 258, -1, 59, 60, 262, 62, -1, + -1, -1, -1, -1, 269, -1, -1, -1, 273, 274, + -1, 276, 277, 278, -1, -1, -1, -1, -1, 284, + -1, -1, -1, -1, -1, -1, 291, -1, -1, -1, + 94, -1, -1, -1, -1, -1, 301, 302, 303, 304, + 305, 306, 307, 308, 309, -1, 37, 38, -1, -1, + 41, 42, 43, 44, 45, 46, 47, -1, 271, 272, + 124, 125, -1, -1, -1, -1, -1, -1, 59, 60, + 283, 62, -1, -1, 287, -1, -1, -1, -1, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, -1, - -1, -1, -1, -1, -1, 308, 309, -1, -1, -1, - -1, -1, -1, -1, 91, 37, 38, 94, 125, 41, - 42, 43, 44, 45, -1, 47, -1, -1, -1, 271, - 272, -1, -1, -1, -1, -1, -1, 59, 60, -1, - 62, 283, -1, -1, -1, 287, 123, 124, 125, -1, - 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, - -1, -1, -1, -1, -1, -1, 308, 309, -1, 37, - -1, -1, 94, 41, 42, 43, 44, 45, 46, 47, + -1, -1, -1, -1, -1, 308, 309, -1, 257, 258, + -1, -1, -1, 262, 263, 40, -1, -1, -1, -1, + 269, -1, -1, -1, 273, 274, -1, 276, 277, 278, + 279, 280, 281, 282, 59, 284, -1, -1, -1, -1, + -1, -1, 291, 124, 125, -1, -1, -1, -1, -1, + -1, -1, 301, 302, 303, 304, 305, 306, 307, 308, + 309, -1, -1, -1, -1, -1, -1, -1, 37, 38, + -1, -1, 41, 42, 43, 44, 45, 46, 47, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 59, 60, -1, 62, -1, -1, -1, -1, -1, - -1, -1, 124, 125, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 37, 38, -1, 94, 41, 42, 43, - 44, 45, 46, 47, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, - 257, 258, -1, -1, -1, 262, 124, 125, -1, -1, - -1, -1, 269, -1, -1, -1, -1, 274, -1, 276, - 277, 278, -1, -1, -1, -1, -1, 284, -1, -1, - 257, 258, -1, -1, 291, 262, -1, -1, -1, -1, - -1, -1, 269, -1, 301, -1, 273, 274, -1, 276, - 277, 278, -1, -1, -1, 282, -1, 284, -1, -1, - 124, 125, -1, -1, 291, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 301, 302, 303, 304, 305, 306, - 307, 308, 309, -1, -1, 257, 258, -1, -1, -1, - 262, -1, -1, -1, -1, -1, -1, 269, -1, -1, - -1, 273, 274, -1, 276, 277, 278, -1, 168, 169, - -1, -1, 284, -1, -1, -1, -1, -1, -1, 291, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 301, - 302, 303, 304, 305, 306, 307, 308, 309, 40, 257, - 258, -1, -1, -1, 262, -1, -1, -1, -1, -1, - -1, 269, -1, -1, -1, 273, 274, 59, 276, 277, - 278, 221, 222, 223, -1, -1, 284, -1, -1, -1, - -1, -1, -1, 291, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 301, 302, 303, 304, 305, 306, 307, - 308, 309, -1, 257, 258, -1, -1, -1, 262, -1, + 59, 60, -1, 62, -1, -1, -1, -1, 123, -1, + -1, -1, -1, 257, 258, -1, -1, -1, 262, -1, -1, -1, -1, -1, -1, 269, -1, -1, -1, 273, - 274, -1, 276, 277, 278, -1, -1, -1, -1, -1, - 284, 123, -1, -1, 37, 38, -1, 291, 41, 42, - 43, 44, 45, 46, 47, -1, -1, 301, 302, 303, - 304, 305, 306, 307, 308, 309, 59, 60, -1, 62, - -1, -1, -1, -1, -1, 315, 316, 317, 318, 319, - -1, 321, 322, 323, 324, 325, 326, 327, 328, 329, - 330, 331, -1, -1, -1, -1, -1, -1, 37, 38, - -1, 94, 41, 42, 43, 44, 45, 46, 47, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 59, 60, -1, 62, -1, -1, -1, 367, -1, -1, - -1, -1, 125, -1, -1, -1, 37, 38, -1, -1, - 41, 42, 43, 44, 45, 46, 47, -1, -1, -1, - -1, -1, -1, -1, -1, 94, -1, -1, 59, 60, - -1, 62, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 37, 38, -1, -1, 41, 42, 43, - 44, 45, -1, 47, -1, 124, 125, -1, -1, 271, - 272, -1, -1, 94, -1, 59, 60, -1, 62, -1, - -1, 283, -1, -1, -1, 287, -1, -1, -1, -1, - 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, - -1, -1, -1, 124, 125, -1, 308, 309, -1, -1, - 94, -1, -1, 37, -1, -1, -1, 41, 42, 43, - 44, 45, 46, 47, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, - 124, 125, -1, -1, 257, 258, -1, -1, -1, 262, - -1, -1, -1, -1, -1, -1, 269, -1, -1, -1, - 273, 274, -1, 276, 277, 278, -1, -1, -1, -1, - 94, 284, -1, -1, -1, -1, -1, -1, 291, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 301, 302, - 303, 304, 305, 306, 307, 308, 309, -1, 257, 258, - 124, 125, -1, 262, -1, -1, -1, -1, -1, -1, + 274, -1, 276, 277, 278, 94, -1, -1, -1, -1, + 284, -1, -1, -1, -1, -1, -1, 291, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 301, 302, 303, + 304, 305, 306, 307, 308, 309, 125, 37, 38, -1, + -1, 41, 42, 43, 44, 45, 46, 47, -1, -1, + -1, -1, -1, -1, -1, -1, 257, 258, -1, 59, + 60, 262, 62, -1, -1, -1, -1, -1, 269, -1, + -1, -1, 273, 274, -1, 276, 277, 278, -1, -1, + -1, -1, -1, 284, -1, -1, -1, -1, -1, -1, + 291, -1, -1, -1, 94, -1, -1, -1, -1, -1, + 301, 302, 303, 304, 305, 306, 307, 308, 309, 37, + 38, -1, -1, 41, 42, 43, 44, 45, 46, 47, + -1, -1, -1, -1, 124, 125, 271, 272, -1, -1, + -1, 59, 60, -1, 62, -1, -1, -1, 283, -1, + -1, -1, 287, -1, -1, -1, -1, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 301, -1, -1, -1, + -1, -1, -1, 308, 309, -1, 94, -1, 257, 258, + -1, -1, -1, 262, -1, -1, -1, -1, -1, -1, + 269, -1, -1, -1, 273, 274, -1, 276, 277, 278, + -1, -1, -1, -1, -1, 284, 124, 125, -1, 37, + 38, -1, 291, 41, 42, 43, 44, 45, -1, 47, + -1, -1, 301, 302, 303, 304, 305, 306, 307, 308, + 309, 59, 60, -1, 62, -1, 257, 258, -1, -1, + -1, 262, 263, -1, -1, -1, -1, -1, 269, -1, + -1, -1, -1, 274, -1, 276, 277, 278, 279, 280, + 281, -1, -1, 284, -1, -1, 94, 257, 258, -1, + -1, -1, 262, -1, -1, -1, -1, -1, -1, 269, + 301, -1, -1, 273, 274, -1, 276, 277, 278, -1, + -1, -1, -1, -1, 284, -1, 124, 125, -1, -1, + -1, 291, 59, 60, -1, -1, -1, -1, -1, -1, + -1, 301, 302, 303, 304, 305, 306, -1, 308, 309, + 37, -1, -1, -1, 41, 42, 43, 44, 45, 46, + 47, -1, -1, -1, -1, -1, -1, -1, -1, 257, + 258, -1, 59, 60, 262, 62, -1, -1, -1, -1, + -1, 269, -1, -1, -1, 273, 274, -1, 276, 277, + 278, -1, -1, -1, -1, -1, 284, -1, 125, -1, + -1, -1, -1, 291, -1, -1, -1, 94, -1, -1, + -1, -1, -1, 301, 302, 303, 304, 305, -1, 307, + 308, 309, -1, -1, -1, 37, 38, -1, -1, 41, + 42, 43, 44, 45, 46, 47, -1, 124, 125, -1, + -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, }; } class yyCheck2 { - protected static final short yyCheck2 [] = { 269, - -1, -1, -1, 273, 274, -1, 276, 277, 278, -1, - -1, -1, -1, -1, 284, -1, -1, -1, -1, -1, - -1, 291, -1, -1, -1, 257, 258, -1, -1, -1, - 262, 301, 302, 303, 304, 305, 306, 269, 308, 309, - -1, 273, 274, -1, 276, 277, 278, -1, -1, -1, - -1, -1, 284, -1, -1, -1, -1, -1, -1, 291, - -1, -1, 257, 258, -1, -1, -1, 262, -1, 301, - 302, 303, 304, 305, 269, 307, 308, 309, 273, 274, - -1, 276, 277, 278, -1, -1, -1, -1, -1, 284, - -1, -1, -1, 37, 38, -1, 291, 41, 42, 43, - 44, 45, 46, 47, -1, -1, 301, 302, 303, 304, - 305, 306, 307, 308, 309, 59, 60, -1, 62, -1, - -1, -1, 257, 258, -1, -1, -1, 262, -1, -1, - -1, -1, -1, -1, 269, -1, -1, -1, 273, 274, - -1, 276, 277, 278, -1, -1, -1, -1, -1, 284, - -1, -1, -1, 37, 38, -1, 291, 41, 42, 43, - 44, 45, 46, 47, -1, -1, 301, 302, 303, 304, - 305, 306, 307, 308, 309, 59, 60, -1, 62, -1, - 124, 125, -1, 395, 396, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 410, -1, - -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, - 94, 41, 42, 43, 44, 45, 46, 47, -1, 431, - 432, -1, 434, -1, -1, -1, -1, 439, -1, 59, - 60, 443, 62, 445, 446, -1, -1, -1, -1, -1, - -1, 125, 454, 455, 456, -1, -1, -1, 460, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 37, 38, 94, -1, 41, 42, -1, 44, - -1, 46, 47, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 59, 60, -1, 62, -1, -1, - -1, -1, -1, -1, 124, 125, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 257, 258, -1, -1, -1, 262, 94, - -1, -1, -1, -1, -1, 269, -1, -1, -1, 273, - 274, -1, 276, 277, 278, -1, -1, -1, -1, -1, - 284, -1, -1, -1, -1, -1, -1, 291, -1, 124, - 125, -1, -1, -1, -1, -1, -1, 301, 302, 303, - 304, 305, 306, 307, 308, 309, -1, -1, -1, -1, - -1, -1, -1, 257, 258, -1, -1, -1, 262, -1, - -1, -1, -1, -1, -1, 269, -1, -1, -1, 273, - 274, -1, 276, 277, 278, -1, -1, -1, -1, -1, - 284, -1, -1, -1, -1, -1, -1, 291, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 301, 302, 303, - 304, 305, 306, 307, 308, 309, -1, 257, 258, -1, - -1, -1, 262, -1, -1, -1, -1, -1, -1, 269, - -1, -1, -1, 273, 274, -1, 276, 277, 278, -1, - -1, -1, -1, -1, 284, -1, -1, -1, 37, 38, - -1, 291, 41, 42, 43, 44, 45, 46, 47, -1, - -1, 301, 302, 303, 304, 305, 306, -1, 308, 309, - 59, -1, 257, 258, -1, -1, -1, 262, -1, -1, - -1, -1, -1, -1, 269, -1, -1, -1, 273, 274, - -1, 276, 277, 278, -1, -1, -1, -1, -1, 284, - -1, -1, -1, 37, 38, 94, 291, 41, 42, 43, - 44, 45, 46, 47, -1, -1, 301, 302, 303, 304, - 305, 306, 307, 308, 309, 59, 60, -1, 62, -1, - -1, -1, -1, -1, -1, 124, 125, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, - 94, 41, 42, 43, 44, 45, 46, 47, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, - 60, -1, 62, -1, -1, -1, -1, -1, -1, -1, - 124, 125, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 94, -1, -1, 37, 38, -1, - -1, 41, 42, 43, 44, 45, 46, 47, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, - -1, -1, -1, -1, 124, 125, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + protected static final short yyCheck2 [] = { 62, -1, -1, -1, -1, -1, -1, -1, -1, 257, 258, - -1, -1, -1, 262, 94, -1, -1, -1, -1, -1, - 269, -1, -1, -1, -1, 274, -1, 276, 277, 278, + -1, -1, -1, 262, -1, -1, -1, -1, -1, -1, + 269, -1, -1, -1, 273, 274, -1, 276, 277, 278, -1, -1, -1, -1, -1, 284, -1, -1, -1, -1, - -1, -1, 291, -1, 124, 125, -1, -1, -1, -1, - -1, -1, 301, 302, -1, -1, 305, 306, 307, 308, - 309, -1, -1, 257, 258, -1, -1, -1, 262, -1, - -1, -1, -1, -1, -1, 269, -1, -1, -1, 273, - 274, -1, 276, 277, 278, -1, -1, -1, -1, -1, - 284, -1, -1, -1, -1, -1, -1, 291, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 301, -1, 303, - 304, -1, 306, 307, 308, 309, -1, 257, 258, -1, - -1, -1, 262, -1, -1, -1, -1, -1, -1, 269, - -1, -1, -1, 273, 274, -1, 276, 277, 278, -1, - -1, -1, -1, -1, 284, -1, -1, -1, 37, 38, - -1, 291, 41, 42, 43, 44, 45, 46, 47, -1, - -1, 301, -1, 303, 304, -1, 306, 307, 308, 309, - 59, -1, -1, -1, -1, -1, -1, 257, 258, -1, - -1, -1, 262, -1, -1, -1, -1, -1, -1, 269, - -1, -1, -1, -1, 274, -1, 276, 277, 278, -1, - -1, -1, -1, -1, 284, 94, -1, -1, -1, 38, - -1, 291, 41, -1, 43, 44, 45, 46, -1, -1, - -1, 301, 302, -1, -1, 305, 306, 307, 308, 309, - 59, 60, -1, 62, -1, 124, 125, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 38, -1, 94, 41, -1, 43, 44, - 45, 46, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 59, 60, -1, 62, -1, -1, - -1, -1, -1, -1, -1, 124, 125, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 38, 94, - -1, 41, -1, 43, 44, 45, 46, -1, -1, -1, + -1, -1, 291, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 301, 302, 303, 304, 305, 306, 307, 308, + 309, 124, 125, -1, 37, 38, -1, -1, 41, 42, + 43, 44, 45, 46, 47, -1, -1, -1, -1, 257, + 258, -1, -1, -1, 262, -1, 59, 60, -1, 62, + -1, 269, -1, -1, -1, -1, 274, -1, 276, 277, + 278, -1, -1, -1, -1, -1, 284, -1, -1, -1, + -1, -1, -1, 291, -1, -1, -1, -1, -1, 257, + 258, 94, -1, 301, 262, -1, -1, -1, -1, -1, + -1, 269, -1, -1, -1, 273, 274, -1, 276, 277, + 278, -1, -1, -1, -1, -1, 284, -1, -1, -1, + -1, -1, 125, 291, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 301, 302, 303, 304, 305, 306, 307, + 308, 309, -1, -1, -1, 37, 38, -1, -1, 41, + 42, 43, 44, 45, 46, 47, -1, -1, -1, -1, + -1, -1, -1, -1, 257, 258, -1, 59, 60, 262, + 62, -1, -1, -1, -1, -1, 269, -1, -1, -1, + 273, 274, -1, 276, 277, 278, -1, -1, -1, -1, + -1, 284, -1, -1, -1, -1, -1, -1, 291, -1, + -1, -1, 94, -1, -1, -1, -1, -1, 301, 302, + 303, 304, 305, 306, 307, 308, 309, -1, -1, -1, + 37, 38, -1, -1, 41, 42, -1, 44, -1, 46, + 47, -1, 124, 125, -1, -1, -1, -1, -1, -1, + -1, -1, 59, 60, -1, 62, -1, -1, -1, -1, + -1, -1, -1, -1, 257, 258, -1, -1, -1, 262, + -1, -1, -1, -1, -1, -1, 269, -1, -1, -1, + 273, 274, -1, 276, 277, 278, -1, 94, -1, -1, + -1, 284, -1, -1, -1, -1, -1, -1, 291, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 301, 302, + 303, 304, 305, 306, 307, 308, 309, 124, 125, -1, + 37, 38, -1, -1, 41, 42, 43, 44, 45, 46, + 47, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 59, 60, -1, 62, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 37, 38, -1, -1, + 41, 42, 43, 44, 45, 46, 47, -1, -1, -1, + -1, -1, -1, -1, -1, 257, 258, 94, 59, -1, + 262, -1, -1, -1, -1, -1, -1, 269, -1, -1, + -1, 273, 274, -1, 276, 277, 278, -1, -1, -1, + -1, -1, 284, -1, -1, -1, -1, 124, 125, 291, + -1, -1, -1, 94, -1, -1, -1, -1, -1, 301, + 302, 303, 304, 305, 306, -1, 308, 309, -1, -1, + -1, 37, 38, -1, -1, 41, 42, 43, 44, 45, + 46, 47, -1, 124, 125, -1, -1, -1, -1, -1, + 257, 258, -1, 59, 60, 262, 62, -1, -1, -1, + -1, -1, 269, -1, -1, -1, 273, 274, -1, 276, + 277, 278, -1, -1, -1, -1, -1, 284, -1, -1, + -1, -1, -1, -1, 291, -1, -1, -1, 94, -1, + -1, -1, -1, -1, 301, 302, 303, 304, 305, 306, + 307, 308, 309, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 124, 125, + -1, 37, 38, -1, -1, 41, 42, 43, 44, 45, + 46, 47, -1, -1, -1, -1, -1, -1, -1, -1, + 257, 258, -1, 59, -1, 262, -1, -1, -1, -1, + -1, -1, 269, -1, -1, -1, 273, 274, -1, 276, + 277, 278, -1, -1, -1, -1, -1, 284, -1, -1, + -1, -1, -1, -1, 291, -1, 257, 258, 94, -1, + -1, 262, -1, -1, 301, -1, 303, 304, 269, 306, + 307, 308, 309, 274, -1, 276, 277, 278, -1, -1, + -1, -1, -1, 284, -1, -1, -1, -1, 124, 125, + 291, -1, -1, -1, -1, -1, -1, -1, 60, -1, + 301, 302, -1, -1, 305, 306, 307, 308, 309, -1, + -1, 37, 38, -1, -1, 41, 42, 43, 44, 45, + 46, 47, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 257, 258, 59, -1, -1, 262, -1, -1, -1, + -1, -1, -1, 269, -1, -1, -1, 273, 274, -1, + 276, 277, 278, -1, -1, -1, -1, -1, 284, -1, + -1, -1, -1, 125, -1, 291, -1, -1, 94, 416, + 417, -1, -1, -1, -1, 301, -1, 303, 304, -1, + 306, 307, 308, 309, 431, -1, -1, -1, 38, -1, + -1, 41, -1, 43, 44, 45, 46, -1, 124, 125, + -1, -1, -1, -1, -1, 452, 453, -1, 455, 59, + 60, -1, 62, 460, -1, -1, -1, 464, -1, 466, + 467, 257, 258, -1, -1, -1, 262, -1, 475, 476, + 477, -1, -1, 269, 481, -1, -1, -1, 274, -1, + 276, 277, 278, -1, 94, -1, -1, -1, 284, -1, + -1, -1, -1, -1, -1, 291, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 301, 302, -1, -1, 305, + 306, 307, 308, 309, 124, 125, -1, 38, -1, -1, + 41, -1, 43, 44, 45, 46, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 257, 258, -1, 59, 60, + 262, 62, -1, -1, -1, -1, -1, 269, -1, -1, + -1, -1, 274, -1, 276, 277, 278, -1, -1, -1, + -1, -1, 284, -1, -1, -1, -1, -1, -1, 291, + -1, 257, 258, 94, -1, 40, 262, -1, -1, 301, + -1, -1, -1, 269, -1, -1, -1, -1, 274, -1, + 276, 277, 278, -1, 59, -1, -1, -1, 284, -1, + -1, -1, -1, 124, 125, 291, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 301, 302, -1, -1, 305, + 306, 307, 308, 309, -1, -1, -1, -1, -1, 38, + -1, -1, 41, -1, 43, 44, 45, 46, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 257, 258, -1, + 59, 60, 262, 62, -1, -1, -1, -1, 123, 269, + 125, -1, -1, 273, 274, -1, 276, 277, 278, -1, + -1, -1, -1, -1, 284, -1, -1, -1, -1, -1, + -1, 291, -1, -1, -1, 94, -1, -1, -1, -1, + -1, 301, 302, 303, 304, 305, 306, 307, 308, 309, }; } class yyCheck3 { protected static final short yyCheck3 [] = { -1, - -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, - -1, 62, -1, -1, -1, -1, -1, -1, 124, 125, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 257, 258, -1, - -1, -1, 262, 94, -1, -1, -1, -1, -1, 269, - 40, -1, -1, -1, 274, -1, 276, 277, 278, -1, - -1, -1, -1, -1, 284, -1, -1, -1, -1, 59, - -1, 291, -1, 124, 125, -1, -1, -1, -1, -1, - -1, 301, 302, -1, -1, 305, 306, 307, 308, 309, - -1, -1, -1, -1, -1, -1, -1, 257, 258, -1, - -1, -1, 262, -1, 40, -1, -1, -1, -1, 269, - -1, -1, -1, 273, 274, -1, 276, 277, 278, -1, - -1, -1, -1, 59, 284, -1, -1, -1, -1, -1, - -1, 291, -1, 123, -1, 125, -1, -1, -1, -1, - -1, 301, 302, 303, 304, 305, 306, 307, 308, 309, - -1, 257, 258, -1, -1, -1, 262, -1, -1, -1, - -1, -1, -1, 269, -1, -1, -1, 273, 274, -1, - 276, 277, 278, -1, -1, -1, -1, -1, 284, -1, - -1, -1, -1, -1, -1, 291, 40, 123, -1, 125, - -1, -1, -1, -1, -1, 301, 302, 303, 304, 305, - 306, 307, 308, 309, -1, 59, 257, 258, -1, -1, - -1, 262, -1, -1, -1, -1, -1, -1, 269, -1, - -1, -1, 273, 274, -1, 276, 277, 278, -1, -1, - -1, -1, -1, 284, -1, -1, -1, 37, 38, -1, - 291, 41, 42, 43, 44, 45, 46, 47, -1, -1, - 301, 302, 303, 304, 305, 306, 307, 308, 309, 59, - 60, -1, 62, -1, -1, -1, -1, -1, 258, 123, - -1, 125, 262, -1, -1, -1, -1, 267, -1, -1, - -1, 271, 272, -1, 274, -1, -1, -1, -1, -1, - -1, -1, -1, 283, 94, 40, -1, 287, -1, -1, - -1, -1, 292, 293, 294, 295, 296, 297, 298, 299, - 300, 301, -1, -1, 59, -1, -1, -1, 308, 309, - -1, -1, 258, -1, 124, 125, 262, -1, -1, -1, - -1, -1, -1, -1, -1, 271, 272, -1, 274, -1, - -1, -1, -1, -1, -1, -1, -1, 283, -1, 40, + -1, 37, 38, -1, -1, 41, 42, 43, 44, 45, + 46, 47, -1, -1, 124, 125, -1, -1, -1, -1, + -1, -1, -1, 59, 60, -1, 62, -1, -1, 40, + -1, -1, -1, -1, -1, 257, 258, -1, -1, -1, + 262, -1, -1, -1, -1, -1, -1, 269, 59, -1, + -1, 273, 274, -1, 276, 277, 278, -1, 94, -1, + -1, -1, 284, -1, -1, -1, -1, -1, -1, 291, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 301, + 302, 303, 304, 305, 306, 307, 308, 309, 124, 125, + 40, -1, 258, -1, -1, -1, 262, -1, -1, -1, + -1, 267, -1, -1, -1, 271, 272, -1, 274, 59, + -1, -1, 123, -1, 125, -1, -1, 283, -1, -1, -1, 287, -1, -1, -1, -1, 292, 293, 294, 295, - 296, 297, 298, 299, 300, 301, -1, -1, 59, -1, - -1, -1, 308, 309, -1, -1, -1, -1, 123, -1, - 125, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 40, -1, -1, - -1, -1, -1, -1, 258, -1, -1, -1, 262, -1, - -1, -1, -1, -1, -1, -1, 59, 271, 272, -1, - 274, -1, -1, -1, -1, -1, -1, -1, -1, 283, - -1, -1, 123, 287, 125, -1, -1, -1, 292, 293, - 294, 295, 296, 297, 298, 299, 300, 301, -1, 40, - -1, -1, -1, -1, 308, 309, -1, 257, 258, -1, - -1, -1, 262, -1, -1, -1, -1, -1, 59, 269, - -1, -1, -1, 273, 274, -1, 276, 277, 278, -1, - 123, -1, 125, -1, 284, -1, -1, -1, -1, -1, + 296, 297, 298, 299, 300, 301, -1, -1, -1, -1, + -1, -1, 308, 309, -1, -1, 40, 257, 258, -1, + -1, -1, 262, -1, -1, -1, -1, -1, -1, 269, + -1, -1, -1, 273, 274, 59, 276, 277, 278, -1, + -1, -1, -1, 123, 284, 125, -1, -1, -1, -1, -1, 291, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 301, 302, 303, 304, 305, 306, 307, -1, -1, - -1, -1, -1, 258, 60, -1, -1, 262, -1, -1, - -1, -1, -1, -1, -1, -1, 271, 272, -1, 274, - -1, -1, 123, -1, 125, -1, -1, -1, 283, -1, - -1, -1, 287, -1, -1, -1, -1, 292, 293, 294, - 295, 296, 297, 298, 299, 300, 301, -1, -1, 60, - -1, -1, -1, 308, 309, -1, -1, 258, -1, -1, - -1, 262, -1, -1, -1, -1, -1, -1, -1, 125, - 271, 272, -1, 274, -1, -1, -1, -1, -1, -1, - -1, -1, 283, -1, 60, -1, 287, -1, -1, -1, + 40, 301, 302, 303, 304, 305, 306, 307, 308, 309, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 257, 258, -1, -1, -1, 262, -1, -1, 123, + -1, 125, -1, 269, 40, -1, -1, 273, 274, -1, + 276, 277, 278, -1, -1, -1, -1, 258, 284, -1, + -1, 262, -1, 59, -1, 291, -1, -1, -1, -1, + 271, 272, -1, 274, -1, 301, 302, 303, 304, 305, + 306, 307, 283, 123, -1, 125, 287, -1, -1, -1, -1, 292, 293, 294, 295, 296, 297, 298, 299, 300, - 301, -1, -1, -1, -1, 258, -1, 308, 309, 262, - -1, -1, 60, -1, 125, -1, -1, -1, 271, 272, - -1, 274, -1, -1, -1, -1, -1, -1, -1, -1, - 283, -1, -1, -1, 287, -1, -1, -1, -1, 292, - 293, 294, 295, 296, 297, 298, 299, 300, 301, 125, - -1, -1, -1, -1, -1, 308, 309, 258, -1, -1, - -1, 262, -1, -1, -1, -1, -1, -1, -1, -1, - 271, 272, -1, 274, -1, -1, -1, 125, -1, -1, - -1, -1, 283, -1, -1, -1, 287, -1, -1, -1, - -1, 292, 293, 294, 295, 296, 297, 298, 299, 300, - 301, 257, 258, -1, -1, -1, 262, 308, 309, -1, - -1, -1, -1, 269, -1, -1, -1, -1, 274, -1, + 301, 40, -1, -1, -1, -1, -1, 308, 309, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 258, -1, + 59, -1, 262, -1, -1, -1, -1, 123, -1, 125, + -1, 271, 272, -1, 274, -1, -1, -1, -1, -1, + -1, -1, -1, 283, -1, -1, -1, 287, -1, -1, + -1, -1, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 301, 44, -1, -1, -1, -1, -1, 308, 309, + -1, -1, -1, -1, 258, -1, -1, -1, 262, -1, + 62, -1, -1, -1, 123, -1, 125, 271, 272, -1, + 274, -1, -1, -1, -1, -1, -1, -1, -1, 283, + -1, -1, 44, 287, -1, -1, -1, -1, 292, 293, + 294, 295, 296, 297, 298, 299, 300, 301, 258, -1, + 62, -1, 262, -1, 308, 309, -1, -1, -1, -1, + -1, 271, 272, -1, 274, -1, -1, -1, -1, -1, + -1, -1, -1, 283, -1, -1, 60, 287, -1, -1, + -1, -1, 292, 293, 294, 295, 296, 297, 298, 299, + 300, 301, 258, -1, -1, -1, 262, -1, 308, 309, + -1, -1, -1, -1, 60, 271, 272, -1, 274, -1, + -1, -1, -1, -1, -1, -1, -1, 283, -1, -1, + -1, 287, -1, -1, -1, -1, 292, 293, 294, 295, + 296, 297, 298, 299, 300, 301, -1, -1, -1, 60, + -1, 125, 308, 309, -1, -1, -1, -1, -1, 258, + -1, -1, -1, 262, -1, -1, -1, -1, -1, -1, + -1, -1, 271, 272, -1, 274, -1, 60, -1, 125, + -1, -1, -1, -1, 283, -1, -1, -1, 287, -1, + -1, -1, -1, 292, 293, 294, 295, 296, 297, 298, + 299, 300, 301, -1, -1, 60, -1, -1, -1, 308, + 309, -1, -1, -1, 125, 257, 258, -1, -1, -1, + 262, 263, -1, -1, -1, -1, -1, 269, -1, -1, + -1, -1, 274, -1, 276, 277, 278, 279, 280, 281, + -1, -1, 284, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 257, 258, -1, -1, 301, + 262, 263, -1, -1, -1, -1, -1, 269, -1, -1, + -1, -1, 274, -1, 276, 277, 278, 279, 280, 281, + -1, -1, 284, 257, 258, -1, -1, -1, 262, -1, + -1, -1, -1, -1, -1, 269, -1, -1, -1, 301, + 274, -1, 276, 277, 278, -1, -1, -1, -1, -1, + 284, 257, 258, -1, -1, -1, 262, 291, -1, -1, + -1, -1, -1, 269, -1, -1, -1, 301, 274, -1, 276, 277, 278, -1, -1, -1, -1, -1, 284, -1, - -1, -1, -1, -1, -1, 291, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 301, 257, 258, -1, -1, - -1, 262, -1, -1, -1, -1, -1, -1, 269, -1, + -1, -1, -1, -1, -1, 291, 257, 258, -1, -1, + -1, 262, -1, -1, -1, 301, -1, -1, 269, -1, -1, -1, -1, 274, -1, 276, 277, 278, -1, -1, - -1, -1, -1, 284, -1, -1, -1, -1, -1, -1, - 291, 257, 258, -1, -1, -1, 262, -1, -1, -1, - 301, -1, -1, 269, -1, -1, -1, -1, 274, -1, - 276, 277, 278, -1, -1, -1, -1, -1, 284, 257, - 258, -1, -1, -1, 262, 291, -1, -1, -1, -1, - -1, 269, -1, -1, -1, 301, 274, -1, 276, 277, - 278, -1, -1, -1, -1, -1, 284, -1, -1, -1, - -1, -1, -1, 291, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 301, + -1, -1, -1, 284, 257, 258, -1, -1, -1, 262, + 291, -1, -1, -1, -1, -1, 269, -1, -1, -1, + 301, 274, -1, 276, 277, 278, -1, -1, -1, -1, + -1, 284, 257, 258, -1, -1, -1, 262, 291, -1, + -1, -1, -1, -1, 269, -1, -1, -1, 301, 274, + -1, 276, 277, 278, -1, -1, -1, -1, -1, 284, + -1, -1, -1, -1, -1, -1, 291, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 301, }; } class yyCheckInit { - static short[] yyCheck = new short[3868]; + static short[] yyCheck = new short[3801]; protected static void yyCheckInit () { int numyycheck; int yyCheckerun = 0; for (numyycheck = 0; numyycheck <= 1000; numyycheck++) { - if (yyCheckerun < 3868) { + if (yyCheckerun < 3801) { yyCheck[yyCheckerun] = yyCheck0.yyCheck0[numyycheck]; yyCheckerun++; } } for (numyycheck = 0; numyycheck <= 1000; numyycheck++) { - if (yyCheckerun < 3868) { + if (yyCheckerun < 3801) { yyCheck[yyCheckerun] = yyCheck1.yyCheck1[numyycheck]; yyCheckerun++; } } for (numyycheck = 0; numyycheck <= 1000; numyycheck++) { - if (yyCheckerun < 3868) { + if (yyCheckerun < 3801) { yyCheck[yyCheckerun] = yyCheck2.yyCheck2[numyycheck]; yyCheckerun++; } } for (numyycheck = 0; numyycheck <= 1000; numyycheck++) { - if (yyCheckerun < 3868) { + if (yyCheckerun < 3801) { yyCheck[yyCheckerun] = yyCheck3.yyCheck3[numyycheck]; yyCheckerun++; } diff --git a/src/mycompiler/myparser/JavaParser.jay b/src/mycompiler/myparser/JavaParser.jay index 69dc34481..0bcaee019 100755 --- a/src/mycompiler/myparser/JavaParser.jay +++ b/src/mycompiler/myparser/JavaParser.jay @@ -323,7 +323,7 @@ compilationunit : typedeclarations { $$=$1; } -/* |importdeclarations typedeclarations + |importdeclarations typedeclarations { $2.addImports($1); $$=$2; @@ -346,7 +346,7 @@ compilationunit : typedeclarations this.testPair.add(new Pair($1,$2)); $$=$3; } - */ + packagedeclaration : PACKAGE name ';' ; { // SCJU: Package diff --git a/src/mycompiler/mystatement/InstVar.java b/src/mycompiler/mystatement/InstVar.java index 17c132367..45a2ba42b 100755 --- a/src/mycompiler/mystatement/InstVar.java +++ b/src/mycompiler/mystatement/InstVar.java @@ -36,10 +36,16 @@ import org.apache.log4j.Logger; + + + import typinferenz.ConstraintsSet; import typinferenz.FreshTypeVariable; import typinferenz.JavaCodeResult; +import typinferenz.OderConstraint; import typinferenz.ResultSet; +import typinferenz.UndConstraint; +import typinferenz.assumptions.FieldAssumption; import typinferenz.assumptions.TypeAssumptions; @@ -103,19 +109,25 @@ public class InstVar extends Expr super(offset,variableLength); Iterator namen = ui.get_Name().iterator(); LocalOrFieldVar innerLOFV = new LocalOrFieldVar((String)namen.next(),getOffset()); - innerLOFV.setType(TypePlaceholder.fresh(this)); + //innerLOFV.setType(TypePlaceholder.fresh(this)); InstVar INSTVA = new InstVar(innerLOFV, (String)namen.next(),offset); - INSTVA.setType(TypePlaceholder.fresh(this)); + //INSTVA.setType(TypePlaceholder.fresh(this)); while(namen.hasNext()) { INSTVA = new InstVar(INSTVA, (String)namen.next(),offset); - INSTVA.setType(TypePlaceholder.fresh(this)); + //INSTVA.setType(TypePlaceholder.fresh(this)); } expr = INSTVA.expr; usedid = INSTVA.usedid; } // ino.end - // ino.method.sc_check.25417.definition + @Override + public void parserPostProcessing(SyntaxTreeNode parent) { + super.parserPostProcessing(parent); + if(this.getType()==null)this.set_Type(TypePlaceholder.fresh(this)); + } + + // ino.method.sc_check.25417.definition public void sc_check(Vector classname, Hashtable ch, Hashtable bh, boolean ext, Hashtable parach, Hashtable parabh) // ino.end // ino.method.sc_check.25417.body @@ -152,7 +164,7 @@ public class InstVar extends Expr // ino.end // ino.method.get_Name.25420.body { - return null; + return this.usedid.get_Name_1Element(); } // ino.end @@ -267,14 +279,27 @@ public class InstVar extends Expr @Override public ConstraintsSet TYPEExpr(TypeAssumptions assumptions) { ConstraintsSet ret = new ConstraintsSet(); + if(this.expr == null){ + this.expr = new This(0, 0); + } ret.add(expr.TYPEExpr(assumptions)); this.setType(TypePlaceholder.fresh(this)); - return null; + OderConstraint oderConstraint = new OderConstraint(); + for(FieldAssumption fa : assumptions.getFieldVars(this.get_Name())){ + UndConstraint undConstraint = new UndConstraint(); + undConstraint.addConstraint(fa.getAssumedType(),this.getType()); + undConstraint.addConstraint(this.expr.getType(),fa.getParentClass().getType()); + oderConstraint.addConstraint(undConstraint); + } + ret.add(oderConstraint); + return ret; } @Override public JavaCodeResult printJavaCode(ResultSet resultSet) { - return new JavaCodeResult().attach(this.expr.printJavaCode(resultSet)).attach("."+this.usedid.get_Name_1Element()); + JavaCodeResult ret = new JavaCodeResult(); + if(this.expr != null)ret.attach(this.expr.printJavaCode(resultSet)).attach("."); + return ret.attach(this.usedid.get_Name_1Element()); } @Override diff --git a/src/mycompiler/mytype/GenericTypeVar.java b/src/mycompiler/mytype/GenericTypeVar.java index ffc23b41a..16f447a89 100755 --- a/src/mycompiler/mytype/GenericTypeVar.java +++ b/src/mycompiler/mytype/GenericTypeVar.java @@ -33,6 +33,7 @@ public class GenericTypeVar extends Type // ino.method.GenericTypeVar.26509.defdescription type=line // private Hashtable> m_TypeErasureList; // ino.end + private TypePlaceholder tph; /** * @@ -134,6 +135,11 @@ public class GenericTypeVar extends Type return new JavaCodeResult(this.name); } + public TypePlaceholder getTypePlaceHolder() { + if(this.tph == null)this.tph = TypePlaceholder.fresh(); + return this.tph; + } + } // ino.end diff --git a/src/mycompiler/mytype/RefType.java b/src/mycompiler/mytype/RefType.java index bfe772bba..6feb5fc02 100755 --- a/src/mycompiler/mytype/RefType.java +++ b/src/mycompiler/mytype/RefType.java @@ -87,7 +87,7 @@ public class RefType extends Type implements IMatchable { super(offset); this.setName(fullyQualifiedName); - if(parameter != null && parameter.size()>0)this.parameter = parameter; + if(parameter != null && parameter.size()>0)this.set_ParaList(parameter); } // ino.end @@ -99,7 +99,7 @@ public class RefType extends Type implements IMatchable super(offset); // otth: Copy-Konstruktor this.setName(R.getTypeName()); - this.parameter = R.get_ParaList(); + this.set_ParaList(R.get_ParaList()); } // ino.end @@ -195,7 +195,20 @@ public class RefType extends Type implements IMatchable //*/ } // ino.end - + + /** + * Wandelt die Parameter des RefTypes in TPHs um, sofern es sich um Generische Variablen handelt. + * @return + */ + public void GTV2TPH(){ + Vector paralist = new Vector(); + if(this.get_ParaList()!=null)for(Type t : this.get_ParaList()){ + if(t instanceof GenericTypeVar)paralist.add(((GenericTypeVar)t).getTypePlaceHolder()); + else paralist.add(t); + } + this.set_ParaList(paralist); + } + // ino.method.setName.26655.definition public void setName( String name ) // ino.end @@ -241,14 +254,25 @@ public class RefType extends Type implements IMatchable } // ino.end + /** + * Fügt eine Parameterliste an und tauscht zuvor alle GenerictTypeVars durch TPH aus. + * In einem RefType dürfen keine GTVs enthalten sein. + * @param v + */ // ino.method.set_ParaList.26661.definition public void set_ParaList(Vector v) // ino.end // ino.method.set_ParaList.26661.body { - this.parameter = v; - parserlog.debug("T->Type.java->set_ParaList->parameter: " + parameter); - parserlog.debug("T->Type.java->get_Type: " + getName()); + /* + Vector paralist = new Vector(); + if(v!=null)for(Type t : v){ + if(t instanceof GenericTypeVar)paralist.add(((GenericTypeVar)t).getTypePlaceHolder()); + else paralist.add(t); + }*/ + this.parameter = v;//paralist; + parserlog.debug("T->Type.java->set_ParaList->parameter: " + parameter); + parserlog.debug("T->Type.java->get_Type: " + getName()); } // ino.end diff --git a/src/typinferenz/FunNInterface.java b/src/typinferenz/FunNInterface.java index 1f79f87a3..aaf24c60f 100644 --- a/src/typinferenz/FunNInterface.java +++ b/src/typinferenz/FunNInterface.java @@ -24,8 +24,10 @@ public class FunNInterface extends Class{ super("Fun"+N); Vector paralist = new Vector(); paralist.add(new GenericTypeVar("R",0)); + //paralist.add(TypePlaceholder.fresh()); for(int i = 1; i<=N;i++){ paralist.add(new GenericTypeVar("T"+i,0)); + //paralist.add(TypePlaceholder.fresh()); } this.set_ParaList(paralist); } diff --git a/src/typinferenz/SingleConstraint.java b/src/typinferenz/SingleConstraint.java index c365e0aff..7546e0919 100755 --- a/src/typinferenz/SingleConstraint.java +++ b/src/typinferenz/SingleConstraint.java @@ -3,6 +3,7 @@ package typinferenz; import java.util.Vector; import typinferenz.exceptions.TypinferenzException; +import mycompiler.mytype.GenericTypeVar; import mycompiler.mytype.Pair; import mycompiler.mytype.RefType; import mycompiler.mytype.Type; @@ -47,10 +48,20 @@ public class SingleConstraint extends UndConstraint{ Type p1 = toAdd.TA1; Type p2 = toAdd.TA2; if(p1==null || p2 == null)throw new NullPointerException(); + + + //Hier werden die GTVs zu TPH gewandelt. + if(p1 instanceof RefType)((RefType)p1).GTV2TPH(); + if(p2 instanceof RefType)((RefType)p2).GTV2TPH(); + + if((p1 instanceof GenericTypeVar)) + p1 = ((GenericTypeVar)p1).getTypePlaceHolder(); + if((p2 instanceof GenericTypeVar)) + p2 = ((GenericTypeVar)p2).getTypePlaceHolder(); // BaseTypes werden in RefTypes umgewandelt. Constraints dürfen nur RefTypes oder TypePlaceholder enthalten, da sonst der Unify-Algorithmus nicht funktioniert. - if(!(p1 instanceof RefType) && !(p1 instanceof TypePlaceholder))p1 = new RefType(p1); - if(!(p2 instanceof RefType) && !(p2 instanceof TypePlaceholder))p2 = new RefType(p2); + if(!(p1 instanceof RefType) && !(p1 instanceof TypePlaceholder) && !(p1 instanceof GenericTypeVar))p1 = new RefType(p1); + if(!(p2 instanceof RefType) && !(p2 instanceof TypePlaceholder) && !(p2 instanceof GenericTypeVar))p2 = new RefType(p2); //if(!(TypePlaceholder.class.isInstance(p1)) || !(RefType.class.isInstance(p1)) || !(TypePlaceholder.class.isInstance(p2)) || !(RefType.class.isInstance(p2))) //{//Wenn die beiden übergebenen Typen weder RefTypes noch TypePlaceholder sind: diff --git a/src/typinferenz/assumptions/MethodAssumption.java b/src/typinferenz/assumptions/MethodAssumption.java index 2097b538b..5d258564e 100644 --- a/src/typinferenz/assumptions/MethodAssumption.java +++ b/src/typinferenz/assumptions/MethodAssumption.java @@ -31,7 +31,8 @@ public class MethodAssumption extends FieldAssumption { * @return */ public Type getParameterType(int i) { - return this.method.getParameterList().getParameterAt(i).getType(); + Type ret = this.method.getParameterList().getParameterAt(i).getType(); + return ret; } public Type getParentClassType() { diff --git a/src/typinferenz/assumptions/TypeAssumptions.java b/src/typinferenz/assumptions/TypeAssumptions.java index 0d8387116..dfe676045 100755 --- a/src/typinferenz/assumptions/TypeAssumptions.java +++ b/src/typinferenz/assumptions/TypeAssumptions.java @@ -93,15 +93,19 @@ public class TypeAssumptions { * @param withName * @return */ - @Deprecated - public Vector getFieldVars2(String withName){ - //TODO: Implementieren - return new Vector(); + public Vector getFieldVars(String withName){ + Vector ret = new Vector(); + for(FieldAssumption fa : this.fieldAssumptions){ + if(fa.getIdentifier().equals(withName))ret.add(fa); + } + return ret; } - @Deprecated - public Type getTypeOfFieldVar2(String withName, Class inClass){ - //TODO: Implementieren - return null; + + public Type getTypeOfFieldVar(String withName, Class inClass){ + for(FieldAssumption fa : this.getFieldVars(withName)){ + if(fa.getParentClass().equals(inClass))return fa.getAssumedType(); + } + throw new TypinferenzException("Das Feld "+withName+" ist in der Klasse "+inClass.getName()+" nicht vorhanden."); } /** diff --git a/test/parser/GeneralParserTest.java b/test/parser/GeneralParserTest.java index 4a9d245b4..2124eb227 100644 --- a/test/parser/GeneralParserTest.java +++ b/test/parser/GeneralParserTest.java @@ -29,6 +29,7 @@ public class GeneralParserTest{ public void run(){ Vector filenames = new Vector(); filenames.add("FieldInitializationTest.jav"); + filenames.add("ImportTest.jav"); MyCompilerAPI compiler = MyCompiler.getAPI(); try{ for(String filename : filenames) diff --git a/test/parser/ImportTest.jav b/test/parser/ImportTest.jav new file mode 100644 index 000000000..2de55cee8 --- /dev/null +++ b/test/parser/ImportTest.jav @@ -0,0 +1,4 @@ +import java.util.*; + +class ImportTest{ +} \ No newline at end of file diff --git a/test/plugindevelopment/TypeInsertTests/GenericTypeVarTest.jav b/test/plugindevelopment/TypeInsertTests/GenericTypeVarTest.jav new file mode 100644 index 000000000..6c08eff52 --- /dev/null +++ b/test/plugindevelopment/TypeInsertTests/GenericTypeVarTest.jav @@ -0,0 +1,11 @@ +class GTVTest{ +GTVTest2 var; + +methode(){ + return var.var2; +} +} + +class GTVTest2{ + GTV2 var2; +} \ No newline at end of file diff --git a/test/plugindevelopment/TypeInsertTests/GenericTypeVarTest.java b/test/plugindevelopment/TypeInsertTests/GenericTypeVarTest.java new file mode 100644 index 000000000..a42cf7add --- /dev/null +++ b/test/plugindevelopment/TypeInsertTests/GenericTypeVarTest.java @@ -0,0 +1,18 @@ +package plugindevelopment.TypeInsertTests; + +import java.util.Vector; + +import org.junit.Test; + +public class GenericTypeVarTest { + + private static final String TEST_FILE = "GenericTypeVarTest.jav"; + + @Test + public void run(){ + Vector mustContain = new Vector(); + mustContain.add("String methode"); + MultipleTypesInsertTester.test(this.TEST_FILE, mustContain); + } + +} diff --git a/test/plugindevelopment/TypeInsertTests/LambdaTest1.java b/test/plugindevelopment/TypeInsertTests/LambdaTest1.java index 50dc1cc10..d37cca997 100644 --- a/test/plugindevelopment/TypeInsertTests/LambdaTest1.java +++ b/test/plugindevelopment/TypeInsertTests/LambdaTest1.java @@ -11,7 +11,7 @@ public class LambdaTest1 { @Test public void run(){ Vector mustContain = new Vector(); - mustContain.add("Fun0>> op"); + mustContain.add("Fun0>> op"); MultipleTypesInsertTester.test(this.TEST_FILE, mustContain); } diff --git a/tools/y.output b/tools/y.output index c58f6feff..33b603905 100644 --- a/tools/y.output +++ b/tools/y.output @@ -1,3436 +1,4601 @@ 0 $accept : compilationunit $end 1 compilationunit : typedeclarations + 2 | importdeclarations typedeclarations + 3 | packagedeclaration importdeclarations typedeclarations + 4 | packagedeclaration typedeclarations + 5 | type type compilationunit - 2 packagedeclaration : PACKAGE name ';' + 6 packagedeclaration : PACKAGE name ';' - 3 importdeclarations : importdeclaration - 4 | importdeclarations importdeclaration + 7 importdeclarations : importdeclaration + 8 | importdeclarations importdeclaration - 5 importdeclaration : IMPORT importqualifiedname ';' + 9 importdeclaration : IMPORT importqualifiedname ';' - 6 typedeclarations : typedeclaration - 7 | typedeclarations typedeclaration + 10 typedeclarations : typedeclaration + 11 | typedeclarations typedeclaration - 8 name : qualifiedname - 9 | simplename + 12 name : qualifiedname + 13 | simplename - 10 typedeclaration : classdeclaration - 11 | interfacedeclaration + 14 typedeclaration : classdeclaration + 15 | interfacedeclaration - 12 qualifiedname : name '.' IDENTIFIER + 16 qualifiedname : name '.' IDENTIFIER - 13 importqualifiedname : name '.' IDENTIFIER - 14 | name '.' '*' + 17 importqualifiedname : name '.' IDENTIFIER + 18 | name '.' '*' - 15 simplename : IDENTIFIER + 19 simplename : IDENTIFIER - 16 classdeclaration : CLASS classidentifier classbody - 17 | modifiers CLASS classidentifier classbody - 18 | CLASS classidentifier super classbody - 19 | modifiers CLASS classidentifier super classbody - 20 | CLASS classidentifier interfaces classbody - 21 | modifiers CLASS classidentifier interfaces classbody - 22 | CLASS classidentifier super interfaces classbody - 23 | modifiers CLASS classidentifier super interfaces classbody + 20 classdeclaration : CLASS classidentifier classbody + 21 | modifiers CLASS classidentifier classbody + 22 | CLASS classidentifier super classbody + 23 | modifiers CLASS classidentifier super classbody + 24 | CLASS classidentifier interfaces classbody + 25 | modifiers CLASS classidentifier interfaces classbody + 26 | CLASS classidentifier super interfaces classbody + 27 | modifiers CLASS classidentifier super interfaces classbody - 24 interfaceidentifier : IDENTIFIER - 25 | IDENTIFIER '<' boundedClassParameters '>' + 28 interfaceidentifier : IDENTIFIER + 29 | IDENTIFIER '<' boundedClassParameters '>' - 26 classidentifier : IDENTIFIER - 27 | IDENTIFIER '<' boundedClassParameters '>' + 30 classidentifier : IDENTIFIER + 31 | IDENTIFIER '<' boundedClassParameters '>' - 28 interfacedeclaration : INTERFACE interfaceidentifier interfacebody - 29 | modifiers INTERFACE interfaceidentifier interfacebody - 30 | INTERFACE interfaceidentifier extendsinterfaces interfacebody - 31 | modifiers INTERFACE interfaceidentifier extendsinterfaces interfacebody + 32 interfacedeclaration : INTERFACE interfaceidentifier interfacebody + 33 | modifiers INTERFACE interfaceidentifier interfacebody + 34 | INTERFACE interfaceidentifier extendsinterfaces interfacebody + 35 | modifiers INTERFACE interfaceidentifier extendsinterfaces interfacebody - 32 paralist : IDENTIFIER - 33 | IDENTIFIER '<' paralist '>' - 34 | wildcardparameter - 35 | paralist ',' IDENTIFIER - 36 | paralist ',' IDENTIFIER '<' paralist '>' - 37 | paralist ',' wildcardparameter + 36 paralist : IDENTIFIER + 37 | IDENTIFIER '<' paralist '>' + 38 | wildcardparameter + 39 | paralist ',' IDENTIFIER + 40 | paralist ',' IDENTIFIER '<' paralist '>' + 41 | paralist ',' wildcardparameter - 38 wildcardparameter : '?' - 39 | '?' EXTENDS referencetype - 40 | '?' SUPER referencetype + 42 wildcardparameter : '?' + 43 | '?' EXTENDS referencetype + 44 | '?' SUPER referencetype - 41 classbody : '{' '}' - 42 | '{' classbodydeclarations '}' + 45 classbody : '{' '}' + 46 | '{' classbodydeclarations '}' - 43 modifiers : modifier - 44 | modifiers modifier + 47 modifiers : modifier + 48 | modifiers modifier - 45 super : EXTENDS classtype + 49 super : EXTENDS classtype - 46 interfaces : IMPLEMENTS interfacetype - 47 | interfaces ',' interfacetype + 50 interfaces : IMPLEMENTS interfacetype + 51 | interfaces ',' interfacetype - 48 interfacebody : '{' '}' - 49 | '{' interfacememberdeclarations '}' + 52 interfacebody : '{' '}' + 53 | '{' interfacememberdeclarations '}' - 50 extendsinterfaces : EXTENDS interfacetype - 51 | extendsinterfaces ',' interfacetype + 54 extendsinterfaces : EXTENDS interfacetype + 55 | extendsinterfaces ',' interfacetype - 52 classbodydeclarations : classbodydeclaration - 53 | classbodydeclarations classbodydeclaration + 56 classbodydeclarations : classbodydeclaration + 57 | classbodydeclarations classbodydeclaration - 54 modifier : PUBLIC - 55 | PROTECTED - 56 | PRIVATE - 57 | STATIC - 58 | ABSTRACT - 59 | FINAL + 58 modifier : PUBLIC + 59 | PROTECTED + 60 | PRIVATE + 61 | STATIC + 62 | ABSTRACT + 63 | FINAL - 60 classtype : classorinterfacetype + 64 classtype : classorinterfacetype - 61 interfacememberdeclarations : interfacememberdeclaration - 62 | interfacememberdeclarations interfacememberdeclaration + 65 interfacememberdeclarations : interfacememberdeclaration + 66 | interfacememberdeclarations interfacememberdeclaration - 63 interfacetype : classorinterfacetype + 67 interfacetype : classorinterfacetype - 64 classbodydeclaration : classmemberdeclaration - 65 | staticinitializer - 66 | constructordeclaration + 68 classbodydeclaration : classmemberdeclaration + 69 | staticinitializer + 70 | constructordeclaration - 67 classorinterfacetype : simplename parameter + 71 classorinterfacetype : simplename parameter - 68 typelist : type - 69 | typelist ',' type + 72 typelist : type + 73 | typelist ',' type - 70 parameter : - 71 | '<' typelist '>' + 74 parameter : + 75 | '<' typelist '>' - 72 interfacememberdeclaration : constantdeclaration - 73 | abstractmethoddeclaration + 76 interfacememberdeclaration : constantdeclaration + 77 | abstractmethoddeclaration - 74 classmemberdeclaration : fielddeclaration - 75 | methoddeclaration + 78 classmemberdeclaration : fielddeclaration + 79 | methoddeclaration - 76 staticinitializer : STATIC block + 80 staticinitializer : STATIC block - 77 constructordeclaration : constructordeclarator constructorbody - 78 | modifiers constructordeclarator constructorbody + 81 constructordeclaration : constructordeclarator constructorbody + 82 | modifiers constructordeclarator constructorbody - 79 constantdeclaration : modifiers type IDENTIFIER '=' expression ';' + 83 constantdeclaration : modifiers type IDENTIFIER '=' expression ';' - 80 abstractmethoddeclaration : methodheader ';' + 84 abstractmethoddeclaration : methodheader ';' - 81 fielddeclarator : type variabledeclarator '=' expression - 82 | variabledeclarator '=' expression + 85 fielddeclarator : type variabledeclarator '=' expression + 86 | variabledeclarator '=' expression - 83 fielddeclaration : fielddeclarator ';' - 84 | type fielddeclarator - 85 | variabledeclarators ';' - 86 | type variabledeclarators ';' - 87 | modifiers type variabledeclarators ';' + 87 fielddeclaration : fielddeclarator ';' + 88 | type fielddeclarator + 89 | variabledeclarators ';' + 90 | type variabledeclarators ';' + 91 | modifiers type variabledeclarators ';' - 88 methoddeclaration : methodheader methodbody + 92 methoddeclaration : methodheader methodbody - 89 block : '{' '}' - 90 | '{' blockstatements '}' + 93 block : '{' '}' + 94 | '{' blockstatements '}' - 91 constructordeclarator : simplename '(' ')' - 92 | simplename '(' formalparameterlist ')' + 95 constructordeclarator : simplename '(' ')' + 96 | simplename '(' formalparameterlist ')' - 93 constructorbody : '{' '}' - 94 | '{' explicitconstructorinvocation '}' - 95 | '{' blockstatements '}' - 96 | '{' explicitconstructorinvocation blockstatements '}' + 97 constructorbody : '{' '}' + 98 | '{' explicitconstructorinvocation '}' + 99 | '{' blockstatements '}' + 100 | '{' explicitconstructorinvocation blockstatements '}' - 97 throws : THROWS classtypelist + 101 throws : THROWS classtypelist - 98 boundedClassParameter : boundedMethodParameter + 102 boundedClassParameter : boundedMethodParameter - 99 boundedClassParameters : boundedClassParameter - 100 | boundedClassParameters ',' boundedClassParameter + 103 boundedClassParameters : boundedClassParameter + 104 | boundedClassParameters ',' boundedClassParameter - 101 boundedMethodParameter : IDENTIFIER - 102 | IDENTIFIER EXTENDS boundedclassidentifierlist + 105 boundedMethodParameter : IDENTIFIER + 106 | IDENTIFIER EXTENDS boundedclassidentifierlist - 103 boundedclassidentifierlist : referencetype - 104 | boundedclassidentifierlist '&' referencetype + 107 boundedclassidentifierlist : referencetype + 108 | boundedclassidentifierlist '&' referencetype - 105 boundedMethodParameters : boundedMethodParameter - 106 | boundedMethodParameters ',' boundedMethodParameter + 109 boundedMethodParameters : boundedMethodParameter + 110 | boundedMethodParameters ',' boundedMethodParameter - 107 methodheader : '<' boundedMethodParameters '>' type methoddeclarator - 108 | type methoddeclarator - 109 | modifiers type methoddeclarator - 110 | modifiers '<' boundedMethodParameters '>' type methoddeclarator - 111 | type methoddeclarator throws - 112 | '<' boundedMethodParameters '>' type methoddeclarator throws - 113 | modifiers type methoddeclarator throws - 114 | modifiers '<' boundedMethodParameters '>' type methoddeclarator throws - 115 | VOID methoddeclarator - 116 | modifiers VOID methoddeclarator - 117 | VOID methoddeclarator throws - 118 | modifiers VOID methoddeclarator throws - 119 | '<' boundedMethodParameters '>' VOID methoddeclarator - 120 | modifiers '<' boundedMethodParameters '>' VOID methoddeclarator - 121 | '<' boundedMethodParameters '>' VOID methoddeclarator throws - 122 | modifiers '<' boundedMethodParameters '>' VOID methoddeclarator throws - 123 | methoddeclarator - 124 | '<' boundedMethodParameters '>' methoddeclarator - 125 | modifiers methoddeclarator - 126 | methoddeclarator throws - 127 | modifiers methoddeclarator throws + 111 methodheader : '<' boundedMethodParameters '>' type methoddeclarator + 112 | type methoddeclarator + 113 | modifiers type methoddeclarator + 114 | modifiers '<' boundedMethodParameters '>' type methoddeclarator + 115 | type methoddeclarator throws + 116 | '<' boundedMethodParameters '>' type methoddeclarator throws + 117 | modifiers type methoddeclarator throws + 118 | modifiers '<' boundedMethodParameters '>' type methoddeclarator throws + 119 | VOID methoddeclarator + 120 | modifiers VOID methoddeclarator + 121 | VOID methoddeclarator throws + 122 | modifiers VOID methoddeclarator throws + 123 | '<' boundedMethodParameters '>' VOID methoddeclarator + 124 | modifiers '<' boundedMethodParameters '>' VOID methoddeclarator + 125 | '<' boundedMethodParameters '>' VOID methoddeclarator throws + 126 | modifiers '<' boundedMethodParameters '>' VOID methoddeclarator throws + 127 | methoddeclarator + 128 | '<' boundedMethodParameters '>' methoddeclarator + 129 | modifiers methoddeclarator + 130 | methoddeclarator throws + 131 | modifiers methoddeclarator throws - 128 type : primitivetype - 129 | primitivetype '[' ']' - 130 | referencetype - 131 | referencetype '[' ']' + 132 type : primitivetype + 133 | primitivetype '[' ']' + 134 | referencetype + 135 | referencetype '[' ']' - 132 variabledeclarators : variabledeclarator - 133 | variabledeclarators ',' variabledeclarator + 136 variabledeclarators : variabledeclarator + 137 | variabledeclarators ',' variabledeclarator - 134 methodbody : block + 138 methodbody : block - 135 blockstatements : blockstatement - 136 | blockstatements blockstatement + 139 blockstatements : blockstatement + 140 | blockstatements blockstatement - 137 formalparameterlist : formalparameter - 138 | formalparameterlist ',' formalparameter + 141 formalparameterlist : formalparameter + 142 | formalparameterlist ',' formalparameter - 139 explicitconstructorinvocation : THIS '(' ')' ';' - 140 | THIS '(' argumentlist ')' ';' + 143 explicitconstructorinvocation : THIS '(' ')' ';' + 144 | THIS '(' argumentlist ')' ';' - 141 classtypelist : classtype - 142 | classtypelist ',' classtype + 145 classtypelist : classtype + 146 | classtypelist ',' classtype - 143 methoddeclarator : IDENTIFIER '(' ')' - 144 | IDENTIFIER '(' formalparameterlist ')' + 147 methoddeclarator : IDENTIFIER '(' ')' + 148 | IDENTIFIER '(' formalparameterlist ')' - 145 primitivetype : BOOLEAN - 146 | numerictype + 149 primitivetype : BOOLEAN + 150 | numerictype - 147 referencetype : classorinterfacetype + 151 referencetype : classorinterfacetype - 148 variabledeclarator : variabledeclaratorid + 152 variabledeclarator : variabledeclaratorid - 149 blockstatement : localvariabledeclarationstatement - 150 | statement + 153 blockstatement : localvariabledeclarationstatement + 154 | statement - 151 formalparameter : type variabledeclaratorid - 152 | variabledeclaratorid + 155 formalparameter : type variabledeclaratorid + 156 | variabledeclaratorid - 153 argumentlist : expression - 154 | argumentlist ',' expression + 157 argumentlist : expression + 158 | argumentlist ',' expression - 155 numerictype : integraltype + 159 numerictype : integraltype - 156 variabledeclaratorid : IDENTIFIER + 160 variabledeclaratorid : IDENTIFIER - 157 variableinitializer : expression + 161 variableinitializer : expression - 158 localvariabledeclarationstatement : localvariabledeclaration ';' + 162 localvariabledeclarationstatement : localvariabledeclaration ';' - 159 statement : statementwithouttrailingsubstatement - 160 | ifthenstatement - 161 | ifthenelsestatement - 162 | whilestatement - 163 | forstatement + 163 statement : statementwithouttrailingsubstatement + 164 | ifthenstatement + 165 | ifthenelsestatement + 166 | whilestatement + 167 | forstatement - 164 expression : assignmentexpression - 165 | classinstancecreationexpression + 168 expression : assignmentexpression + 169 | classinstancecreationexpression - 166 integraltype : INT - 167 | CHAR + 170 integraltype : INT + 171 | CHAR - 168 localvariabledeclaration : type variabledeclarators - 169 | variabledeclarators + 172 localvariabledeclaration : type variabledeclarators + 173 | variabledeclarators - 170 statementwithouttrailingsubstatement : block - 171 | emptystatement - 172 | expressionstatement - 173 | returnstatement + 174 statementwithouttrailingsubstatement : block + 175 | emptystatement + 176 | expressionstatement + 177 | returnstatement - 174 ifthenstatement : IF '(' expression ')' statement + 178 ifthenstatement : IF '(' expression ')' statement - 175 ifthenelsestatement : IF '(' expression ')' statementnoshortif ELSE statement + 179 ifthenelsestatement : IF '(' expression ')' statementnoshortif ELSE statement - 176 whilestatement : WHILE '(' expression ')' statement + 180 whilestatement : WHILE '(' expression ')' statement - 177 forstatement : FOR '(' expression ';' expression ';' expression ')' statement - 178 | FOR '(' expression ';' expression ';' ')' statement - 179 | FOR '(' expression ';' ';' expression ')' statement - 180 | FOR '(' ';' expression ';' expression ')' statement - 181 | FOR '(' expression ';' ';' ')' statement - 182 | FOR '(' ';' expression ';' ')' statement - 183 | FOR '(' ';' ';' expression ')' statement - 184 | FOR '(' ';' ';' ')' statement + 181 forstatement : FOR '(' expression ';' expression ';' expression ')' statement + 182 | FOR '(' expression ';' expression ';' ')' statement + 183 | FOR '(' expression ';' ';' expression ')' statement + 184 | FOR '(' ';' expression ';' expression ')' statement + 185 | FOR '(' expression ';' ';' ')' statement + 186 | FOR '(' ';' expression ';' ')' statement + 187 | FOR '(' ';' ';' expression ')' statement + 188 | FOR '(' ';' ';' ')' statement - 185 assignmentexpression : conditionalexpression - 186 | assignment + 189 assignmentexpression : conditionalexpression + 190 | assignment - 187 emptystatement : ';' + 191 emptystatement : ';' - 188 expressionstatement : statementexpression ';' + 192 expressionstatement : statementexpression ';' - 189 returnstatement : RETURN ';' - 190 | RETURN expression ';' + 193 returnstatement : RETURN ';' + 194 | RETURN expression ';' - 191 statementnoshortif : statementwithouttrailingsubstatement - 192 | ifthenelsestatementnoshortif - 193 | whilestatementnoshortif + 195 statementnoshortif : statementwithouttrailingsubstatement + 196 | ifthenelsestatementnoshortif + 197 | whilestatementnoshortif - 194 conditionalexpression : conditionalorexpression + 198 conditionalexpression : conditionalorexpression - 195 assignment : lefthandside assignmentoperator assignmentexpression - 196 | lefthandside assignmentoperator classinstancecreationexpression + 199 assignment : lefthandside assignmentoperator assignmentexpression + 200 | lefthandside assignmentoperator classinstancecreationexpression - 197 statementexpression : assignment - 198 | preincrementexpression - 199 | predecrementexpression - 200 | postincrementexpression - 201 | postdecrementexpression - 202 | methodinvocation + 201 statementexpression : assignment + 202 | preincrementexpression + 203 | predecrementexpression + 204 | postincrementexpression + 205 | postdecrementexpression + 206 | methodinvocation - 203 ifthenelsestatementnoshortif : IF '(' expression ')' statementnoshortif ELSE statementnoshortif + 207 ifthenelsestatementnoshortif : IF '(' expression ')' statementnoshortif ELSE statementnoshortif - 204 whilestatementnoshortif : WHILE '(' expression ')' statementnoshortif + 208 whilestatementnoshortif : WHILE '(' expression ')' statementnoshortif - 205 conditionalorexpression : conditionalandexpression - 206 | conditionalorexpression LOGICALOR conditionalandexpression + 209 conditionalorexpression : conditionalandexpression + 210 | conditionalorexpression LOGICALOR conditionalandexpression - 207 lambdaassignmentoperator : LAMBDAASSIGNMENT + 211 lambdaassignmentoperator : LAMBDAASSIGNMENT - 208 lambdabody : block - 209 | expression + 212 lambdabody : block + 213 | expression - 210 lambdaexpressionparameter : '(' ')' - 211 | '(' formalparameterlist ')' + 214 lambdaexpressionparameter : '(' ')' + 215 | '(' formalparameterlist ')' - 212 lambdaexpression : lambdaexpressionparameter lambdaassignmentoperator lambdabody + 216 lambdaexpression : lambdaexpressionparameter lambdaassignmentoperator lambdabody - 213 lefthandside : name + 217 lefthandside : name - 214 assignmentoperator : '=' - 215 | TIMESEQUAL - 216 | DIVIDEEQUAL - 217 | MODULOEQUAL - 218 | PLUSEQUAL - 219 | MINUSEQUAL + 218 assignmentoperator : '=' + 219 | TIMESEQUAL + 220 | DIVIDEEQUAL + 221 | MODULOEQUAL + 222 | PLUSEQUAL + 223 | MINUSEQUAL - 220 preincrementexpression : INCREMENT unaryexpression + 224 preincrementexpression : INCREMENT unaryexpression - 221 predecrementexpression : DECREMENT unaryexpression + 225 predecrementexpression : DECREMENT unaryexpression - 222 postincrementexpression : postfixexpression INCREMENT + 226 postincrementexpression : postfixexpression INCREMENT - 223 postdecrementexpression : postfixexpression DECREMENT + 227 postdecrementexpression : postfixexpression DECREMENT - 224 methodinvocation : name '(' ')' - 225 | name '(' argumentlist ')' - 226 | primary '.' IDENTIFIER '(' ')' - 227 | primary '.' IDENTIFIER '(' argumentlist ')' + 228 methodinvocation : name '(' ')' + 229 | name '(' argumentlist ')' + 230 | primary '.' IDENTIFIER '(' ')' + 231 | primary '.' IDENTIFIER '(' argumentlist ')' - 228 classinstancecreationexpression : NEW classtype '(' ')' - 229 | NEW classtype '(' argumentlist ')' + 232 classinstancecreationexpression : NEW classtype '(' ')' + 233 | NEW classtype '(' argumentlist ')' - 230 conditionalandexpression : inclusiveorexpression - 231 | conditionalandexpression LOGICALAND inclusiveorexpression + 234 conditionalandexpression : inclusiveorexpression + 235 | conditionalandexpression LOGICALAND inclusiveorexpression - 232 unaryexpression : preincrementexpression - 233 | predecrementexpression - 234 | '+' unaryexpression - 235 | '-' unaryexpression - 236 | unaryexpressionnotplusminus + 236 unaryexpression : preincrementexpression + 237 | predecrementexpression + 238 | '+' unaryexpression + 239 | '-' unaryexpression + 240 | unaryexpressionnotplusminus - 237 postfixexpression : primary - 238 | name - 239 | postincrementexpression - 240 | postdecrementexpression + 241 postfixexpression : primary + 242 | name + 243 | postincrementexpression + 244 | postdecrementexpression - 241 primary : primarynonewarray + 245 primary : primarynonewarray - 242 inclusiveorexpression : exclusiveorexpression - 243 | inclusiveorexpression '|' exclusiveorexpression + 246 inclusiveorexpression : exclusiveorexpression + 247 | inclusiveorexpression '|' exclusiveorexpression - 244 primarynonewarray : literal - 245 | THIS - 246 | methodinvocation - 247 | lambdaexpression + 248 primarynonewarray : literal + 249 | THIS + 250 | methodinvocation + 251 | lambdaexpression - 248 unaryexpressionnotplusminus : postfixexpression - 249 | '!' unaryexpression - 250 | castexpression + 252 unaryexpressionnotplusminus : postfixexpression + 253 | '!' unaryexpression + 254 | castexpression - 251 exclusiveorexpression : andexpression - 252 | exclusiveorexpression '^' andexpression + 255 exclusiveorexpression : andexpression + 256 | exclusiveorexpression '^' andexpression - 253 literal : INTLITERAL - 254 | BOOLLITERAL - 255 | CHARLITERAL - 256 | STRINGLITERAL - 257 | LONGLITERAL - 258 | FLOATLITERAL - 259 | DOUBLELITERAL - 260 | JNULL + 257 literal : INTLITERAL + 258 | BOOLLITERAL + 259 | CHARLITERAL + 260 | STRINGLITERAL + 261 | LONGLITERAL + 262 | FLOATLITERAL + 263 | DOUBLELITERAL + 264 | JNULL - 261 castexpression : '(' primitivetype ')' unaryexpression + 265 castexpression : '(' primitivetype ')' unaryexpression - 262 andexpression : equalityexpression - 263 | andexpression '&' equalityexpression + 266 andexpression : equalityexpression + 267 | andexpression '&' equalityexpression - 264 equalityexpression : relationalexpression - 265 | equalityexpression EQUAL relationalexpression - 266 | equalityexpression NOTEQUAL relationalexpression + 268 equalityexpression : relationalexpression + 269 | equalityexpression EQUAL relationalexpression + 270 | equalityexpression NOTEQUAL relationalexpression - 267 relationalexpression : shiftexpression - 268 | relationalexpression '<' shiftexpression - 269 | relationalexpression '>' shiftexpression - 270 | relationalexpression LESSEQUAL shiftexpression - 271 | relationalexpression GREATEREQUAL shiftexpression - 272 | relationalexpression INSTANCEOF referencetype + 271 relationalexpression : shiftexpression + 272 | relationalexpression '<' shiftexpression + 273 | relationalexpression '>' shiftexpression + 274 | relationalexpression LESSEQUAL shiftexpression + 275 | relationalexpression GREATEREQUAL shiftexpression + 276 | relationalexpression INSTANCEOF referencetype - 273 shiftexpression : additiveexpression + 277 shiftexpression : additiveexpression - 274 additiveexpression : multiplicativeexpression - 275 | additiveexpression '+' multiplicativeexpression - 276 | additiveexpression '-' multiplicativeexpression + 278 additiveexpression : multiplicativeexpression + 279 | additiveexpression '+' multiplicativeexpression + 280 | additiveexpression '-' multiplicativeexpression - 277 multiplicativeexpression : unaryexpression - 278 | multiplicativeexpression '*' unaryexpression - 279 | multiplicativeexpression '/' unaryexpression - 280 | multiplicativeexpression '%' unaryexpression + 281 multiplicativeexpression : unaryexpression + 282 | multiplicativeexpression '*' unaryexpression + 283 | multiplicativeexpression '/' unaryexpression + 284 | multiplicativeexpression '%' unaryexpression state 0 $accept : . compilationunit $end (0) ABSTRACT shift 1 - CLASS shift 2 - FINAL shift 3 - PRIVATE shift 4 - PROTECTED shift 5 - PUBLIC shift 6 - INTERFACE shift 7 - STATIC shift 8 + BOOLEAN shift 2 + CHAR shift 3 + CLASS shift 4 + FINAL shift 5 + INT shift 6 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + PACKAGE shift 10 + IMPORT shift 11 + INTERFACE shift 12 + STATIC shift 13 + IDENTIFIER shift 14 . error - compilationunit goto 9 - classdeclaration goto 10 - interfacedeclaration goto 11 - modifiers goto 12 - modifier goto 13 - typedeclarations goto 14 - typedeclaration goto 15 + compilationunit goto 15 + classdeclaration goto 16 + interfacedeclaration goto 17 + simplename goto 18 + importdeclaration goto 19 + importdeclarations goto 20 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 26 + modifiers goto 27 + modifier goto 28 + typedeclarations goto 29 + packagedeclaration goto 30 + typedeclaration goto 31 state 1 - modifier : ABSTRACT . (58) + modifier : ABSTRACT . (62) - . reduce 58 + . reduce 62 state 2 - classdeclaration : CLASS . classidentifier classbody (16) - classdeclaration : CLASS . classidentifier super classbody (18) - classdeclaration : CLASS . classidentifier interfaces classbody (20) - classdeclaration : CLASS . classidentifier super interfaces classbody (22) + primitivetype : BOOLEAN . (149) - IDENTIFIER shift 16 - . error - - classidentifier goto 17 + . reduce 149 state 3 - modifier : FINAL . (59) + integraltype : CHAR . (171) + + . reduce 171 + + +state 4 + classdeclaration : CLASS . classidentifier classbody (20) + classdeclaration : CLASS . classidentifier super classbody (22) + classdeclaration : CLASS . classidentifier interfaces classbody (24) + classdeclaration : CLASS . classidentifier super interfaces classbody (26) + + IDENTIFIER shift 32 + . error + + classidentifier goto 33 + + +state 5 + modifier : FINAL . (63) + + . reduce 63 + + +state 6 + integraltype : INT . (170) + + . reduce 170 + + +state 7 + modifier : PRIVATE . (60) + + . reduce 60 + + +state 8 + modifier : PROTECTED . (59) . reduce 59 -state 4 - modifier : PRIVATE . (56) +state 9 + modifier : PUBLIC . (58) - . reduce 56 + . reduce 58 -state 5 - modifier : PROTECTED . (55) +state 10 + packagedeclaration : PACKAGE . name ';' (6) - . reduce 55 - - -state 6 - modifier : PUBLIC . (54) - - . reduce 54 - - -state 7 - interfacedeclaration : INTERFACE . interfaceidentifier interfacebody (28) - interfacedeclaration : INTERFACE . interfaceidentifier extendsinterfaces interfacebody (30) - - IDENTIFIER shift 18 + IDENTIFIER shift 14 . error - interfaceidentifier goto 19 + simplename goto 34 + qualifiedname goto 35 + name goto 36 -state 8 - modifier : STATIC . (57) +state 11 + importdeclaration : IMPORT . importqualifiedname ';' (9) - . reduce 57 + IDENTIFIER shift 14 + . error + + simplename goto 34 + qualifiedname goto 35 + importqualifiedname goto 37 + name goto 38 -state 9 +state 12 + interfacedeclaration : INTERFACE . interfaceidentifier interfacebody (32) + interfacedeclaration : INTERFACE . interfaceidentifier extendsinterfaces interfacebody (34) + + IDENTIFIER shift 39 + . error + + interfaceidentifier goto 40 + + +state 13 + modifier : STATIC . (61) + + . reduce 61 + + +state 14 + simplename : IDENTIFIER . (19) + + . reduce 19 + + +state 15 $accept : compilationunit . $end (0) $end accept -state 10 - typedeclaration : classdeclaration . (10) - - . reduce 10 - - -state 11 - typedeclaration : interfacedeclaration . (11) - - . reduce 11 - - -state 12 - classdeclaration : modifiers . CLASS classidentifier classbody (17) - classdeclaration : modifiers . CLASS classidentifier super classbody (19) - classdeclaration : modifiers . CLASS classidentifier interfaces classbody (21) - classdeclaration : modifiers . CLASS classidentifier super interfaces classbody (23) - interfacedeclaration : modifiers . INTERFACE interfaceidentifier interfacebody (29) - interfacedeclaration : modifiers . INTERFACE interfaceidentifier extendsinterfaces interfacebody (31) - modifiers : modifiers . modifier (44) - - ABSTRACT shift 1 - CLASS shift 20 - FINAL shift 3 - PRIVATE shift 4 - PROTECTED shift 5 - PUBLIC shift 6 - INTERFACE shift 21 - STATIC shift 8 - . error - - modifier goto 22 - - -state 13 - modifiers : modifier . (43) - - . reduce 43 - - -state 14 - compilationunit : typedeclarations . (1) - typedeclarations : typedeclarations . typedeclaration (7) - - ABSTRACT shift 1 - CLASS shift 2 - FINAL shift 3 - PRIVATE shift 4 - PROTECTED shift 5 - PUBLIC shift 6 - INTERFACE shift 7 - STATIC shift 8 - $end reduce 1 - - classdeclaration goto 10 - interfacedeclaration goto 11 - modifiers goto 12 - modifier goto 13 - typedeclaration goto 23 - - -state 15 - typedeclarations : typedeclaration . (6) - - . reduce 6 - - state 16 - classidentifier : IDENTIFIER . (26) - classidentifier : IDENTIFIER . '<' boundedClassParameters '>' (27) + typedeclaration : classdeclaration . (14) - '<' shift 24 - EXTENDS reduce 26 - IMPLEMENTS reduce 26 - '{' reduce 26 + . reduce 14 state 17 - classdeclaration : CLASS classidentifier . classbody (16) - classdeclaration : CLASS classidentifier . super classbody (18) - classdeclaration : CLASS classidentifier . interfaces classbody (20) - classdeclaration : CLASS classidentifier . super interfaces classbody (22) - - EXTENDS shift 25 - IMPLEMENTS shift 26 - '{' shift 27 - . error - - classbody goto 28 - super goto 29 - interfaces goto 30 - - -state 18 - interfaceidentifier : IDENTIFIER . (24) - interfaceidentifier : IDENTIFIER . '<' boundedClassParameters '>' (25) - - '<' shift 31 - EXTENDS reduce 24 - '{' reduce 24 - - -state 19 - interfacedeclaration : INTERFACE interfaceidentifier . interfacebody (28) - interfacedeclaration : INTERFACE interfaceidentifier . extendsinterfaces interfacebody (30) - - EXTENDS shift 32 - '{' shift 33 - . error - - interfacebody goto 34 - extendsinterfaces goto 35 - - -state 20 - classdeclaration : modifiers CLASS . classidentifier classbody (17) - classdeclaration : modifiers CLASS . classidentifier super classbody (19) - classdeclaration : modifiers CLASS . classidentifier interfaces classbody (21) - classdeclaration : modifiers CLASS . classidentifier super interfaces classbody (23) - - IDENTIFIER shift 16 - . error - - classidentifier goto 36 - - -state 21 - interfacedeclaration : modifiers INTERFACE . interfaceidentifier interfacebody (29) - interfacedeclaration : modifiers INTERFACE . interfaceidentifier extendsinterfaces interfacebody (31) - - IDENTIFIER shift 18 - . error - - interfaceidentifier goto 37 - - -state 22 - modifiers : modifiers modifier . (44) - - . reduce 44 - - -state 23 - typedeclarations : typedeclarations typedeclaration . (7) - - . reduce 7 - - -state 24 - classidentifier : IDENTIFIER '<' . boundedClassParameters '>' (27) - - IDENTIFIER shift 38 - . error - - boundedMethodParameter goto 39 - boundedClassParameter goto 40 - boundedClassParameters goto 41 - - -state 25 - super : EXTENDS . classtype (45) - - IDENTIFIER shift 42 - . error - - simplename goto 43 - classtype goto 44 - classorinterfacetype goto 45 - - -state 26 - interfaces : IMPLEMENTS . interfacetype (46) - - IDENTIFIER shift 42 - . error - - simplename goto 43 - classorinterfacetype goto 46 - interfacetype goto 47 - - -state 27 - classbody : '{' . '}' (41) - classbody : '{' . classbodydeclarations '}' (42) - - ABSTRACT shift 1 - BOOLEAN shift 48 - CHAR shift 49 - FINAL shift 3 - INT shift 50 - PRIVATE shift 4 - PROTECTED shift 5 - PUBLIC shift 6 - STATIC shift 51 - VOID shift 52 - IDENTIFIER shift 53 - '<' shift 54 - '}' shift 55 - . error - - fielddeclaration goto 56 - methodheader goto 57 - methoddeclaration goto 58 - methoddeclarator goto 59 - classbodydeclarations goto 60 - classbodydeclaration goto 61 - classmemberdeclaration goto 62 - variabledeclarators goto 63 - fielddeclarator goto 64 - variabledeclarator goto 65 - variabledeclaratorid goto 66 - simplename goto 67 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 73 - modifiers goto 74 - modifier goto 13 - constructordeclaration goto 75 - constructordeclarator goto 76 - staticinitializer goto 77 - - -state 28 - classdeclaration : CLASS classidentifier classbody . (16) - - . reduce 16 - - -state 29 - classdeclaration : CLASS classidentifier super . classbody (18) - classdeclaration : CLASS classidentifier super . interfaces classbody (22) - - IMPLEMENTS shift 26 - '{' shift 27 - . error - - classbody goto 78 - interfaces goto 79 - - -state 30 - classdeclaration : CLASS classidentifier interfaces . classbody (20) - interfaces : interfaces . ',' interfacetype (47) - - ',' shift 80 - '{' shift 27 - . error - - classbody goto 81 - - -state 31 - interfaceidentifier : IDENTIFIER '<' . boundedClassParameters '>' (25) - - IDENTIFIER shift 38 - . error - - boundedMethodParameter goto 39 - boundedClassParameter goto 40 - boundedClassParameters goto 82 - - -state 32 - extendsinterfaces : EXTENDS . interfacetype (50) - - IDENTIFIER shift 42 - . error - - simplename goto 43 - classorinterfacetype goto 46 - interfacetype goto 83 - - -state 33 - interfacebody : '{' . '}' (48) - interfacebody : '{' . interfacememberdeclarations '}' (49) - - ABSTRACT shift 1 - BOOLEAN shift 48 - CHAR shift 49 - FINAL shift 3 - INT shift 50 - PRIVATE shift 4 - PROTECTED shift 5 - PUBLIC shift 6 - STATIC shift 8 - VOID shift 52 - IDENTIFIER shift 84 - '<' shift 54 - '}' shift 85 - . error - - interfacememberdeclarations goto 86 - interfacememberdeclaration goto 87 - abstractmethoddeclaration goto 88 - constantdeclaration goto 89 - methodheader goto 90 - methoddeclarator goto 59 - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 91 - modifiers goto 92 - modifier goto 13 - - -state 34 - interfacedeclaration : INTERFACE interfaceidentifier interfacebody . (28) - - . reduce 28 - - -state 35 - interfacedeclaration : INTERFACE interfaceidentifier extendsinterfaces . interfacebody (30) - extendsinterfaces : extendsinterfaces . ',' interfacetype (51) - - ',' shift 93 - '{' shift 33 - . error - - interfacebody goto 94 - - -state 36 - classdeclaration : modifiers CLASS classidentifier . classbody (17) - classdeclaration : modifiers CLASS classidentifier . super classbody (19) - classdeclaration : modifiers CLASS classidentifier . interfaces classbody (21) - classdeclaration : modifiers CLASS classidentifier . super interfaces classbody (23) - - EXTENDS shift 25 - IMPLEMENTS shift 26 - '{' shift 27 - . error - - classbody goto 95 - super goto 96 - interfaces goto 97 - - -state 37 - interfacedeclaration : modifiers INTERFACE interfaceidentifier . interfacebody (29) - interfacedeclaration : modifiers INTERFACE interfaceidentifier . extendsinterfaces interfacebody (31) - - EXTENDS shift 32 - '{' shift 33 - . error - - interfacebody goto 98 - extendsinterfaces goto 99 - - -state 38 - boundedMethodParameter : IDENTIFIER . (101) - boundedMethodParameter : IDENTIFIER . EXTENDS boundedclassidentifierlist (102) - - EXTENDS shift 100 - ',' reduce 101 - '>' reduce 101 - - -state 39 - boundedClassParameter : boundedMethodParameter . (98) - - . reduce 98 - - -state 40 - boundedClassParameters : boundedClassParameter . (99) - - . reduce 99 - - -state 41 - classidentifier : IDENTIFIER '<' boundedClassParameters . '>' (27) - boundedClassParameters : boundedClassParameters . ',' boundedClassParameter (100) - - ',' shift 101 - '>' shift 102 - . error - - -state 42 - simplename : IDENTIFIER . (15) + typedeclaration : interfacedeclaration . (15) . reduce 15 -43: shift/reduce conflict (shift 103, reduce 70) on '<' -state 43 - classorinterfacetype : simplename . parameter (67) - parameter : . (70) +18: shift/reduce conflict (shift 41, reduce 74) on '<' +state 18 + classorinterfacetype : simplename . parameter (71) + parameter : . (74) - '<' shift 103 - ABSTRACT reduce 70 - BOOLEAN reduce 70 - CHAR reduce 70 - FINAL reduce 70 - INSTANCEOF reduce 70 - INT reduce 70 - PRIVATE reduce 70 - PROTECTED reduce 70 - PUBLIC reduce 70 - IMPLEMENTS reduce 70 - STATIC reduce 70 - VOID reduce 70 - IDENTIFIER reduce 70 - EQUAL reduce 70 - LESSEQUAL reduce 70 - GREATEREQUAL reduce 70 - NOTEQUAL reduce 70 - LOGICALOR reduce 70 - LOGICALAND reduce 70 - INCREMENT reduce 70 - DECREMENT reduce 70 - ',' reduce 70 - ';' reduce 70 - '.' reduce 70 - '*' reduce 70 - '>' reduce 70 - '{' reduce 70 - '}' reduce 70 - '(' reduce 70 - ')' reduce 70 - '&' reduce 70 - '[' reduce 70 - '+' reduce 70 - '-' reduce 70 - '|' reduce 70 - '^' reduce 70 - '/' reduce 70 - '%' reduce 70 + '<' shift 41 + ABSTRACT reduce 74 + BOOLEAN reduce 74 + CHAR reduce 74 + CLASS reduce 74 + FINAL reduce 74 + INSTANCEOF reduce 74 + INT reduce 74 + PRIVATE reduce 74 + PROTECTED reduce 74 + PUBLIC reduce 74 + PACKAGE reduce 74 + IMPORT reduce 74 + INTERFACE reduce 74 + IMPLEMENTS reduce 74 + STATIC reduce 74 + VOID reduce 74 + IDENTIFIER reduce 74 + EQUAL reduce 74 + LESSEQUAL reduce 74 + GREATEREQUAL reduce 74 + NOTEQUAL reduce 74 + LOGICALOR reduce 74 + LOGICALAND reduce 74 + INCREMENT reduce 74 + DECREMENT reduce 74 + ',' reduce 74 + ';' reduce 74 + '.' reduce 74 + '*' reduce 74 + '>' reduce 74 + '{' reduce 74 + '}' reduce 74 + '(' reduce 74 + ')' reduce 74 + '&' reduce 74 + '[' reduce 74 + '+' reduce 74 + '-' reduce 74 + '|' reduce 74 + '^' reduce 74 + '/' reduce 74 + '%' reduce 74 - parameter goto 104 + parameter goto 42 -state 44 - super : EXTENDS classtype . (45) +state 19 + importdeclarations : importdeclaration . (7) - . reduce 45 + . reduce 7 -state 45 - classtype : classorinterfacetype . (60) - - . reduce 60 - - -state 46 - interfacetype : classorinterfacetype . (63) - - . reduce 63 - - -state 47 - interfaces : IMPLEMENTS interfacetype . (46) - - . reduce 46 - - -state 48 - primitivetype : BOOLEAN . (145) - - . reduce 145 - - -state 49 - integraltype : CHAR . (167) - - . reduce 167 - - -state 50 - integraltype : INT . (166) - - . reduce 166 - - -state 51 - modifier : STATIC . (57) - staticinitializer : STATIC . block (76) - - '{' shift 105 - ABSTRACT reduce 57 - BOOLEAN reduce 57 - CHAR reduce 57 - FINAL reduce 57 - INT reduce 57 - PRIVATE reduce 57 - PROTECTED reduce 57 - PUBLIC reduce 57 - STATIC reduce 57 - VOID reduce 57 - IDENTIFIER reduce 57 - '<' reduce 57 - - block goto 106 - - -state 52 - methodheader : VOID . methoddeclarator (115) - methodheader : VOID . methoddeclarator throws (117) - - IDENTIFIER shift 107 - . error - - methoddeclarator goto 108 - - -53: shift/reduce conflict (shift 109, reduce 15) on '(' -state 53 - simplename : IDENTIFIER . (15) - methoddeclarator : IDENTIFIER . '(' ')' (143) - methoddeclarator : IDENTIFIER . '(' formalparameterlist ')' (144) - variabledeclaratorid : IDENTIFIER . (156) - - '(' shift 109 - BOOLEAN reduce 15 - CHAR reduce 15 - INT reduce 15 - IDENTIFIER reduce 15 - ',' reduce 156 - ';' reduce 156 - '<' reduce 15 - '=' reduce 156 - '[' reduce 15 - - -state 54 - methodheader : '<' . boundedMethodParameters '>' type methoddeclarator (107) - methodheader : '<' . boundedMethodParameters '>' type methoddeclarator throws (112) - methodheader : '<' . boundedMethodParameters '>' VOID methoddeclarator (119) - methodheader : '<' . boundedMethodParameters '>' VOID methoddeclarator throws (121) - methodheader : '<' . boundedMethodParameters '>' methoddeclarator (124) - - IDENTIFIER shift 38 - . error - - boundedMethodParameter goto 110 - boundedMethodParameters goto 111 - - -state 55 - classbody : '{' '}' . (41) - - . reduce 41 - - -state 56 - classmemberdeclaration : fielddeclaration . (74) - - . reduce 74 - - -state 57 - methoddeclaration : methodheader . methodbody (88) - - '{' shift 105 - . error - - block goto 112 - methodbody goto 113 - - -state 58 - classmemberdeclaration : methoddeclaration . (75) - - . reduce 75 - - -state 59 - methodheader : methoddeclarator . (123) - methodheader : methoddeclarator . throws (126) - - THROWS shift 114 - ';' reduce 123 - '{' reduce 123 - - throws goto 115 - - -state 60 - classbody : '{' classbodydeclarations . '}' (42) - classbodydeclarations : classbodydeclarations . classbodydeclaration (53) +state 20 + compilationunit : importdeclarations . typedeclarations (2) + importdeclarations : importdeclarations . importdeclaration (8) ABSTRACT shift 1 - BOOLEAN shift 48 - CHAR shift 49 - FINAL shift 3 - INT shift 50 - PRIVATE shift 4 - PROTECTED shift 5 - PUBLIC shift 6 - STATIC shift 51 - VOID shift 52 - IDENTIFIER shift 53 - '<' shift 54 - '}' shift 116 + CLASS shift 4 + FINAL shift 5 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + IMPORT shift 11 + INTERFACE shift 12 + STATIC shift 13 . error - fielddeclaration goto 56 - methodheader goto 57 - methoddeclaration goto 58 - methoddeclarator goto 59 - classbodydeclaration goto 117 - classmemberdeclaration goto 62 - variabledeclarators goto 63 - fielddeclarator goto 64 - variabledeclarator goto 65 - variabledeclaratorid goto 66 - simplename goto 67 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 73 - modifiers goto 74 - modifier goto 13 - constructordeclaration goto 75 - constructordeclarator goto 76 - staticinitializer goto 77 + classdeclaration goto 16 + interfacedeclaration goto 17 + importdeclaration goto 43 + modifiers goto 27 + modifier goto 28 + typedeclarations goto 44 + typedeclaration goto 31 -state 61 - classbodydeclarations : classbodydeclaration . (52) +state 21 + referencetype : classorinterfacetype . (151) - . reduce 52 + . reduce 151 -state 62 - classbodydeclaration : classmemberdeclaration . (64) - - . reduce 64 - - -state 63 - fielddeclaration : variabledeclarators . ';' (85) - variabledeclarators : variabledeclarators . ',' variabledeclarator (133) - - ',' shift 118 - ';' shift 119 - . error - - -state 64 - fielddeclaration : fielddeclarator . ';' (83) - - ';' shift 120 - . error - - -state 65 - fielddeclarator : variabledeclarator . '=' expression (82) - variabledeclarators : variabledeclarator . (132) - - '=' shift 121 - ',' reduce 132 - ';' reduce 132 - - -state 66 - variabledeclarator : variabledeclaratorid . (148) - - . reduce 148 - - -state 67 - classorinterfacetype : simplename . parameter (67) - constructordeclarator : simplename . '(' ')' (91) - constructordeclarator : simplename . '(' formalparameterlist ')' (92) - parameter : . (70) - - '<' shift 103 - '(' shift 122 - BOOLEAN reduce 70 - CHAR reduce 70 - INT reduce 70 - IDENTIFIER reduce 70 - '[' reduce 70 - - parameter goto 104 - - -state 68 - referencetype : classorinterfacetype . (147) - - . reduce 147 - - -state 69 - numerictype : integraltype . (155) - - . reduce 155 - - -state 70 - primitivetype : numerictype . (146) - - . reduce 146 - - -state 71 - type : primitivetype . (128) - type : primitivetype . '[' ']' (129) - - '[' shift 123 - BOOLEAN reduce 128 - CHAR reduce 128 - INT reduce 128 - IDENTIFIER reduce 128 - ',' reduce 128 - '>' reduce 128 - - -state 72 - type : referencetype . (130) - type : referencetype . '[' ']' (131) - - '[' shift 124 - BOOLEAN reduce 130 - CHAR reduce 130 - INT reduce 130 - IDENTIFIER reduce 130 - ',' reduce 130 - '>' reduce 130 - - -state 73 - fielddeclarator : type . variabledeclarator '=' expression (81) - fielddeclaration : type . fielddeclarator (84) - fielddeclaration : type . variabledeclarators ';' (86) - methodheader : type . methoddeclarator (108) - methodheader : type . methoddeclarator throws (111) - - BOOLEAN shift 48 - CHAR shift 49 - INT shift 50 - IDENTIFIER shift 53 - . error - - methoddeclarator goto 125 - variabledeclarators goto 126 - fielddeclarator goto 127 - variabledeclarator goto 128 - variabledeclaratorid goto 66 - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 129 - - -state 74 - modifiers : modifiers . modifier (44) - constructordeclaration : modifiers . constructordeclarator constructorbody (78) - fielddeclaration : modifiers . type variabledeclarators ';' (87) - methodheader : modifiers . type methoddeclarator (109) - methodheader : modifiers . '<' boundedMethodParameters '>' type methoddeclarator (110) - methodheader : modifiers . type methoddeclarator throws (113) - methodheader : modifiers . '<' boundedMethodParameters '>' type methoddeclarator throws (114) - methodheader : modifiers . VOID methoddeclarator (116) - methodheader : modifiers . VOID methoddeclarator throws (118) - methodheader : modifiers . '<' boundedMethodParameters '>' VOID methoddeclarator (120) - methodheader : modifiers . '<' boundedMethodParameters '>' VOID methoddeclarator throws (122) - methodheader : modifiers . methoddeclarator (125) - methodheader : modifiers . methoddeclarator throws (127) - - ABSTRACT shift 1 - BOOLEAN shift 48 - CHAR shift 49 - FINAL shift 3 - INT shift 50 - PRIVATE shift 4 - PROTECTED shift 5 - PUBLIC shift 6 - STATIC shift 8 - VOID shift 130 - IDENTIFIER shift 84 - '<' shift 131 - . error - - methoddeclarator goto 132 - simplename goto 67 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 133 - modifier goto 22 - constructordeclarator goto 134 - - -state 75 - classbodydeclaration : constructordeclaration . (66) - - . reduce 66 - - -state 76 - constructordeclaration : constructordeclarator . constructorbody (77) - - '{' shift 135 - . error - - constructorbody goto 136 - - -state 77 - classbodydeclaration : staticinitializer . (65) - - . reduce 65 - - -state 78 - classdeclaration : CLASS classidentifier super classbody . (18) - - . reduce 18 - - -state 79 - classdeclaration : CLASS classidentifier super interfaces . classbody (22) - interfaces : interfaces . ',' interfacetype (47) - - ',' shift 80 - '{' shift 27 - . error - - classbody goto 137 - - -state 80 - interfaces : interfaces ',' . interfacetype (47) - - IDENTIFIER shift 42 - . error - - simplename goto 43 - classorinterfacetype goto 46 - interfacetype goto 138 - - -state 81 - classdeclaration : CLASS classidentifier interfaces classbody . (20) - - . reduce 20 - - -state 82 - interfaceidentifier : IDENTIFIER '<' boundedClassParameters . '>' (25) - boundedClassParameters : boundedClassParameters . ',' boundedClassParameter (100) - - ',' shift 101 - '>' shift 139 - . error - - -state 83 - extendsinterfaces : EXTENDS interfacetype . (50) - - . reduce 50 - - -84: shift/reduce conflict (shift 109, reduce 15) on '(' -state 84 - simplename : IDENTIFIER . (15) - methoddeclarator : IDENTIFIER . '(' ')' (143) - methoddeclarator : IDENTIFIER . '(' formalparameterlist ')' (144) - - '(' shift 109 - IDENTIFIER reduce 15 - '<' reduce 15 - '[' reduce 15 - - -state 85 - interfacebody : '{' '}' . (48) - - . reduce 48 - - -state 86 - interfacebody : '{' interfacememberdeclarations . '}' (49) - interfacememberdeclarations : interfacememberdeclarations . interfacememberdeclaration (62) - - ABSTRACT shift 1 - BOOLEAN shift 48 - CHAR shift 49 - FINAL shift 3 - INT shift 50 - PRIVATE shift 4 - PROTECTED shift 5 - PUBLIC shift 6 - STATIC shift 8 - VOID shift 52 - IDENTIFIER shift 84 - '<' shift 54 - '}' shift 140 - . error - - interfacememberdeclaration goto 141 - abstractmethoddeclaration goto 88 - constantdeclaration goto 89 - methodheader goto 90 - methoddeclarator goto 59 - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 91 - modifiers goto 92 - modifier goto 13 - - -state 87 - interfacememberdeclarations : interfacememberdeclaration . (61) - - . reduce 61 - - -state 88 - interfacememberdeclaration : abstractmethoddeclaration . (73) - - . reduce 73 - - -state 89 - interfacememberdeclaration : constantdeclaration . (72) - - . reduce 72 - - -state 90 - abstractmethoddeclaration : methodheader . ';' (80) - - ';' shift 142 - . error - - -state 91 - methodheader : type . methoddeclarator (108) - methodheader : type . methoddeclarator throws (111) - - IDENTIFIER shift 107 - . error - - methoddeclarator goto 125 - - -state 92 - modifiers : modifiers . modifier (44) - constantdeclaration : modifiers . type IDENTIFIER '=' expression ';' (79) - methodheader : modifiers . type methoddeclarator (109) - methodheader : modifiers . '<' boundedMethodParameters '>' type methoddeclarator (110) - methodheader : modifiers . type methoddeclarator throws (113) - methodheader : modifiers . '<' boundedMethodParameters '>' type methoddeclarator throws (114) - methodheader : modifiers . VOID methoddeclarator (116) - methodheader : modifiers . VOID methoddeclarator throws (118) - methodheader : modifiers . '<' boundedMethodParameters '>' VOID methoddeclarator (120) - methodheader : modifiers . '<' boundedMethodParameters '>' VOID methoddeclarator throws (122) - methodheader : modifiers . methoddeclarator (125) - methodheader : modifiers . methoddeclarator throws (127) - - ABSTRACT shift 1 - BOOLEAN shift 48 - CHAR shift 49 - FINAL shift 3 - INT shift 50 - PRIVATE shift 4 - PROTECTED shift 5 - PUBLIC shift 6 - STATIC shift 8 - VOID shift 130 - IDENTIFIER shift 84 - '<' shift 131 - . error - - methoddeclarator goto 132 - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 143 - modifier goto 22 - - -state 93 - extendsinterfaces : extendsinterfaces ',' . interfacetype (51) - - IDENTIFIER shift 42 - . error - - simplename goto 43 - classorinterfacetype goto 46 - interfacetype goto 144 - - -state 94 - interfacedeclaration : INTERFACE interfaceidentifier extendsinterfaces interfacebody . (30) - - . reduce 30 - - -state 95 - classdeclaration : modifiers CLASS classidentifier classbody . (17) - - . reduce 17 - - -state 96 - classdeclaration : modifiers CLASS classidentifier super . classbody (19) - classdeclaration : modifiers CLASS classidentifier super . interfaces classbody (23) - - IMPLEMENTS shift 26 - '{' shift 27 - . error - - classbody goto 145 - interfaces goto 146 - - -state 97 - classdeclaration : modifiers CLASS classidentifier interfaces . classbody (21) - interfaces : interfaces . ',' interfacetype (47) - - ',' shift 80 - '{' shift 27 - . error - - classbody goto 147 - - -state 98 - interfacedeclaration : modifiers INTERFACE interfaceidentifier interfacebody . (29) - - . reduce 29 - - -state 99 - interfacedeclaration : modifiers INTERFACE interfaceidentifier extendsinterfaces . interfacebody (31) - extendsinterfaces : extendsinterfaces . ',' interfacetype (51) - - ',' shift 93 - '{' shift 33 - . error - - interfacebody goto 148 - - -state 100 - boundedMethodParameter : IDENTIFIER EXTENDS . boundedclassidentifierlist (102) - - IDENTIFIER shift 42 - . error - - simplename goto 43 - classorinterfacetype goto 68 - referencetype goto 149 - boundedclassidentifierlist goto 150 - - -state 101 - boundedClassParameters : boundedClassParameters ',' . boundedClassParameter (100) - - IDENTIFIER shift 38 - . error - - boundedMethodParameter goto 39 - boundedClassParameter goto 151 - - -state 102 - classidentifier : IDENTIFIER '<' boundedClassParameters '>' . (27) - - . reduce 27 - - -state 103 - parameter : '<' . typelist '>' (71) - - BOOLEAN shift 48 - CHAR shift 49 - INT shift 50 - IDENTIFIER shift 42 - . error - - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 152 - typelist goto 153 - - -state 104 - classorinterfacetype : simplename parameter . (67) - - . reduce 67 - - -state 105 - block : '{' . '}' (89) - block : '{' . blockstatements '}' (90) - - BOOLEAN shift 48 - CHAR shift 49 - FOR shift 154 - IF shift 155 - INT shift 50 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 167 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '}' shift 171 - '(' shift 172 - . error - - variabledeclarators goto 173 - variabledeclarator goto 174 - variabledeclaratorid goto 66 - simplename goto 175 - qualifiedname goto 176 - name goto 177 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 178 - block goto 179 - blockstatements goto 180 - localvariabledeclarationstatement goto 181 - localvariabledeclaration goto 182 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - blockstatement goto 196 - statement goto 197 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 106 - staticinitializer : STATIC block . (76) - - . reduce 76 - - -state 107 - methoddeclarator : IDENTIFIER . '(' ')' (143) - methoddeclarator : IDENTIFIER . '(' formalparameterlist ')' (144) - - '(' shift 109 - . error - - -state 108 - methodheader : VOID methoddeclarator . (115) - methodheader : VOID methoddeclarator . throws (117) - - THROWS shift 114 - ';' reduce 115 - '{' reduce 115 - - throws goto 207 - - -state 109 - methoddeclarator : IDENTIFIER '(' . ')' (143) - methoddeclarator : IDENTIFIER '(' . formalparameterlist ')' (144) - - BOOLEAN shift 48 - CHAR shift 49 - INT shift 50 - IDENTIFIER shift 167 - ')' shift 208 - . error - - variabledeclaratorid goto 209 - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 210 - formalparameter goto 211 - formalparameterlist goto 212 - - -state 110 - boundedMethodParameters : boundedMethodParameter . (105) - - . reduce 105 - - -state 111 - boundedMethodParameters : boundedMethodParameters . ',' boundedMethodParameter (106) - methodheader : '<' boundedMethodParameters . '>' type methoddeclarator (107) - methodheader : '<' boundedMethodParameters . '>' type methoddeclarator throws (112) - methodheader : '<' boundedMethodParameters . '>' VOID methoddeclarator (119) - methodheader : '<' boundedMethodParameters . '>' VOID methoddeclarator throws (121) - methodheader : '<' boundedMethodParameters . '>' methoddeclarator (124) - - ',' shift 213 - '>' shift 214 - . error - - -state 112 - methodbody : block . (134) - - . reduce 134 - - -state 113 - methoddeclaration : methodheader methodbody . (88) - - . reduce 88 - - -state 114 - throws : THROWS . classtypelist (97) - - IDENTIFIER shift 42 - . error - - simplename goto 43 - classtype goto 215 - classorinterfacetype goto 45 - classtypelist goto 216 - - -state 115 - methodheader : methoddeclarator throws . (126) - - . reduce 126 - - -state 116 - classbody : '{' classbodydeclarations '}' . (42) - - . reduce 42 - - -state 117 - classbodydeclarations : classbodydeclarations classbodydeclaration . (53) - - . reduce 53 - - -state 118 - variabledeclarators : variabledeclarators ',' . variabledeclarator (133) - - IDENTIFIER shift 217 - . error - - variabledeclarator goto 218 - variabledeclaratorid goto 66 - - -state 119 - fielddeclaration : variabledeclarators ';' . (85) - - . reduce 85 - - -state 120 - fielddeclaration : fielddeclarator ';' . (83) - - . reduce 83 - - -state 121 - fielddeclarator : variabledeclarator '=' . expression (82) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 240 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 122 - constructordeclarator : simplename '(' . ')' (91) - constructordeclarator : simplename '(' . formalparameterlist ')' (92) - - BOOLEAN shift 48 - CHAR shift 49 - INT shift 50 - IDENTIFIER shift 167 - ')' shift 249 - . error - - variabledeclaratorid goto 209 - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 210 - formalparameter goto 211 - formalparameterlist goto 250 - - -state 123 - type : primitivetype '[' . ']' (129) - - ']' shift 251 - . error - - -state 124 - type : referencetype '[' . ']' (131) - - ']' shift 252 - . error - - -state 125 - methodheader : type methoddeclarator . (108) - methodheader : type methoddeclarator . throws (111) - - THROWS shift 114 - ';' reduce 108 - '{' reduce 108 - - throws goto 253 - - -state 126 - fielddeclaration : type variabledeclarators . ';' (86) - variabledeclarators : variabledeclarators . ',' variabledeclarator (133) - - ',' shift 118 - ';' shift 254 - . error - - -state 127 - fielddeclaration : type fielddeclarator . (84) - - . reduce 84 - - -state 128 - fielddeclarator : type variabledeclarator . '=' expression (81) - fielddeclarator : variabledeclarator . '=' expression (82) - variabledeclarators : variabledeclarator . (132) - - '=' shift 255 - ',' reduce 132 - ';' reduce 132 - - -state 129 - fielddeclarator : type . variabledeclarator '=' expression (81) - - IDENTIFIER shift 217 - . error - - variabledeclarator goto 256 - variabledeclaratorid goto 66 - - -state 130 - methodheader : modifiers VOID . methoddeclarator (116) - methodheader : modifiers VOID . methoddeclarator throws (118) - - IDENTIFIER shift 107 - . error - - methoddeclarator goto 257 - - -state 131 - methodheader : modifiers '<' . boundedMethodParameters '>' type methoddeclarator (110) - methodheader : modifiers '<' . boundedMethodParameters '>' type methoddeclarator throws (114) - methodheader : modifiers '<' . boundedMethodParameters '>' VOID methoddeclarator (120) - methodheader : modifiers '<' . boundedMethodParameters '>' VOID methoddeclarator throws (122) - - IDENTIFIER shift 38 - . error - - boundedMethodParameter goto 110 - boundedMethodParameters goto 258 - - -state 132 - methodheader : modifiers methoddeclarator . (125) - methodheader : modifiers methoddeclarator . throws (127) - - THROWS shift 114 - ';' reduce 125 - '{' reduce 125 - - throws goto 259 - - -state 133 - fielddeclaration : modifiers type . variabledeclarators ';' (87) - methodheader : modifiers type . methoddeclarator (109) - methodheader : modifiers type . methoddeclarator throws (113) - - IDENTIFIER shift 260 - . error - - methoddeclarator goto 261 - variabledeclarators goto 262 - variabledeclarator goto 174 - variabledeclaratorid goto 66 - - -state 134 - constructordeclaration : modifiers constructordeclarator . constructorbody (78) - - '{' shift 135 - . error - - constructorbody goto 263 - - -state 135 - constructorbody : '{' . '}' (93) - constructorbody : '{' . explicitconstructorinvocation '}' (94) - constructorbody : '{' . blockstatements '}' (95) - constructorbody : '{' . explicitconstructorinvocation blockstatements '}' (96) - - BOOLEAN shift 48 - CHAR shift 49 - FOR shift 154 - IF shift 155 - INT shift 50 - RETURN shift 156 - THIS shift 264 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 167 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '}' shift 265 - '(' shift 172 - . error - - variabledeclarators goto 173 - variabledeclarator goto 174 - variabledeclaratorid goto 66 - simplename goto 175 - qualifiedname goto 176 - name goto 177 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 178 - block goto 179 - blockstatements goto 266 - localvariabledeclarationstatement goto 181 - localvariabledeclaration goto 182 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - blockstatement goto 196 - statement goto 197 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - explicitconstructorinvocation goto 267 - - -state 136 - constructordeclaration : constructordeclarator constructorbody . (77) - - . reduce 77 - - -state 137 - classdeclaration : CLASS classidentifier super interfaces classbody . (22) - - . reduce 22 - - -state 138 - interfaces : interfaces ',' interfacetype . (47) - - . reduce 47 - - -state 139 - interfaceidentifier : IDENTIFIER '<' boundedClassParameters '>' . (25) - - . reduce 25 - - -state 140 - interfacebody : '{' interfacememberdeclarations '}' . (49) - - . reduce 49 - - -state 141 - interfacememberdeclarations : interfacememberdeclarations interfacememberdeclaration . (62) - - . reduce 62 - - -state 142 - abstractmethoddeclaration : methodheader ';' . (80) - - . reduce 80 - - -state 143 - constantdeclaration : modifiers type . IDENTIFIER '=' expression ';' (79) - methodheader : modifiers type . methoddeclarator (109) - methodheader : modifiers type . methoddeclarator throws (113) - - IDENTIFIER shift 268 - . error - - methoddeclarator goto 261 - - -state 144 - extendsinterfaces : extendsinterfaces ',' interfacetype . (51) - - . reduce 51 - - -state 145 - classdeclaration : modifiers CLASS classidentifier super classbody . (19) - - . reduce 19 - - -state 146 - classdeclaration : modifiers CLASS classidentifier super interfaces . classbody (23) - interfaces : interfaces . ',' interfacetype (47) - - ',' shift 80 - '{' shift 27 - . error - - classbody goto 269 - - -state 147 - classdeclaration : modifiers CLASS classidentifier interfaces classbody . (21) - - . reduce 21 - - -state 148 - interfacedeclaration : modifiers INTERFACE interfaceidentifier extendsinterfaces interfacebody . (31) - - . reduce 31 - - -state 149 - boundedclassidentifierlist : referencetype . (103) - - . reduce 103 - - -state 150 - boundedMethodParameter : IDENTIFIER EXTENDS boundedclassidentifierlist . (102) - boundedclassidentifierlist : boundedclassidentifierlist . '&' referencetype (104) - - '&' shift 270 - ',' reduce 102 - '>' reduce 102 - - -state 151 - boundedClassParameters : boundedClassParameters ',' boundedClassParameter . (100) - - . reduce 100 - - -state 152 - typelist : type . (68) - - . reduce 68 - - -state 153 - typelist : typelist . ',' type (69) - parameter : '<' typelist . '>' (71) - - ',' shift 271 - '>' shift 272 - . error - - -state 154 - forstatement : FOR . '(' expression ';' expression ';' expression ')' statement (177) - forstatement : FOR . '(' expression ';' expression ';' ')' statement (178) - forstatement : FOR . '(' expression ';' ';' expression ')' statement (179) - forstatement : FOR . '(' ';' expression ';' expression ')' statement (180) - forstatement : FOR . '(' expression ';' ';' ')' statement (181) - forstatement : FOR . '(' ';' expression ';' ')' statement (182) - forstatement : FOR . '(' ';' ';' expression ')' statement (183) - forstatement : FOR . '(' ';' ';' ')' statement (184) - - '(' shift 273 - . error - - -state 155 - ifthenstatement : IF . '(' expression ')' statement (174) - ifthenelsestatement : IF . '(' expression ')' statementnoshortif ELSE statement (175) - - '(' shift 274 - . error - - -state 156 - returnstatement : RETURN . ';' (189) - returnstatement : RETURN . expression ';' (190) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 275 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 276 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 157 - primarynonewarray : THIS . (245) - - . reduce 245 - - -state 158 - whilestatement : WHILE . '(' expression ')' statement (176) - - '(' shift 277 - . error - - -state 159 - literal : INTLITERAL . (253) - - . reduce 253 - - -state 160 - literal : LONGLITERAL . (257) - - . reduce 257 - - -state 161 - literal : DOUBLELITERAL . (259) - - . reduce 259 - - -state 162 - literal : FLOATLITERAL . (258) - - . reduce 258 - - -state 163 - literal : BOOLLITERAL . (254) - - . reduce 254 - - -state 164 - literal : JNULL . (260) - - . reduce 260 - - -state 165 - literal : CHARLITERAL . (255) - - . reduce 255 - - -state 166 - literal : STRINGLITERAL . (256) - - . reduce 256 - - -state 167 - simplename : IDENTIFIER . (15) - variabledeclaratorid : IDENTIFIER . (156) - - IDENTIFIER reduce 15 - INCREMENT reduce 15 - DECREMENT reduce 15 - PLUSEQUAL reduce 15 - MINUSEQUAL reduce 15 - TIMESEQUAL reduce 15 - DIVIDEEQUAL reduce 15 - MODULOEQUAL reduce 15 - ',' reduce 156 - ';' reduce 156 - '.' reduce 15 - '<' reduce 15 - '=' reduce 15 - '(' reduce 15 - ')' reduce 156 - '[' reduce 15 - - -state 168 - preincrementexpression : INCREMENT . unaryexpression (220) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 279 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 169 - predecrementexpression : DECREMENT . unaryexpression (221) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 280 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 170 - emptystatement : ';' . (187) - - . reduce 187 - - -state 171 - block : '{' '}' . (89) - - . reduce 89 - - -state 172 - lambdaexpressionparameter : '(' . ')' (210) - lambdaexpressionparameter : '(' . formalparameterlist ')' (211) - - BOOLEAN shift 48 - CHAR shift 49 - INT shift 50 - IDENTIFIER shift 167 - ')' shift 281 - . error - - variabledeclaratorid goto 209 - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 210 - formalparameter goto 211 - formalparameterlist goto 282 - - -state 173 - variabledeclarators : variabledeclarators . ',' variabledeclarator (133) - localvariabledeclaration : variabledeclarators . (169) - - ',' shift 118 - ';' reduce 169 - - -state 174 - variabledeclarators : variabledeclarator . (132) - - . reduce 132 - - -state 175 - name : simplename . (9) - classorinterfacetype : simplename . parameter (67) - parameter : . (70) - - '<' shift 103 - IDENTIFIER reduce 70 - INCREMENT reduce 9 - DECREMENT reduce 9 - PLUSEQUAL reduce 9 - MINUSEQUAL reduce 9 - TIMESEQUAL reduce 9 - DIVIDEEQUAL reduce 9 - MODULOEQUAL reduce 9 - '.' reduce 9 - '=' reduce 9 - '(' reduce 9 - '[' reduce 70 - - parameter goto 104 - - -state 176 - name : qualifiedname . (8) - - . reduce 8 - - -177: shift/reduce conflict (shift 283, reduce 238) on '.' -state 177 - qualifiedname : name . '.' IDENTIFIER (12) - lefthandside : name . (213) - methodinvocation : name . '(' ')' (224) - methodinvocation : name . '(' argumentlist ')' (225) - postfixexpression : name . (238) - - '.' shift 283 - '(' shift 284 - ABSTRACT reduce 238 - BOOLEAN reduce 238 - CHAR reduce 238 - FINAL reduce 238 - INSTANCEOF reduce 238 - INT reduce 238 - PRIVATE reduce 238 - PROTECTED reduce 238 - PUBLIC reduce 238 - STATIC reduce 238 - VOID reduce 238 - IDENTIFIER reduce 238 - EQUAL reduce 238 - LESSEQUAL reduce 238 - GREATEREQUAL reduce 238 - NOTEQUAL reduce 238 - LOGICALOR reduce 238 - LOGICALAND reduce 238 - INCREMENT reduce 238 - DECREMENT reduce 238 - PLUSEQUAL reduce 213 - MINUSEQUAL reduce 213 - TIMESEQUAL reduce 213 - DIVIDEEQUAL reduce 213 - MODULOEQUAL reduce 213 - ',' reduce 238 - ';' reduce 238 - '*' reduce 238 - '<' reduce 238 - '>' reduce 238 - '}' reduce 238 - '=' reduce 213 - ')' reduce 238 - '&' reduce 238 - '+' reduce 238 - '-' reduce 238 - '|' reduce 238 - '^' reduce 238 - '/' reduce 238 - '%' reduce 238 - - -state 178 - localvariabledeclaration : type . variabledeclarators (168) - - IDENTIFIER shift 217 - . error - - variabledeclarators goto 285 - variabledeclarator goto 174 - variabledeclaratorid goto 66 - - -state 179 - statementwithouttrailingsubstatement : block . (170) - - . reduce 170 - - -state 180 - block : '{' blockstatements . '}' (90) - blockstatements : blockstatements . blockstatement (136) - - BOOLEAN shift 48 - CHAR shift 49 - FOR shift 154 - IF shift 155 - INT shift 50 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 167 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '}' shift 286 - '(' shift 172 - . error - - variabledeclarators goto 173 - variabledeclarator goto 174 - variabledeclaratorid goto 66 - simplename goto 175 - qualifiedname goto 176 - name goto 177 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 178 - block goto 179 - localvariabledeclarationstatement goto 181 - localvariabledeclaration goto 182 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - blockstatement goto 287 - statement goto 197 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 181 - blockstatement : localvariabledeclarationstatement . (149) - - . reduce 149 - - -state 182 - localvariabledeclarationstatement : localvariabledeclaration . ';' (158) - - ';' shift 288 - . error - - -state 183 - lambdaexpression : lambdaexpressionparameter . lambdaassignmentoperator lambdabody (212) - - LAMBDAASSIGNMENT shift 289 - . error - - lambdaassignmentoperator goto 290 - - -state 184 - primarynonewarray : literal . (244) - - . reduce 244 - - -state 185 - primary : primarynonewarray . (241) - - . reduce 241 - - -186: shift/reduce conflict (shift 291, reduce 237) on '.' -state 186 - methodinvocation : primary . '.' IDENTIFIER '(' ')' (226) - methodinvocation : primary . '.' IDENTIFIER '(' argumentlist ')' (227) - postfixexpression : primary . (237) - - '.' shift 291 - ABSTRACT reduce 237 - BOOLEAN reduce 237 - CHAR reduce 237 - FINAL reduce 237 - INSTANCEOF reduce 237 - INT reduce 237 - PRIVATE reduce 237 - PROTECTED reduce 237 - PUBLIC reduce 237 - STATIC reduce 237 - VOID reduce 237 - IDENTIFIER reduce 237 - EQUAL reduce 237 - LESSEQUAL reduce 237 - GREATEREQUAL reduce 237 - NOTEQUAL reduce 237 - LOGICALOR reduce 237 - LOGICALAND reduce 237 - INCREMENT reduce 237 - DECREMENT reduce 237 - ',' reduce 237 - ';' reduce 237 - '*' reduce 237 - '<' reduce 237 - '>' reduce 237 - '}' reduce 237 - ')' reduce 237 - '&' reduce 237 - '+' reduce 237 - '-' reduce 237 - '|' reduce 237 - '^' reduce 237 - '/' reduce 237 - '%' reduce 237 - - -state 187 - postincrementexpression : postfixexpression . INCREMENT (222) - postdecrementexpression : postfixexpression . DECREMENT (223) - - INCREMENT shift 292 - DECREMENT shift 293 - . error - - -state 188 - primarynonewarray : lambdaexpression . (247) - - . reduce 247 - - -state 189 - expressionstatement : statementexpression . ';' (188) - - ';' shift 294 - . error - - -state 190 - statementexpression : preincrementexpression . (198) - - . reduce 198 - - -state 191 - statementexpression : predecrementexpression . (199) - - . reduce 199 - - -state 192 - statementexpression : postincrementexpression . (200) - postfixexpression : postincrementexpression . (239) - - INCREMENT reduce 239 - DECREMENT reduce 239 - ';' reduce 200 - - -state 193 - statementexpression : postdecrementexpression . (201) - postfixexpression : postdecrementexpression . (240) - - INCREMENT reduce 240 - DECREMENT reduce 240 - ';' reduce 201 - - -state 194 - statementwithouttrailingsubstatement : expressionstatement . (172) - - . reduce 172 - - -state 195 - statement : statementwithouttrailingsubstatement . (159) +state 22 + numerictype : integraltype . (159) . reduce 159 -state 196 - blockstatements : blockstatement . (135) - - . reduce 135 - - -state 197 - blockstatement : statement . (150) +state 23 + primitivetype : numerictype . (150) . reduce 150 -state 198 - statement : whilestatement . (162) +state 24 + type : primitivetype . (132) + type : primitivetype . '[' ']' (133) - . reduce 162 + '[' shift 45 + ABSTRACT reduce 132 + BOOLEAN reduce 132 + CHAR reduce 132 + CLASS reduce 132 + FINAL reduce 132 + INT reduce 132 + PRIVATE reduce 132 + PROTECTED reduce 132 + PUBLIC reduce 132 + PACKAGE reduce 132 + IMPORT reduce 132 + INTERFACE reduce 132 + STATIC reduce 132 + IDENTIFIER reduce 132 + ',' reduce 132 + '>' reduce 132 -state 199 - statement : forstatement . (163) +state 25 + type : referencetype . (134) + type : referencetype . '[' ']' (135) - . reduce 163 + '[' shift 46 + ABSTRACT reduce 134 + BOOLEAN reduce 134 + CHAR reduce 134 + CLASS reduce 134 + FINAL reduce 134 + INT reduce 134 + PRIVATE reduce 134 + PROTECTED reduce 134 + PUBLIC reduce 134 + PACKAGE reduce 134 + IMPORT reduce 134 + INTERFACE reduce 134 + STATIC reduce 134 + IDENTIFIER reduce 134 + ',' reduce 134 + '>' reduce 134 -state 200 - statement : ifthenstatement . (160) +state 26 + compilationunit : type . type compilationunit (5) - . reduce 160 - - -state 201 - statement : ifthenelsestatement . (161) - - . reduce 161 - - -state 202 - statementwithouttrailingsubstatement : emptystatement . (171) - - . reduce 171 - - -state 203 - statementwithouttrailingsubstatement : returnstatement . (173) - - . reduce 173 - - -state 204 - statementexpression : assignment . (197) - - . reduce 197 - - -state 205 - assignment : lefthandside . assignmentoperator assignmentexpression (195) - assignment : lefthandside . assignmentoperator classinstancecreationexpression (196) - - PLUSEQUAL shift 295 - MINUSEQUAL shift 296 - TIMESEQUAL shift 297 - DIVIDEEQUAL shift 298 - MODULOEQUAL shift 299 - '=' shift 300 + BOOLEAN shift 2 + CHAR shift 3 + INT shift 6 + IDENTIFIER shift 14 . error - assignmentoperator goto 301 + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 47 -state 206 - statementexpression : methodinvocation . (202) - primarynonewarray : methodinvocation . (246) +state 27 + classdeclaration : modifiers . CLASS classidentifier classbody (21) + classdeclaration : modifiers . CLASS classidentifier super classbody (23) + classdeclaration : modifiers . CLASS classidentifier interfaces classbody (25) + classdeclaration : modifiers . CLASS classidentifier super interfaces classbody (27) + interfacedeclaration : modifiers . INTERFACE interfaceidentifier interfacebody (33) + interfacedeclaration : modifiers . INTERFACE interfaceidentifier extendsinterfaces interfacebody (35) + modifiers : modifiers . modifier (48) - INCREMENT reduce 246 - DECREMENT reduce 246 - ';' reduce 202 - '.' reduce 246 - - -state 207 - methodheader : VOID methoddeclarator throws . (117) - - . reduce 117 - - -state 208 - methoddeclarator : IDENTIFIER '(' ')' . (143) - - . reduce 143 - - -state 209 - formalparameter : variabledeclaratorid . (152) - - . reduce 152 - - -state 210 - formalparameter : type . variabledeclaratorid (151) - - IDENTIFIER shift 217 + ABSTRACT shift 1 + CLASS shift 48 + FINAL shift 5 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + INTERFACE shift 49 + STATIC shift 13 . error - variabledeclaratorid goto 302 + modifier goto 50 -state 211 - formalparameterlist : formalparameter . (137) +state 28 + modifiers : modifier . (47) - . reduce 137 + . reduce 47 -state 212 - formalparameterlist : formalparameterlist . ',' formalparameter (138) - methoddeclarator : IDENTIFIER '(' formalparameterlist . ')' (144) +state 29 + compilationunit : typedeclarations . (1) + typedeclarations : typedeclarations . typedeclaration (11) - ',' shift 303 - ')' shift 304 + ABSTRACT shift 1 + CLASS shift 4 + FINAL shift 5 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + INTERFACE shift 12 + STATIC shift 13 + $end reduce 1 + + classdeclaration goto 16 + interfacedeclaration goto 17 + modifiers goto 27 + modifier goto 28 + typedeclaration goto 51 + + +state 30 + compilationunit : packagedeclaration . importdeclarations typedeclarations (3) + compilationunit : packagedeclaration . typedeclarations (4) + + ABSTRACT shift 1 + CLASS shift 4 + FINAL shift 5 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + IMPORT shift 11 + INTERFACE shift 12 + STATIC shift 13 + . error + + classdeclaration goto 16 + interfacedeclaration goto 17 + importdeclaration goto 19 + importdeclarations goto 52 + modifiers goto 27 + modifier goto 28 + typedeclarations goto 53 + typedeclaration goto 31 + + +state 31 + typedeclarations : typedeclaration . (10) + + . reduce 10 + + +state 32 + classidentifier : IDENTIFIER . (30) + classidentifier : IDENTIFIER . '<' boundedClassParameters '>' (31) + + '<' shift 54 + EXTENDS reduce 30 + IMPLEMENTS reduce 30 + '{' reduce 30 + + +state 33 + classdeclaration : CLASS classidentifier . classbody (20) + classdeclaration : CLASS classidentifier . super classbody (22) + classdeclaration : CLASS classidentifier . interfaces classbody (24) + classdeclaration : CLASS classidentifier . super interfaces classbody (26) + + EXTENDS shift 55 + IMPLEMENTS shift 56 + '{' shift 57 + . error + + classbody goto 58 + super goto 59 + interfaces goto 60 + + +state 34 + name : simplename . (13) + + . reduce 13 + + +state 35 + name : qualifiedname . (12) + + . reduce 12 + + +state 36 + packagedeclaration : PACKAGE name . ';' (6) + qualifiedname : name . '.' IDENTIFIER (16) + + ';' shift 61 + '.' shift 62 . error -state 213 - boundedMethodParameters : boundedMethodParameters ',' . boundedMethodParameter (106) +state 37 + importdeclaration : IMPORT importqualifiedname . ';' (9) - IDENTIFIER shift 38 + ';' shift 63 . error - boundedMethodParameter goto 305 +state 38 + qualifiedname : name . '.' IDENTIFIER (16) + importqualifiedname : name . '.' IDENTIFIER (17) + importqualifiedname : name . '.' '*' (18) -state 214 - methodheader : '<' boundedMethodParameters '>' . type methoddeclarator (107) - methodheader : '<' boundedMethodParameters '>' . type methoddeclarator throws (112) - methodheader : '<' boundedMethodParameters '>' . VOID methoddeclarator (119) - methodheader : '<' boundedMethodParameters '>' . VOID methoddeclarator throws (121) - methodheader : '<' boundedMethodParameters '>' . methoddeclarator (124) - - BOOLEAN shift 48 - CHAR shift 49 - INT shift 50 - VOID shift 306 - IDENTIFIER shift 84 + '.' shift 64 . error - methoddeclarator goto 307 - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 308 + +state 39 + interfaceidentifier : IDENTIFIER . (28) + interfaceidentifier : IDENTIFIER . '<' boundedClassParameters '>' (29) + + '<' shift 65 + EXTENDS reduce 28 + '{' reduce 28 -state 215 - classtypelist : classtype . (141) +state 40 + interfacedeclaration : INTERFACE interfaceidentifier . interfacebody (32) + interfacedeclaration : INTERFACE interfaceidentifier . extendsinterfaces interfacebody (34) - . reduce 141 - - -state 216 - throws : THROWS classtypelist . (97) - classtypelist : classtypelist . ',' classtype (142) - - ',' shift 309 - ';' reduce 97 - '{' reduce 97 - - -state 217 - variabledeclaratorid : IDENTIFIER . (156) - - . reduce 156 - - -state 218 - variabledeclarators : variabledeclarators ',' variabledeclarator . (133) - - . reduce 133 - - -state 219 - classinstancecreationexpression : NEW . classtype '(' ')' (228) - classinstancecreationexpression : NEW . classtype '(' argumentlist ')' (229) - - IDENTIFIER shift 42 + EXTENDS shift 66 + '{' shift 67 . error - simplename goto 43 - classtype goto 310 - classorinterfacetype goto 45 + interfacebody goto 68 + extendsinterfaces goto 69 -state 220 - lambdaexpressionparameter : '(' . ')' (210) - lambdaexpressionparameter : '(' . formalparameterlist ')' (211) - castexpression : '(' . primitivetype ')' unaryexpression (261) +state 41 + parameter : '<' . typelist '>' (75) - BOOLEAN shift 48 - CHAR shift 49 - INT shift 50 - IDENTIFIER shift 167 - ')' shift 281 + BOOLEAN shift 2 + CHAR shift 3 + INT shift 6 + IDENTIFIER shift 14 . error - variabledeclaratorid goto 209 - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 311 - referencetype goto 72 - type goto 210 - formalparameter goto 211 - formalparameterlist goto 282 + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 70 + typelist goto 71 -state 221 - unaryexpression : '+' . unaryexpression (234) +state 42 + classorinterfacetype : simplename parameter . (71) - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 + . reduce 71 + + +state 43 + importdeclarations : importdeclarations importdeclaration . (8) + + . reduce 8 + + +state 44 + compilationunit : importdeclarations typedeclarations . (2) + typedeclarations : typedeclarations . typedeclaration (11) + + ABSTRACT shift 1 + CLASS shift 4 + FINAL shift 5 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + INTERFACE shift 12 + STATIC shift 13 + $end reduce 2 + + classdeclaration goto 16 + interfacedeclaration goto 17 + modifiers goto 27 + modifier goto 28 + typedeclaration goto 51 + + +state 45 + type : primitivetype '[' . ']' (133) + + ']' shift 72 . error - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 312 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 +state 46 + type : referencetype '[' . ']' (135) -state 222 - unaryexpression : '-' . unaryexpression (235) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 + ']' shift 73 . error - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 313 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 +state 47 + compilationunit : type type . compilationunit (5) -state 223 - unaryexpressionnotplusminus : '!' . unaryexpression (249) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 + ABSTRACT shift 1 + BOOLEAN shift 2 + CHAR shift 3 + CLASS shift 4 + FINAL shift 5 + INT shift 6 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + PACKAGE shift 10 + IMPORT shift 11 + INTERFACE shift 12 + STATIC shift 13 + IDENTIFIER shift 14 . error - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 314 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 + compilationunit goto 74 + classdeclaration goto 16 + interfacedeclaration goto 17 + simplename goto 18 + importdeclaration goto 19 + importdeclarations goto 20 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 26 + modifiers goto 27 + modifier goto 28 + typedeclarations goto 29 + packagedeclaration goto 30 + typedeclaration goto 31 -state 224 - name : simplename . (9) +state 48 + classdeclaration : modifiers CLASS . classidentifier classbody (21) + classdeclaration : modifiers CLASS . classidentifier super classbody (23) + classdeclaration : modifiers CLASS . classidentifier interfaces classbody (25) + classdeclaration : modifiers CLASS . classidentifier super interfaces classbody (27) + + IDENTIFIER shift 32 + . error + + classidentifier goto 75 + + +state 49 + interfacedeclaration : modifiers INTERFACE . interfaceidentifier interfacebody (33) + interfacedeclaration : modifiers INTERFACE . interfaceidentifier extendsinterfaces interfacebody (35) + + IDENTIFIER shift 39 + . error + + interfaceidentifier goto 76 + + +state 50 + modifiers : modifiers modifier . (48) + + . reduce 48 + + +state 51 + typedeclarations : typedeclarations typedeclaration . (11) + + . reduce 11 + + +state 52 + compilationunit : packagedeclaration importdeclarations . typedeclarations (3) + importdeclarations : importdeclarations . importdeclaration (8) + + ABSTRACT shift 1 + CLASS shift 4 + FINAL shift 5 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + IMPORT shift 11 + INTERFACE shift 12 + STATIC shift 13 + . error + + classdeclaration goto 16 + interfacedeclaration goto 17 + importdeclaration goto 43 + modifiers goto 27 + modifier goto 28 + typedeclarations goto 77 + typedeclaration goto 31 + + +state 53 + compilationunit : packagedeclaration typedeclarations . (4) + typedeclarations : typedeclarations . typedeclaration (11) + + ABSTRACT shift 1 + CLASS shift 4 + FINAL shift 5 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + INTERFACE shift 12 + STATIC shift 13 + $end reduce 4 + + classdeclaration goto 16 + interfacedeclaration goto 17 + modifiers goto 27 + modifier goto 28 + typedeclaration goto 51 + + +state 54 + classidentifier : IDENTIFIER '<' . boundedClassParameters '>' (31) + + IDENTIFIER shift 78 + . error + + boundedMethodParameter goto 79 + boundedClassParameter goto 80 + boundedClassParameters goto 81 + + +state 55 + super : EXTENDS . classtype (49) + + IDENTIFIER shift 14 + . error + + simplename goto 18 + classtype goto 82 + classorinterfacetype goto 83 + + +state 56 + interfaces : IMPLEMENTS . interfacetype (50) + + IDENTIFIER shift 14 + . error + + simplename goto 18 + classorinterfacetype goto 84 + interfacetype goto 85 + + +state 57 + classbody : '{' . '}' (45) + classbody : '{' . classbodydeclarations '}' (46) + + ABSTRACT shift 1 + BOOLEAN shift 2 + CHAR shift 3 + FINAL shift 5 + INT shift 6 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + STATIC shift 86 + VOID shift 87 + IDENTIFIER shift 88 + '<' shift 89 + '}' shift 90 + . error + + fielddeclaration goto 91 + methodheader goto 92 + methoddeclaration goto 93 + methoddeclarator goto 94 + classbodydeclarations goto 95 + classbodydeclaration goto 96 + classmemberdeclaration goto 97 + variabledeclarators goto 98 + fielddeclarator goto 99 + variabledeclarator goto 100 + variabledeclaratorid goto 101 + simplename goto 102 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 103 + modifiers goto 104 + modifier goto 28 + constructordeclaration goto 105 + constructordeclarator goto 106 + staticinitializer goto 107 + + +state 58 + classdeclaration : CLASS classidentifier classbody . (20) + + . reduce 20 + + +state 59 + classdeclaration : CLASS classidentifier super . classbody (22) + classdeclaration : CLASS classidentifier super . interfaces classbody (26) + + IMPLEMENTS shift 56 + '{' shift 57 + . error + + classbody goto 108 + interfaces goto 109 + + +state 60 + classdeclaration : CLASS classidentifier interfaces . classbody (24) + interfaces : interfaces . ',' interfacetype (51) + + ',' shift 110 + '{' shift 57 + . error + + classbody goto 111 + + +state 61 + packagedeclaration : PACKAGE name ';' . (6) + + . reduce 6 + + +state 62 + qualifiedname : name '.' . IDENTIFIER (16) + + IDENTIFIER shift 112 + . error + + +state 63 + importdeclaration : IMPORT importqualifiedname ';' . (9) . reduce 9 -225: shift/reduce conflict (shift 292, reduce 248) on INCREMENT -225: shift/reduce conflict (shift 293, reduce 248) on DECREMENT -state 225 - postincrementexpression : postfixexpression . INCREMENT (222) - postdecrementexpression : postfixexpression . DECREMENT (223) - unaryexpressionnotplusminus : postfixexpression . (248) +state 64 + qualifiedname : name '.' . IDENTIFIER (16) + importqualifiedname : name '.' . IDENTIFIER (17) + importqualifiedname : name '.' . '*' (18) - INCREMENT shift 292 - DECREMENT shift 293 - ABSTRACT reduce 248 - BOOLEAN reduce 248 - CHAR reduce 248 - FINAL reduce 248 - INSTANCEOF reduce 248 - INT reduce 248 - PRIVATE reduce 248 - PROTECTED reduce 248 - PUBLIC reduce 248 - STATIC reduce 248 - VOID reduce 248 - IDENTIFIER reduce 248 - EQUAL reduce 248 - LESSEQUAL reduce 248 - GREATEREQUAL reduce 248 - NOTEQUAL reduce 248 - LOGICALOR reduce 248 - LOGICALAND reduce 248 - ',' reduce 248 - ';' reduce 248 - '.' reduce 248 - '*' reduce 248 - '<' reduce 248 - '>' reduce 248 - '}' reduce 248 - ')' reduce 248 - '&' reduce 248 - '+' reduce 248 - '-' reduce 248 - '|' reduce 248 - '^' reduce 248 - '/' reduce 248 - '%' reduce 248 + IDENTIFIER shift 113 + '*' shift 114 + . error + + +state 65 + interfaceidentifier : IDENTIFIER '<' . boundedClassParameters '>' (29) + + IDENTIFIER shift 78 + . error + + boundedMethodParameter goto 79 + boundedClassParameter goto 80 + boundedClassParameters goto 115 + + +state 66 + extendsinterfaces : EXTENDS . interfacetype (54) + + IDENTIFIER shift 14 + . error + + simplename goto 18 + classorinterfacetype goto 84 + interfacetype goto 116 + + +state 67 + interfacebody : '{' . '}' (52) + interfacebody : '{' . interfacememberdeclarations '}' (53) + + ABSTRACT shift 1 + BOOLEAN shift 2 + CHAR shift 3 + FINAL shift 5 + INT shift 6 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + STATIC shift 13 + VOID shift 87 + IDENTIFIER shift 117 + '<' shift 89 + '}' shift 118 + . error + + interfacememberdeclarations goto 119 + interfacememberdeclaration goto 120 + abstractmethoddeclaration goto 121 + constantdeclaration goto 122 + methodheader goto 123 + methoddeclarator goto 94 + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 124 + modifiers goto 125 + modifier goto 28 + + +state 68 + interfacedeclaration : INTERFACE interfaceidentifier interfacebody . (32) + + . reduce 32 + + +state 69 + interfacedeclaration : INTERFACE interfaceidentifier extendsinterfaces . interfacebody (34) + extendsinterfaces : extendsinterfaces . ',' interfacetype (55) + + ',' shift 126 + '{' shift 67 + . error + + interfacebody goto 127 + + +state 70 + typelist : type . (72) + + . reduce 72 + + +state 71 + typelist : typelist . ',' type (73) + parameter : '<' typelist . '>' (75) + + ',' shift 128 + '>' shift 129 + . error + + +state 72 + type : primitivetype '[' ']' . (133) + + . reduce 133 + + +state 73 + type : referencetype '[' ']' . (135) + + . reduce 135 + + +state 74 + compilationunit : type type compilationunit . (5) + + . reduce 5 + + +state 75 + classdeclaration : modifiers CLASS classidentifier . classbody (21) + classdeclaration : modifiers CLASS classidentifier . super classbody (23) + classdeclaration : modifiers CLASS classidentifier . interfaces classbody (25) + classdeclaration : modifiers CLASS classidentifier . super interfaces classbody (27) + + EXTENDS shift 55 + IMPLEMENTS shift 56 + '{' shift 57 + . error + + classbody goto 130 + super goto 131 + interfaces goto 132 + + +state 76 + interfacedeclaration : modifiers INTERFACE interfaceidentifier . interfacebody (33) + interfacedeclaration : modifiers INTERFACE interfaceidentifier . extendsinterfaces interfacebody (35) + + EXTENDS shift 66 + '{' shift 67 + . error + + interfacebody goto 133 + extendsinterfaces goto 134 + + +state 77 + compilationunit : packagedeclaration importdeclarations typedeclarations . (3) + typedeclarations : typedeclarations . typedeclaration (11) + + ABSTRACT shift 1 + CLASS shift 4 + FINAL shift 5 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + INTERFACE shift 12 + STATIC shift 13 + $end reduce 3 + + classdeclaration goto 16 + interfacedeclaration goto 17 + modifiers goto 27 + modifier goto 28 + typedeclaration goto 51 + + +state 78 + boundedMethodParameter : IDENTIFIER . (105) + boundedMethodParameter : IDENTIFIER . EXTENDS boundedclassidentifierlist (106) + + EXTENDS shift 135 + ',' reduce 105 + '>' reduce 105 + + +state 79 + boundedClassParameter : boundedMethodParameter . (102) + + . reduce 102 + + +state 80 + boundedClassParameters : boundedClassParameter . (103) + + . reduce 103 + + +state 81 + classidentifier : IDENTIFIER '<' boundedClassParameters . '>' (31) + boundedClassParameters : boundedClassParameters . ',' boundedClassParameter (104) + + ',' shift 136 + '>' shift 137 + . error + + +state 82 + super : EXTENDS classtype . (49) + + . reduce 49 + + +state 83 + classtype : classorinterfacetype . (64) + + . reduce 64 + + +state 84 + interfacetype : classorinterfacetype . (67) + + . reduce 67 + + +state 85 + interfaces : IMPLEMENTS interfacetype . (50) + + . reduce 50 + + +state 86 + modifier : STATIC . (61) + staticinitializer : STATIC . block (80) + + '{' shift 138 + ABSTRACT reduce 61 + BOOLEAN reduce 61 + CHAR reduce 61 + FINAL reduce 61 + INT reduce 61 + PRIVATE reduce 61 + PROTECTED reduce 61 + PUBLIC reduce 61 + STATIC reduce 61 + VOID reduce 61 + IDENTIFIER reduce 61 + '<' reduce 61 + + block goto 139 + + +state 87 + methodheader : VOID . methoddeclarator (119) + methodheader : VOID . methoddeclarator throws (121) + + IDENTIFIER shift 140 + . error + + methoddeclarator goto 141 + + +88: shift/reduce conflict (shift 142, reduce 19) on '(' +state 88 + simplename : IDENTIFIER . (19) + methoddeclarator : IDENTIFIER . '(' ')' (147) + methoddeclarator : IDENTIFIER . '(' formalparameterlist ')' (148) + variabledeclaratorid : IDENTIFIER . (160) + + '(' shift 142 + BOOLEAN reduce 19 + CHAR reduce 19 + INT reduce 19 + IDENTIFIER reduce 19 + ',' reduce 160 + ';' reduce 160 + '<' reduce 19 + '=' reduce 160 + '[' reduce 19 + + +state 89 + methodheader : '<' . boundedMethodParameters '>' type methoddeclarator (111) + methodheader : '<' . boundedMethodParameters '>' type methoddeclarator throws (116) + methodheader : '<' . boundedMethodParameters '>' VOID methoddeclarator (123) + methodheader : '<' . boundedMethodParameters '>' VOID methoddeclarator throws (125) + methodheader : '<' . boundedMethodParameters '>' methoddeclarator (128) + + IDENTIFIER shift 78 + . error + + boundedMethodParameter goto 143 + boundedMethodParameters goto 144 + + +state 90 + classbody : '{' '}' . (45) + + . reduce 45 + + +state 91 + classmemberdeclaration : fielddeclaration . (78) + + . reduce 78 + + +state 92 + methoddeclaration : methodheader . methodbody (92) + + '{' shift 138 + . error + + block goto 145 + methodbody goto 146 + + +state 93 + classmemberdeclaration : methoddeclaration . (79) + + . reduce 79 + + +state 94 + methodheader : methoddeclarator . (127) + methodheader : methoddeclarator . throws (130) + + THROWS shift 147 + ';' reduce 127 + '{' reduce 127 + + throws goto 148 + + +state 95 + classbody : '{' classbodydeclarations . '}' (46) + classbodydeclarations : classbodydeclarations . classbodydeclaration (57) + + ABSTRACT shift 1 + BOOLEAN shift 2 + CHAR shift 3 + FINAL shift 5 + INT shift 6 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + STATIC shift 86 + VOID shift 87 + IDENTIFIER shift 88 + '<' shift 89 + '}' shift 149 + . error + + fielddeclaration goto 91 + methodheader goto 92 + methoddeclaration goto 93 + methoddeclarator goto 94 + classbodydeclaration goto 150 + classmemberdeclaration goto 97 + variabledeclarators goto 98 + fielddeclarator goto 99 + variabledeclarator goto 100 + variabledeclaratorid goto 101 + simplename goto 102 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 103 + modifiers goto 104 + modifier goto 28 + constructordeclaration goto 105 + constructordeclarator goto 106 + staticinitializer goto 107 + + +state 96 + classbodydeclarations : classbodydeclaration . (56) + + . reduce 56 + + +state 97 + classbodydeclaration : classmemberdeclaration . (68) + + . reduce 68 + + +state 98 + fielddeclaration : variabledeclarators . ';' (89) + variabledeclarators : variabledeclarators . ',' variabledeclarator (137) + + ',' shift 151 + ';' shift 152 + . error + + +state 99 + fielddeclaration : fielddeclarator . ';' (87) + + ';' shift 153 + . error + + +state 100 + fielddeclarator : variabledeclarator . '=' expression (86) + variabledeclarators : variabledeclarator . (136) + + '=' shift 154 + ',' reduce 136 + ';' reduce 136 + + +state 101 + variabledeclarator : variabledeclaratorid . (152) + + . reduce 152 + + +state 102 + classorinterfacetype : simplename . parameter (71) + constructordeclarator : simplename . '(' ')' (95) + constructordeclarator : simplename . '(' formalparameterlist ')' (96) + parameter : . (74) + + '<' shift 41 + '(' shift 155 + BOOLEAN reduce 74 + CHAR reduce 74 + INT reduce 74 + IDENTIFIER reduce 74 + '[' reduce 74 + + parameter goto 42 + + +state 103 + fielddeclarator : type . variabledeclarator '=' expression (85) + fielddeclaration : type . fielddeclarator (88) + fielddeclaration : type . variabledeclarators ';' (90) + methodheader : type . methoddeclarator (112) + methodheader : type . methoddeclarator throws (115) + + BOOLEAN shift 2 + CHAR shift 3 + INT shift 6 + IDENTIFIER shift 88 + . error + + methoddeclarator goto 156 + variabledeclarators goto 157 + fielddeclarator goto 158 + variabledeclarator goto 159 + variabledeclaratorid goto 101 + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 160 + + +state 104 + modifiers : modifiers . modifier (48) + constructordeclaration : modifiers . constructordeclarator constructorbody (82) + fielddeclaration : modifiers . type variabledeclarators ';' (91) + methodheader : modifiers . type methoddeclarator (113) + methodheader : modifiers . '<' boundedMethodParameters '>' type methoddeclarator (114) + methodheader : modifiers . type methoddeclarator throws (117) + methodheader : modifiers . '<' boundedMethodParameters '>' type methoddeclarator throws (118) + methodheader : modifiers . VOID methoddeclarator (120) + methodheader : modifiers . VOID methoddeclarator throws (122) + methodheader : modifiers . '<' boundedMethodParameters '>' VOID methoddeclarator (124) + methodheader : modifiers . '<' boundedMethodParameters '>' VOID methoddeclarator throws (126) + methodheader : modifiers . methoddeclarator (129) + methodheader : modifiers . methoddeclarator throws (131) + + ABSTRACT shift 1 + BOOLEAN shift 2 + CHAR shift 3 + FINAL shift 5 + INT shift 6 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + STATIC shift 13 + VOID shift 161 + IDENTIFIER shift 117 + '<' shift 162 + . error + + methoddeclarator goto 163 + simplename goto 102 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 164 + modifier goto 50 + constructordeclarator goto 165 + + +state 105 + classbodydeclaration : constructordeclaration . (70) + + . reduce 70 + + +state 106 + constructordeclaration : constructordeclarator . constructorbody (81) + + '{' shift 166 + . error + + constructorbody goto 167 + + +state 107 + classbodydeclaration : staticinitializer . (69) + + . reduce 69 + + +state 108 + classdeclaration : CLASS classidentifier super classbody . (22) + + . reduce 22 + + +state 109 + classdeclaration : CLASS classidentifier super interfaces . classbody (26) + interfaces : interfaces . ',' interfacetype (51) + + ',' shift 110 + '{' shift 57 + . error + + classbody goto 168 + + +state 110 + interfaces : interfaces ',' . interfacetype (51) + + IDENTIFIER shift 14 + . error + + simplename goto 18 + classorinterfacetype goto 84 + interfacetype goto 169 + + +state 111 + classdeclaration : CLASS classidentifier interfaces classbody . (24) + + . reduce 24 + + +state 112 + qualifiedname : name '.' IDENTIFIER . (16) + + . reduce 16 + + +state 113 + qualifiedname : name '.' IDENTIFIER . (16) + importqualifiedname : name '.' IDENTIFIER . (17) + + ';' reduce 17 + '.' reduce 16 + + +state 114 + importqualifiedname : name '.' '*' . (18) + + . reduce 18 + + +state 115 + interfaceidentifier : IDENTIFIER '<' boundedClassParameters . '>' (29) + boundedClassParameters : boundedClassParameters . ',' boundedClassParameter (104) + + ',' shift 136 + '>' shift 170 + . error + + +state 116 + extendsinterfaces : EXTENDS interfacetype . (54) + + . reduce 54 + + +117: shift/reduce conflict (shift 142, reduce 19) on '(' +state 117 + simplename : IDENTIFIER . (19) + methoddeclarator : IDENTIFIER . '(' ')' (147) + methoddeclarator : IDENTIFIER . '(' formalparameterlist ')' (148) + + '(' shift 142 + IDENTIFIER reduce 19 + '<' reduce 19 + '[' reduce 19 + + +state 118 + interfacebody : '{' '}' . (52) + + . reduce 52 + + +state 119 + interfacebody : '{' interfacememberdeclarations . '}' (53) + interfacememberdeclarations : interfacememberdeclarations . interfacememberdeclaration (66) + + ABSTRACT shift 1 + BOOLEAN shift 2 + CHAR shift 3 + FINAL shift 5 + INT shift 6 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + STATIC shift 13 + VOID shift 87 + IDENTIFIER shift 117 + '<' shift 89 + '}' shift 171 + . error + + interfacememberdeclaration goto 172 + abstractmethoddeclaration goto 121 + constantdeclaration goto 122 + methodheader goto 123 + methoddeclarator goto 94 + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 124 + modifiers goto 125 + modifier goto 28 + + +state 120 + interfacememberdeclarations : interfacememberdeclaration . (65) + + . reduce 65 + + +state 121 + interfacememberdeclaration : abstractmethoddeclaration . (77) + + . reduce 77 + + +state 122 + interfacememberdeclaration : constantdeclaration . (76) + + . reduce 76 + + +state 123 + abstractmethoddeclaration : methodheader . ';' (84) + + ';' shift 173 + . error + + +state 124 + methodheader : type . methoddeclarator (112) + methodheader : type . methoddeclarator throws (115) + + IDENTIFIER shift 140 + . error + + methoddeclarator goto 156 + + +state 125 + modifiers : modifiers . modifier (48) + constantdeclaration : modifiers . type IDENTIFIER '=' expression ';' (83) + methodheader : modifiers . type methoddeclarator (113) + methodheader : modifiers . '<' boundedMethodParameters '>' type methoddeclarator (114) + methodheader : modifiers . type methoddeclarator throws (117) + methodheader : modifiers . '<' boundedMethodParameters '>' type methoddeclarator throws (118) + methodheader : modifiers . VOID methoddeclarator (120) + methodheader : modifiers . VOID methoddeclarator throws (122) + methodheader : modifiers . '<' boundedMethodParameters '>' VOID methoddeclarator (124) + methodheader : modifiers . '<' boundedMethodParameters '>' VOID methoddeclarator throws (126) + methodheader : modifiers . methoddeclarator (129) + methodheader : modifiers . methoddeclarator throws (131) + + ABSTRACT shift 1 + BOOLEAN shift 2 + CHAR shift 3 + FINAL shift 5 + INT shift 6 + PRIVATE shift 7 + PROTECTED shift 8 + PUBLIC shift 9 + STATIC shift 13 + VOID shift 161 + IDENTIFIER shift 117 + '<' shift 162 + . error + + methoddeclarator goto 163 + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 174 + modifier goto 50 + + +state 126 + extendsinterfaces : extendsinterfaces ',' . interfacetype (55) + + IDENTIFIER shift 14 + . error + + simplename goto 18 + classorinterfacetype goto 84 + interfacetype goto 175 + + +state 127 + interfacedeclaration : INTERFACE interfaceidentifier extendsinterfaces interfacebody . (34) + + . reduce 34 + + +state 128 + typelist : typelist ',' . type (73) + + BOOLEAN shift 2 + CHAR shift 3 + INT shift 6 + IDENTIFIER shift 14 + . error + + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 176 + + +state 129 + parameter : '<' typelist '>' . (75) + + . reduce 75 + + +state 130 + classdeclaration : modifiers CLASS classidentifier classbody . (21) + + . reduce 21 + + +state 131 + classdeclaration : modifiers CLASS classidentifier super . classbody (23) + classdeclaration : modifiers CLASS classidentifier super . interfaces classbody (27) + + IMPLEMENTS shift 56 + '{' shift 57 + . error + + classbody goto 177 + interfaces goto 178 + + +state 132 + classdeclaration : modifiers CLASS classidentifier interfaces . classbody (25) + interfaces : interfaces . ',' interfacetype (51) + + ',' shift 110 + '{' shift 57 + . error + + classbody goto 179 + + +state 133 + interfacedeclaration : modifiers INTERFACE interfaceidentifier interfacebody . (33) + + . reduce 33 + + +state 134 + interfacedeclaration : modifiers INTERFACE interfaceidentifier extendsinterfaces . interfacebody (35) + extendsinterfaces : extendsinterfaces . ',' interfacetype (55) + + ',' shift 126 + '{' shift 67 + . error + + interfacebody goto 180 + + +state 135 + boundedMethodParameter : IDENTIFIER EXTENDS . boundedclassidentifierlist (106) + + IDENTIFIER shift 14 + . error + + simplename goto 18 + classorinterfacetype goto 21 + referencetype goto 181 + boundedclassidentifierlist goto 182 + + +state 136 + boundedClassParameters : boundedClassParameters ',' . boundedClassParameter (104) + + IDENTIFIER shift 78 + . error + + boundedMethodParameter goto 79 + boundedClassParameter goto 183 + + +state 137 + classidentifier : IDENTIFIER '<' boundedClassParameters '>' . (31) + + . reduce 31 + + +state 138 + block : '{' . '}' (93) + block : '{' . blockstatements '}' (94) + + BOOLEAN shift 2 + CHAR shift 3 + FOR shift 184 + IF shift 185 + INT shift 6 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 197 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '}' shift 201 + '(' shift 202 + . error + + variabledeclarators goto 203 + variabledeclarator goto 204 + variabledeclaratorid goto 101 + simplename goto 205 + qualifiedname goto 35 + name goto 206 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 207 + block goto 208 + blockstatements goto 209 + localvariabledeclarationstatement goto 210 + localvariabledeclaration goto 211 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + blockstatement goto 225 + statement goto 226 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 139 + staticinitializer : STATIC block . (80) + + . reduce 80 + + +state 140 + methoddeclarator : IDENTIFIER . '(' ')' (147) + methoddeclarator : IDENTIFIER . '(' formalparameterlist ')' (148) + + '(' shift 142 + . error + + +state 141 + methodheader : VOID methoddeclarator . (119) + methodheader : VOID methoddeclarator . throws (121) + + THROWS shift 147 + ';' reduce 119 + '{' reduce 119 + + throws goto 236 + + +state 142 + methoddeclarator : IDENTIFIER '(' . ')' (147) + methoddeclarator : IDENTIFIER '(' . formalparameterlist ')' (148) + + BOOLEAN shift 2 + CHAR shift 3 + INT shift 6 + IDENTIFIER shift 197 + ')' shift 237 + . error + + variabledeclaratorid goto 238 + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 239 + formalparameter goto 240 + formalparameterlist goto 241 + + +state 143 + boundedMethodParameters : boundedMethodParameter . (109) + + . reduce 109 + + +state 144 + boundedMethodParameters : boundedMethodParameters . ',' boundedMethodParameter (110) + methodheader : '<' boundedMethodParameters . '>' type methoddeclarator (111) + methodheader : '<' boundedMethodParameters . '>' type methoddeclarator throws (116) + methodheader : '<' boundedMethodParameters . '>' VOID methoddeclarator (123) + methodheader : '<' boundedMethodParameters . '>' VOID methoddeclarator throws (125) + methodheader : '<' boundedMethodParameters . '>' methoddeclarator (128) + + ',' shift 242 + '>' shift 243 + . error + + +state 145 + methodbody : block . (138) + + . reduce 138 + + +state 146 + methoddeclaration : methodheader methodbody . (92) + + . reduce 92 + + +state 147 + throws : THROWS . classtypelist (101) + + IDENTIFIER shift 14 + . error + + simplename goto 18 + classtype goto 244 + classorinterfacetype goto 83 + classtypelist goto 245 + + +state 148 + methodheader : methoddeclarator throws . (130) + + . reduce 130 + + +state 149 + classbody : '{' classbodydeclarations '}' . (46) + + . reduce 46 + + +state 150 + classbodydeclarations : classbodydeclarations classbodydeclaration . (57) + + . reduce 57 + + +state 151 + variabledeclarators : variabledeclarators ',' . variabledeclarator (137) + + IDENTIFIER shift 246 + . error + + variabledeclarator goto 247 + variabledeclaratorid goto 101 + + +state 152 + fielddeclaration : variabledeclarators ';' . (89) + + . reduce 89 + + +state 153 + fielddeclaration : fielddeclarator ';' . (87) + + . reduce 87 + + +state 154 + fielddeclarator : variabledeclarator '=' . expression (86) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 268 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 155 + constructordeclarator : simplename '(' . ')' (95) + constructordeclarator : simplename '(' . formalparameterlist ')' (96) + + BOOLEAN shift 2 + CHAR shift 3 + INT shift 6 + IDENTIFIER shift 197 + ')' shift 277 + . error + + variabledeclaratorid goto 238 + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 239 + formalparameter goto 240 + formalparameterlist goto 278 + + +state 156 + methodheader : type methoddeclarator . (112) + methodheader : type methoddeclarator . throws (115) + + THROWS shift 147 + ';' reduce 112 + '{' reduce 112 + + throws goto 279 + + +state 157 + fielddeclaration : type variabledeclarators . ';' (90) + variabledeclarators : variabledeclarators . ',' variabledeclarator (137) + + ',' shift 151 + ';' shift 280 + . error + + +state 158 + fielddeclaration : type fielddeclarator . (88) + + . reduce 88 + + +state 159 + fielddeclarator : type variabledeclarator . '=' expression (85) + fielddeclarator : variabledeclarator . '=' expression (86) + variabledeclarators : variabledeclarator . (136) + + '=' shift 281 + ',' reduce 136 + ';' reduce 136 + + +state 160 + fielddeclarator : type . variabledeclarator '=' expression (85) + + IDENTIFIER shift 246 + . error + + variabledeclarator goto 282 + variabledeclaratorid goto 101 + + +state 161 + methodheader : modifiers VOID . methoddeclarator (120) + methodheader : modifiers VOID . methoddeclarator throws (122) + + IDENTIFIER shift 140 + . error + + methoddeclarator goto 283 + + +state 162 + methodheader : modifiers '<' . boundedMethodParameters '>' type methoddeclarator (114) + methodheader : modifiers '<' . boundedMethodParameters '>' type methoddeclarator throws (118) + methodheader : modifiers '<' . boundedMethodParameters '>' VOID methoddeclarator (124) + methodheader : modifiers '<' . boundedMethodParameters '>' VOID methoddeclarator throws (126) + + IDENTIFIER shift 78 + . error + + boundedMethodParameter goto 143 + boundedMethodParameters goto 284 + + +state 163 + methodheader : modifiers methoddeclarator . (129) + methodheader : modifiers methoddeclarator . throws (131) + + THROWS shift 147 + ';' reduce 129 + '{' reduce 129 + + throws goto 285 + + +state 164 + fielddeclaration : modifiers type . variabledeclarators ';' (91) + methodheader : modifiers type . methoddeclarator (113) + methodheader : modifiers type . methoddeclarator throws (117) + + IDENTIFIER shift 286 + . error + + methoddeclarator goto 287 + variabledeclarators goto 288 + variabledeclarator goto 204 + variabledeclaratorid goto 101 + + +state 165 + constructordeclaration : modifiers constructordeclarator . constructorbody (82) + + '{' shift 166 + . error + + constructorbody goto 289 + + +state 166 + constructorbody : '{' . '}' (97) + constructorbody : '{' . explicitconstructorinvocation '}' (98) + constructorbody : '{' . blockstatements '}' (99) + constructorbody : '{' . explicitconstructorinvocation blockstatements '}' (100) + + BOOLEAN shift 2 + CHAR shift 3 + FOR shift 184 + IF shift 185 + INT shift 6 + RETURN shift 186 + THIS shift 290 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 197 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '}' shift 291 + '(' shift 202 + . error + + variabledeclarators goto 203 + variabledeclarator goto 204 + variabledeclaratorid goto 101 + simplename goto 205 + qualifiedname goto 35 + name goto 206 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 207 + block goto 208 + blockstatements goto 292 + localvariabledeclarationstatement goto 210 + localvariabledeclaration goto 211 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + blockstatement goto 225 + statement goto 226 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + explicitconstructorinvocation goto 293 + + +state 167 + constructordeclaration : constructordeclarator constructorbody . (81) + + . reduce 81 + + +state 168 + classdeclaration : CLASS classidentifier super interfaces classbody . (26) + + . reduce 26 + + +state 169 + interfaces : interfaces ',' interfacetype . (51) + + . reduce 51 + + +state 170 + interfaceidentifier : IDENTIFIER '<' boundedClassParameters '>' . (29) + + . reduce 29 + + +state 171 + interfacebody : '{' interfacememberdeclarations '}' . (53) + + . reduce 53 + + +state 172 + interfacememberdeclarations : interfacememberdeclarations interfacememberdeclaration . (66) + + . reduce 66 + + +state 173 + abstractmethoddeclaration : methodheader ';' . (84) + + . reduce 84 + + +state 174 + constantdeclaration : modifiers type . IDENTIFIER '=' expression ';' (83) + methodheader : modifiers type . methoddeclarator (113) + methodheader : modifiers type . methoddeclarator throws (117) + + IDENTIFIER shift 294 + . error + + methoddeclarator goto 287 + + +state 175 + extendsinterfaces : extendsinterfaces ',' interfacetype . (55) + + . reduce 55 + + +state 176 + typelist : typelist ',' type . (73) + + . reduce 73 + + +state 177 + classdeclaration : modifiers CLASS classidentifier super classbody . (23) + + . reduce 23 + + +state 178 + classdeclaration : modifiers CLASS classidentifier super interfaces . classbody (27) + interfaces : interfaces . ',' interfacetype (51) + + ',' shift 110 + '{' shift 57 + . error + + classbody goto 295 + + +state 179 + classdeclaration : modifiers CLASS classidentifier interfaces classbody . (25) + + . reduce 25 + + +state 180 + interfacedeclaration : modifiers INTERFACE interfaceidentifier extendsinterfaces interfacebody . (35) + + . reduce 35 + + +state 181 + boundedclassidentifierlist : referencetype . (107) + + . reduce 107 + + +state 182 + boundedMethodParameter : IDENTIFIER EXTENDS boundedclassidentifierlist . (106) + boundedclassidentifierlist : boundedclassidentifierlist . '&' referencetype (108) + + '&' shift 296 + ',' reduce 106 + '>' reduce 106 + + +state 183 + boundedClassParameters : boundedClassParameters ',' boundedClassParameter . (104) + + . reduce 104 + + +state 184 + forstatement : FOR . '(' expression ';' expression ';' expression ')' statement (181) + forstatement : FOR . '(' expression ';' expression ';' ')' statement (182) + forstatement : FOR . '(' expression ';' ';' expression ')' statement (183) + forstatement : FOR . '(' ';' expression ';' expression ')' statement (184) + forstatement : FOR . '(' expression ';' ';' ')' statement (185) + forstatement : FOR . '(' ';' expression ';' ')' statement (186) + forstatement : FOR . '(' ';' ';' expression ')' statement (187) + forstatement : FOR . '(' ';' ';' ')' statement (188) + + '(' shift 297 + . error + + +state 185 + ifthenstatement : IF . '(' expression ')' statement (178) + ifthenelsestatement : IF . '(' expression ')' statementnoshortif ELSE statement (179) + + '(' shift 298 + . error + + +state 186 + returnstatement : RETURN . ';' (193) + returnstatement : RETURN . expression ';' (194) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 299 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 300 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 187 + primarynonewarray : THIS . (249) + + . reduce 249 + + +state 188 + whilestatement : WHILE . '(' expression ')' statement (180) + + '(' shift 301 + . error + + +state 189 + literal : INTLITERAL . (257) + + . reduce 257 + + +state 190 + literal : LONGLITERAL . (261) + + . reduce 261 + + +state 191 + literal : DOUBLELITERAL . (263) + + . reduce 263 + + +state 192 + literal : FLOATLITERAL . (262) + + . reduce 262 + + +state 193 + literal : BOOLLITERAL . (258) + + . reduce 258 + + +state 194 + literal : JNULL . (264) + + . reduce 264 + + +state 195 + literal : CHARLITERAL . (259) + + . reduce 259 + + +state 196 + literal : STRINGLITERAL . (260) + + . reduce 260 + + +state 197 + simplename : IDENTIFIER . (19) + variabledeclaratorid : IDENTIFIER . (160) + + IDENTIFIER reduce 19 + INCREMENT reduce 19 + DECREMENT reduce 19 + PLUSEQUAL reduce 19 + MINUSEQUAL reduce 19 + TIMESEQUAL reduce 19 + DIVIDEEQUAL reduce 19 + MODULOEQUAL reduce 19 + ',' reduce 160 + ';' reduce 160 + '.' reduce 19 + '<' reduce 19 + '=' reduce 19 + '(' reduce 19 + ')' reduce 160 + '[' reduce 19 + + +state 198 + preincrementexpression : INCREMENT . unaryexpression (224) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 303 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 199 + predecrementexpression : DECREMENT . unaryexpression (225) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 304 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 200 + emptystatement : ';' . (191) + + . reduce 191 + + +state 201 + block : '{' '}' . (93) + + . reduce 93 + + +state 202 + lambdaexpressionparameter : '(' . ')' (214) + lambdaexpressionparameter : '(' . formalparameterlist ')' (215) + + BOOLEAN shift 2 + CHAR shift 3 + INT shift 6 + IDENTIFIER shift 197 + ')' shift 305 + . error + + variabledeclaratorid goto 238 + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 239 + formalparameter goto 240 + formalparameterlist goto 306 + + +state 203 + variabledeclarators : variabledeclarators . ',' variabledeclarator (137) + localvariabledeclaration : variabledeclarators . (173) + + ',' shift 151 + ';' reduce 173 + + +state 204 + variabledeclarators : variabledeclarator . (136) + + . reduce 136 + + +state 205 + name : simplename . (13) + classorinterfacetype : simplename . parameter (71) + parameter : . (74) + + '<' shift 41 + IDENTIFIER reduce 74 + INCREMENT reduce 13 + DECREMENT reduce 13 + PLUSEQUAL reduce 13 + MINUSEQUAL reduce 13 + TIMESEQUAL reduce 13 + DIVIDEEQUAL reduce 13 + MODULOEQUAL reduce 13 + '.' reduce 13 + '=' reduce 13 + '(' reduce 13 + '[' reduce 74 + + parameter goto 42 + + +206: shift/reduce conflict (shift 62, reduce 242) on '.' +state 206 + qualifiedname : name . '.' IDENTIFIER (16) + lefthandside : name . (217) + methodinvocation : name . '(' ')' (228) + methodinvocation : name . '(' argumentlist ')' (229) + postfixexpression : name . (242) + + '.' shift 62 + '(' shift 307 + ABSTRACT reduce 242 + BOOLEAN reduce 242 + CHAR reduce 242 + FINAL reduce 242 + INSTANCEOF reduce 242 + INT reduce 242 + PRIVATE reduce 242 + PROTECTED reduce 242 + PUBLIC reduce 242 + STATIC reduce 242 + VOID reduce 242 + IDENTIFIER reduce 242 + EQUAL reduce 242 + LESSEQUAL reduce 242 + GREATEREQUAL reduce 242 + NOTEQUAL reduce 242 + LOGICALOR reduce 242 + LOGICALAND reduce 242 + INCREMENT reduce 242 + DECREMENT reduce 242 + PLUSEQUAL reduce 217 + MINUSEQUAL reduce 217 + TIMESEQUAL reduce 217 + DIVIDEEQUAL reduce 217 + MODULOEQUAL reduce 217 + ',' reduce 242 + ';' reduce 242 + '*' reduce 242 + '<' reduce 242 + '>' reduce 242 + '}' reduce 242 + '=' reduce 217 + ')' reduce 242 + '&' reduce 242 + '+' reduce 242 + '-' reduce 242 + '|' reduce 242 + '^' reduce 242 + '/' reduce 242 + '%' reduce 242 + + +state 207 + localvariabledeclaration : type . variabledeclarators (172) + + IDENTIFIER shift 246 + . error + + variabledeclarators goto 308 + variabledeclarator goto 204 + variabledeclaratorid goto 101 + + +state 208 + statementwithouttrailingsubstatement : block . (174) + + . reduce 174 + + +state 209 + block : '{' blockstatements . '}' (94) + blockstatements : blockstatements . blockstatement (140) + + BOOLEAN shift 2 + CHAR shift 3 + FOR shift 184 + IF shift 185 + INT shift 6 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 197 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '}' shift 309 + '(' shift 202 + . error + + variabledeclarators goto 203 + variabledeclarator goto 204 + variabledeclaratorid goto 101 + simplename goto 205 + qualifiedname goto 35 + name goto 206 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 207 + block goto 208 + localvariabledeclarationstatement goto 210 + localvariabledeclaration goto 211 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + blockstatement goto 310 + statement goto 226 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 210 + blockstatement : localvariabledeclarationstatement . (153) + + . reduce 153 + + +state 211 + localvariabledeclarationstatement : localvariabledeclaration . ';' (162) + + ';' shift 311 + . error + + +state 212 + lambdaexpression : lambdaexpressionparameter . lambdaassignmentoperator lambdabody (216) + + LAMBDAASSIGNMENT shift 312 + . error + + lambdaassignmentoperator goto 313 + + +state 213 + primarynonewarray : literal . (248) + + . reduce 248 + + +state 214 + primary : primarynonewarray . (245) + + . reduce 245 + + +215: shift/reduce conflict (shift 314, reduce 241) on '.' +state 215 + methodinvocation : primary . '.' IDENTIFIER '(' ')' (230) + methodinvocation : primary . '.' IDENTIFIER '(' argumentlist ')' (231) + postfixexpression : primary . (241) + + '.' shift 314 + ABSTRACT reduce 241 + BOOLEAN reduce 241 + CHAR reduce 241 + FINAL reduce 241 + INSTANCEOF reduce 241 + INT reduce 241 + PRIVATE reduce 241 + PROTECTED reduce 241 + PUBLIC reduce 241 + STATIC reduce 241 + VOID reduce 241 + IDENTIFIER reduce 241 + EQUAL reduce 241 + LESSEQUAL reduce 241 + GREATEREQUAL reduce 241 + NOTEQUAL reduce 241 + LOGICALOR reduce 241 + LOGICALAND reduce 241 + INCREMENT reduce 241 + DECREMENT reduce 241 + ',' reduce 241 + ';' reduce 241 + '*' reduce 241 + '<' reduce 241 + '>' reduce 241 + '}' reduce 241 + ')' reduce 241 + '&' reduce 241 + '+' reduce 241 + '-' reduce 241 + '|' reduce 241 + '^' reduce 241 + '/' reduce 241 + '%' reduce 241 + + +state 216 + postincrementexpression : postfixexpression . INCREMENT (226) + postdecrementexpression : postfixexpression . DECREMENT (227) + + INCREMENT shift 315 + DECREMENT shift 316 + . error + + +state 217 + primarynonewarray : lambdaexpression . (251) + + . reduce 251 + + +state 218 + expressionstatement : statementexpression . ';' (192) + + ';' shift 317 + . error + + +state 219 + statementexpression : preincrementexpression . (202) + + . reduce 202 + + +state 220 + statementexpression : predecrementexpression . (203) + + . reduce 203 + + +state 221 + statementexpression : postincrementexpression . (204) + postfixexpression : postincrementexpression . (243) + + INCREMENT reduce 243 + DECREMENT reduce 243 + ';' reduce 204 + + +state 222 + statementexpression : postdecrementexpression . (205) + postfixexpression : postdecrementexpression . (244) + + INCREMENT reduce 244 + DECREMENT reduce 244 + ';' reduce 205 + + +state 223 + statementwithouttrailingsubstatement : expressionstatement . (176) + + . reduce 176 + + +state 224 + statement : statementwithouttrailingsubstatement . (163) + + . reduce 163 + + +state 225 + blockstatements : blockstatement . (139) + + . reduce 139 state 226 - unaryexpression : unaryexpressionnotplusminus . (236) + blockstatement : statement . (154) + + . reduce 154 + + +state 227 + statement : whilestatement . (166) + + . reduce 166 + + +state 228 + statement : forstatement . (167) + + . reduce 167 + + +state 229 + statement : ifthenstatement . (164) + + . reduce 164 + + +state 230 + statement : ifthenelsestatement . (165) + + . reduce 165 + + +state 231 + statementwithouttrailingsubstatement : emptystatement . (175) + + . reduce 175 + + +state 232 + statementwithouttrailingsubstatement : returnstatement . (177) + + . reduce 177 + + +state 233 + statementexpression : assignment . (201) + + . reduce 201 + + +state 234 + assignment : lefthandside . assignmentoperator assignmentexpression (199) + assignment : lefthandside . assignmentoperator classinstancecreationexpression (200) + + PLUSEQUAL shift 318 + MINUSEQUAL shift 319 + TIMESEQUAL shift 320 + DIVIDEEQUAL shift 321 + MODULOEQUAL shift 322 + '=' shift 323 + . error + + assignmentoperator goto 324 + + +state 235 + statementexpression : methodinvocation . (206) + primarynonewarray : methodinvocation . (250) + + INCREMENT reduce 250 + DECREMENT reduce 250 + ';' reduce 206 + '.' reduce 250 + + +state 236 + methodheader : VOID methoddeclarator throws . (121) + + . reduce 121 + + +state 237 + methoddeclarator : IDENTIFIER '(' ')' . (147) + + . reduce 147 + + +state 238 + formalparameter : variabledeclaratorid . (156) + + . reduce 156 + + +state 239 + formalparameter : type . variabledeclaratorid (155) + + IDENTIFIER shift 246 + . error + + variabledeclaratorid goto 325 + + +state 240 + formalparameterlist : formalparameter . (141) + + . reduce 141 + + +state 241 + formalparameterlist : formalparameterlist . ',' formalparameter (142) + methoddeclarator : IDENTIFIER '(' formalparameterlist . ')' (148) + + ',' shift 326 + ')' shift 327 + . error + + +state 242 + boundedMethodParameters : boundedMethodParameters ',' . boundedMethodParameter (110) + + IDENTIFIER shift 78 + . error + + boundedMethodParameter goto 328 + + +state 243 + methodheader : '<' boundedMethodParameters '>' . type methoddeclarator (111) + methodheader : '<' boundedMethodParameters '>' . type methoddeclarator throws (116) + methodheader : '<' boundedMethodParameters '>' . VOID methoddeclarator (123) + methodheader : '<' boundedMethodParameters '>' . VOID methoddeclarator throws (125) + methodheader : '<' boundedMethodParameters '>' . methoddeclarator (128) + + BOOLEAN shift 2 + CHAR shift 3 + INT shift 6 + VOID shift 329 + IDENTIFIER shift 117 + . error + + methoddeclarator goto 330 + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 331 + + +state 244 + classtypelist : classtype . (145) + + . reduce 145 + + +state 245 + throws : THROWS classtypelist . (101) + classtypelist : classtypelist . ',' classtype (146) + + ',' shift 332 + ';' reduce 101 + '{' reduce 101 + + +state 246 + variabledeclaratorid : IDENTIFIER . (160) + + . reduce 160 + + +state 247 + variabledeclarators : variabledeclarators ',' variabledeclarator . (137) + + . reduce 137 + + +state 248 + classinstancecreationexpression : NEW . classtype '(' ')' (232) + classinstancecreationexpression : NEW . classtype '(' argumentlist ')' (233) + + IDENTIFIER shift 14 + . error + + simplename goto 18 + classtype goto 333 + classorinterfacetype goto 83 + + +state 249 + lambdaexpressionparameter : '(' . ')' (214) + lambdaexpressionparameter : '(' . formalparameterlist ')' (215) + castexpression : '(' . primitivetype ')' unaryexpression (265) + + BOOLEAN shift 2 + CHAR shift 3 + INT shift 6 + IDENTIFIER shift 197 + ')' shift 305 + . error + + variabledeclaratorid goto 238 + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 334 + referencetype goto 25 + type goto 239 + formalparameter goto 240 + formalparameterlist goto 306 + + +state 250 + unaryexpression : '+' . unaryexpression (238) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 335 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 251 + unaryexpression : '-' . unaryexpression (239) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 336 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 252 + unaryexpressionnotplusminus : '!' . unaryexpression (253) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 337 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +253: shift/reduce conflict (shift 315, reduce 252) on INCREMENT +253: shift/reduce conflict (shift 316, reduce 252) on DECREMENT +state 253 + postincrementexpression : postfixexpression . INCREMENT (226) + postdecrementexpression : postfixexpression . DECREMENT (227) + unaryexpressionnotplusminus : postfixexpression . (252) + + INCREMENT shift 315 + DECREMENT shift 316 + ABSTRACT reduce 252 + BOOLEAN reduce 252 + CHAR reduce 252 + FINAL reduce 252 + INSTANCEOF reduce 252 + INT reduce 252 + PRIVATE reduce 252 + PROTECTED reduce 252 + PUBLIC reduce 252 + STATIC reduce 252 + VOID reduce 252 + IDENTIFIER reduce 252 + EQUAL reduce 252 + LESSEQUAL reduce 252 + GREATEREQUAL reduce 252 + NOTEQUAL reduce 252 + LOGICALOR reduce 252 + LOGICALAND reduce 252 + ',' reduce 252 + ';' reduce 252 + '.' reduce 252 + '*' reduce 252 + '<' reduce 252 + '>' reduce 252 + '}' reduce 252 + ')' reduce 252 + '&' reduce 252 + '+' reduce 252 + '-' reduce 252 + '|' reduce 252 + '^' reduce 252 + '/' reduce 252 + '%' reduce 252 + + +state 254 + unaryexpression : unaryexpressionnotplusminus . (240) + + . reduce 240 + + +state 255 + multiplicativeexpression : unaryexpression . (281) + + . reduce 281 + + +256: shift/reduce conflict (shift 338, reduce 278) on '*' +256: shift/reduce conflict (shift 339, reduce 278) on '/' +256: shift/reduce conflict (shift 340, reduce 278) on '%' +state 256 + additiveexpression : multiplicativeexpression . (278) + multiplicativeexpression : multiplicativeexpression . '*' unaryexpression (282) + multiplicativeexpression : multiplicativeexpression . '/' unaryexpression (283) + multiplicativeexpression : multiplicativeexpression . '%' unaryexpression (284) + + '*' shift 338 + '/' shift 339 + '%' shift 340 + ABSTRACT reduce 278 + BOOLEAN reduce 278 + CHAR reduce 278 + FINAL reduce 278 + INSTANCEOF reduce 278 + INT reduce 278 + PRIVATE reduce 278 + PROTECTED reduce 278 + PUBLIC reduce 278 + STATIC reduce 278 + VOID reduce 278 + IDENTIFIER reduce 278 + EQUAL reduce 278 + LESSEQUAL reduce 278 + GREATEREQUAL reduce 278 + NOTEQUAL reduce 278 + LOGICALOR reduce 278 + LOGICALAND reduce 278 + INCREMENT reduce 278 + DECREMENT reduce 278 + ',' reduce 278 + ';' reduce 278 + '.' reduce 278 + '<' reduce 278 + '>' reduce 278 + '}' reduce 278 + ')' reduce 278 + '&' reduce 278 + '+' reduce 278 + '-' reduce 278 + '|' reduce 278 + '^' reduce 278 + + +257: shift/reduce conflict (shift 341, reduce 277) on '+' +257: shift/reduce conflict (shift 342, reduce 277) on '-' +state 257 + shiftexpression : additiveexpression . (277) + additiveexpression : additiveexpression . '+' multiplicativeexpression (279) + additiveexpression : additiveexpression . '-' multiplicativeexpression (280) + + '+' shift 341 + '-' shift 342 + ABSTRACT reduce 277 + BOOLEAN reduce 277 + CHAR reduce 277 + FINAL reduce 277 + INSTANCEOF reduce 277 + INT reduce 277 + PRIVATE reduce 277 + PROTECTED reduce 277 + PUBLIC reduce 277 + STATIC reduce 277 + VOID reduce 277 + IDENTIFIER reduce 277 + EQUAL reduce 277 + LESSEQUAL reduce 277 + GREATEREQUAL reduce 277 + NOTEQUAL reduce 277 + LOGICALOR reduce 277 + LOGICALAND reduce 277 + INCREMENT reduce 277 + DECREMENT reduce 277 + ',' reduce 277 + ';' reduce 277 + '.' reduce 277 + '*' reduce 277 + '<' reduce 277 + '>' reduce 277 + '}' reduce 277 + ')' reduce 277 + '&' reduce 277 + '|' reduce 277 + '^' reduce 277 + '/' reduce 277 + '%' reduce 277 + + +state 258 + relationalexpression : shiftexpression . (271) + + . reduce 271 + + +259: shift/reduce conflict (shift 343, reduce 268) on INSTANCEOF +259: shift/reduce conflict (shift 344, reduce 268) on LESSEQUAL +259: shift/reduce conflict (shift 345, reduce 268) on GREATEREQUAL +259: shift/reduce conflict (shift 346, reduce 268) on '<' +259: shift/reduce conflict (shift 347, reduce 268) on '>' +state 259 + equalityexpression : relationalexpression . (268) + relationalexpression : relationalexpression . '<' shiftexpression (272) + relationalexpression : relationalexpression . '>' shiftexpression (273) + relationalexpression : relationalexpression . LESSEQUAL shiftexpression (274) + relationalexpression : relationalexpression . GREATEREQUAL shiftexpression (275) + relationalexpression : relationalexpression . INSTANCEOF referencetype (276) + + INSTANCEOF shift 343 + LESSEQUAL shift 344 + GREATEREQUAL shift 345 + '<' shift 346 + '>' shift 347 + ABSTRACT reduce 268 + BOOLEAN reduce 268 + CHAR reduce 268 + FINAL reduce 268 + INT reduce 268 + PRIVATE reduce 268 + PROTECTED reduce 268 + PUBLIC reduce 268 + STATIC reduce 268 + VOID reduce 268 + IDENTIFIER reduce 268 + EQUAL reduce 268 + NOTEQUAL reduce 268 + LOGICALOR reduce 268 + LOGICALAND reduce 268 + INCREMENT reduce 268 + DECREMENT reduce 268 + ',' reduce 268 + ';' reduce 268 + '.' reduce 268 + '*' reduce 268 + '}' reduce 268 + ')' reduce 268 + '&' reduce 268 + '+' reduce 268 + '-' reduce 268 + '|' reduce 268 + '^' reduce 268 + '/' reduce 268 + '%' reduce 268 + + +260: shift/reduce conflict (shift 348, reduce 266) on EQUAL +260: shift/reduce conflict (shift 349, reduce 266) on NOTEQUAL +state 260 + andexpression : equalityexpression . (266) + equalityexpression : equalityexpression . EQUAL relationalexpression (269) + equalityexpression : equalityexpression . NOTEQUAL relationalexpression (270) + + EQUAL shift 348 + NOTEQUAL shift 349 + ABSTRACT reduce 266 + BOOLEAN reduce 266 + CHAR reduce 266 + FINAL reduce 266 + INSTANCEOF reduce 266 + INT reduce 266 + PRIVATE reduce 266 + PROTECTED reduce 266 + PUBLIC reduce 266 + STATIC reduce 266 + VOID reduce 266 + IDENTIFIER reduce 266 + LESSEQUAL reduce 266 + GREATEREQUAL reduce 266 + LOGICALOR reduce 266 + LOGICALAND reduce 266 + INCREMENT reduce 266 + DECREMENT reduce 266 + ',' reduce 266 + ';' reduce 266 + '.' reduce 266 + '*' reduce 266 + '<' reduce 266 + '>' reduce 266 + '}' reduce 266 + ')' reduce 266 + '&' reduce 266 + '+' reduce 266 + '-' reduce 266 + '|' reduce 266 + '^' reduce 266 + '/' reduce 266 + '%' reduce 266 + + +261: shift/reduce conflict (shift 350, reduce 255) on '&' +state 261 + exclusiveorexpression : andexpression . (255) + andexpression : andexpression . '&' equalityexpression (267) + + '&' shift 350 + ABSTRACT reduce 255 + BOOLEAN reduce 255 + CHAR reduce 255 + FINAL reduce 255 + INSTANCEOF reduce 255 + INT reduce 255 + PRIVATE reduce 255 + PROTECTED reduce 255 + PUBLIC reduce 255 + STATIC reduce 255 + VOID reduce 255 + IDENTIFIER reduce 255 + EQUAL reduce 255 + LESSEQUAL reduce 255 + GREATEREQUAL reduce 255 + NOTEQUAL reduce 255 + LOGICALOR reduce 255 + LOGICALAND reduce 255 + INCREMENT reduce 255 + DECREMENT reduce 255 + ',' reduce 255 + ';' reduce 255 + '.' reduce 255 + '*' reduce 255 + '<' reduce 255 + '>' reduce 255 + '}' reduce 255 + ')' reduce 255 + '+' reduce 255 + '-' reduce 255 + '|' reduce 255 + '^' reduce 255 + '/' reduce 255 + '%' reduce 255 + + +262: shift/reduce conflict (shift 351, reduce 246) on '^' +state 262 + inclusiveorexpression : exclusiveorexpression . (246) + exclusiveorexpression : exclusiveorexpression . '^' andexpression (256) + + '^' shift 351 + ABSTRACT reduce 246 + BOOLEAN reduce 246 + CHAR reduce 246 + FINAL reduce 246 + INSTANCEOF reduce 246 + INT reduce 246 + PRIVATE reduce 246 + PROTECTED reduce 246 + PUBLIC reduce 246 + STATIC reduce 246 + VOID reduce 246 + IDENTIFIER reduce 246 + EQUAL reduce 246 + LESSEQUAL reduce 246 + GREATEREQUAL reduce 246 + NOTEQUAL reduce 246 + LOGICALOR reduce 246 + LOGICALAND reduce 246 + INCREMENT reduce 246 + DECREMENT reduce 246 + ',' reduce 246 + ';' reduce 246 + '.' reduce 246 + '*' reduce 246 + '<' reduce 246 + '>' reduce 246 + '}' reduce 246 + ')' reduce 246 + '&' reduce 246 + '+' reduce 246 + '-' reduce 246 + '|' reduce 246 + '/' reduce 246 + '%' reduce 246 + + +263: shift/reduce conflict (shift 352, reduce 234) on '|' +state 263 + conditionalandexpression : inclusiveorexpression . (234) + inclusiveorexpression : inclusiveorexpression . '|' exclusiveorexpression (247) + + '|' shift 352 + ABSTRACT reduce 234 + BOOLEAN reduce 234 + CHAR reduce 234 + FINAL reduce 234 + INSTANCEOF reduce 234 + INT reduce 234 + PRIVATE reduce 234 + PROTECTED reduce 234 + PUBLIC reduce 234 + STATIC reduce 234 + VOID reduce 234 + IDENTIFIER reduce 234 + EQUAL reduce 234 + LESSEQUAL reduce 234 + GREATEREQUAL reduce 234 + NOTEQUAL reduce 234 + LOGICALOR reduce 234 + LOGICALAND reduce 234 + INCREMENT reduce 234 + DECREMENT reduce 234 + ',' reduce 234 + ';' reduce 234 + '.' reduce 234 + '*' reduce 234 + '<' reduce 234 + '>' reduce 234 + '}' reduce 234 + ')' reduce 234 + '&' reduce 234 + '+' reduce 234 + '-' reduce 234 + '^' reduce 234 + '/' reduce 234 + '%' reduce 234 + + +264: shift/reduce conflict (shift 353, reduce 209) on LOGICALAND +state 264 + conditionalorexpression : conditionalandexpression . (209) + conditionalandexpression : conditionalandexpression . LOGICALAND inclusiveorexpression (235) + + LOGICALAND shift 353 + ABSTRACT reduce 209 + BOOLEAN reduce 209 + CHAR reduce 209 + FINAL reduce 209 + INSTANCEOF reduce 209 + INT reduce 209 + PRIVATE reduce 209 + PROTECTED reduce 209 + PUBLIC reduce 209 + STATIC reduce 209 + VOID reduce 209 + IDENTIFIER reduce 209 + EQUAL reduce 209 + LESSEQUAL reduce 209 + GREATEREQUAL reduce 209 + NOTEQUAL reduce 209 + LOGICALOR reduce 209 + INCREMENT reduce 209 + DECREMENT reduce 209 + ',' reduce 209 + ';' reduce 209 + '.' reduce 209 + '*' reduce 209 + '<' reduce 209 + '>' reduce 209 + '}' reduce 209 + ')' reduce 209 + '&' reduce 209 + '+' reduce 209 + '-' reduce 209 + '|' reduce 209 + '^' reduce 209 + '/' reduce 209 + '%' reduce 209 + + +265: shift/reduce conflict (shift 354, reduce 198) on LOGICALOR +state 265 + conditionalexpression : conditionalorexpression . (198) + conditionalorexpression : conditionalorexpression . LOGICALOR conditionalandexpression (210) + + LOGICALOR shift 354 + ABSTRACT reduce 198 + BOOLEAN reduce 198 + CHAR reduce 198 + FINAL reduce 198 + INSTANCEOF reduce 198 + INT reduce 198 + PRIVATE reduce 198 + PROTECTED reduce 198 + PUBLIC reduce 198 + STATIC reduce 198 + VOID reduce 198 + IDENTIFIER reduce 198 + EQUAL reduce 198 + LESSEQUAL reduce 198 + GREATEREQUAL reduce 198 + NOTEQUAL reduce 198 + LOGICALAND reduce 198 + INCREMENT reduce 198 + DECREMENT reduce 198 + ',' reduce 198 + ';' reduce 198 + '.' reduce 198 + '*' reduce 198 + '<' reduce 198 + '>' reduce 198 + '}' reduce 198 + ')' reduce 198 + '&' reduce 198 + '+' reduce 198 + '-' reduce 198 + '|' reduce 198 + '^' reduce 198 + '/' reduce 198 + '%' reduce 198 + + +state 266 + assignmentexpression : conditionalexpression . (189) + + . reduce 189 + + +state 267 + expression : assignmentexpression . (168) + + . reduce 168 + + +state 268 + fielddeclarator : variabledeclarator '=' expression . (86) + + . reduce 86 + + +state 269 + unaryexpression : preincrementexpression . (236) . reduce 236 -state 227 - multiplicativeexpression : unaryexpression . (277) +state 270 + unaryexpression : predecrementexpression . (237) - . reduce 277 + . reduce 237 -228: shift/reduce conflict (shift 315, reduce 274) on '*' -228: shift/reduce conflict (shift 316, reduce 274) on '/' -228: shift/reduce conflict (shift 317, reduce 274) on '%' -state 228 - additiveexpression : multiplicativeexpression . (274) - multiplicativeexpression : multiplicativeexpression . '*' unaryexpression (278) - multiplicativeexpression : multiplicativeexpression . '/' unaryexpression (279) - multiplicativeexpression : multiplicativeexpression . '%' unaryexpression (280) +state 271 + postfixexpression : postincrementexpression . (243) - '*' shift 315 - '/' shift 316 - '%' shift 317 - ABSTRACT reduce 274 - BOOLEAN reduce 274 - CHAR reduce 274 - FINAL reduce 274 - INSTANCEOF reduce 274 - INT reduce 274 - PRIVATE reduce 274 - PROTECTED reduce 274 - PUBLIC reduce 274 - STATIC reduce 274 - VOID reduce 274 - IDENTIFIER reduce 274 - EQUAL reduce 274 - LESSEQUAL reduce 274 - GREATEREQUAL reduce 274 - NOTEQUAL reduce 274 - LOGICALOR reduce 274 - LOGICALAND reduce 274 - INCREMENT reduce 274 - DECREMENT reduce 274 - ',' reduce 274 - ';' reduce 274 - '.' reduce 274 - '<' reduce 274 - '>' reduce 274 - '}' reduce 274 - ')' reduce 274 - '&' reduce 274 - '+' reduce 274 - '-' reduce 274 - '|' reduce 274 - '^' reduce 274 + . reduce 243 -229: shift/reduce conflict (shift 318, reduce 273) on '+' -229: shift/reduce conflict (shift 319, reduce 273) on '-' -state 229 - shiftexpression : additiveexpression . (273) - additiveexpression : additiveexpression . '+' multiplicativeexpression (275) - additiveexpression : additiveexpression . '-' multiplicativeexpression (276) +state 272 + postfixexpression : postdecrementexpression . (244) - '+' shift 318 - '-' shift 319 - ABSTRACT reduce 273 - BOOLEAN reduce 273 - CHAR reduce 273 - FINAL reduce 273 - INSTANCEOF reduce 273 - INT reduce 273 - PRIVATE reduce 273 - PROTECTED reduce 273 - PUBLIC reduce 273 - STATIC reduce 273 - VOID reduce 273 - IDENTIFIER reduce 273 - EQUAL reduce 273 - LESSEQUAL reduce 273 - GREATEREQUAL reduce 273 - NOTEQUAL reduce 273 - LOGICALOR reduce 273 - LOGICALAND reduce 273 - INCREMENT reduce 273 - DECREMENT reduce 273 - ',' reduce 273 - ';' reduce 273 - '.' reduce 273 - '*' reduce 273 - '<' reduce 273 - '>' reduce 273 - '}' reduce 273 - ')' reduce 273 - '&' reduce 273 - '|' reduce 273 - '^' reduce 273 - '/' reduce 273 - '%' reduce 273 + . reduce 244 -state 230 - relationalexpression : shiftexpression . (267) +state 273 + expression : classinstancecreationexpression . (169) - . reduce 267 + . reduce 169 -231: shift/reduce conflict (shift 320, reduce 264) on INSTANCEOF -231: shift/reduce conflict (shift 321, reduce 264) on LESSEQUAL -231: shift/reduce conflict (shift 322, reduce 264) on GREATEREQUAL -231: shift/reduce conflict (shift 323, reduce 264) on '<' -231: shift/reduce conflict (shift 324, reduce 264) on '>' -state 231 - equalityexpression : relationalexpression . (264) - relationalexpression : relationalexpression . '<' shiftexpression (268) - relationalexpression : relationalexpression . '>' shiftexpression (269) - relationalexpression : relationalexpression . LESSEQUAL shiftexpression (270) - relationalexpression : relationalexpression . GREATEREQUAL shiftexpression (271) - relationalexpression : relationalexpression . INSTANCEOF referencetype (272) +state 274 + assignmentexpression : assignment . (190) - INSTANCEOF shift 320 - LESSEQUAL shift 321 - GREATEREQUAL shift 322 - '<' shift 323 - '>' shift 324 - ABSTRACT reduce 264 - BOOLEAN reduce 264 - CHAR reduce 264 - FINAL reduce 264 - INT reduce 264 - PRIVATE reduce 264 - PROTECTED reduce 264 - PUBLIC reduce 264 - STATIC reduce 264 - VOID reduce 264 - IDENTIFIER reduce 264 - EQUAL reduce 264 - NOTEQUAL reduce 264 - LOGICALOR reduce 264 - LOGICALAND reduce 264 - INCREMENT reduce 264 - DECREMENT reduce 264 - ',' reduce 264 - ';' reduce 264 - '.' reduce 264 - '*' reduce 264 - '}' reduce 264 - ')' reduce 264 - '&' reduce 264 - '+' reduce 264 - '-' reduce 264 - '|' reduce 264 - '^' reduce 264 - '/' reduce 264 - '%' reduce 264 + . reduce 190 -232: shift/reduce conflict (shift 325, reduce 262) on EQUAL -232: shift/reduce conflict (shift 326, reduce 262) on NOTEQUAL -state 232 - andexpression : equalityexpression . (262) - equalityexpression : equalityexpression . EQUAL relationalexpression (265) - equalityexpression : equalityexpression . NOTEQUAL relationalexpression (266) +state 275 + primarynonewarray : methodinvocation . (250) - EQUAL shift 325 - NOTEQUAL shift 326 - ABSTRACT reduce 262 - BOOLEAN reduce 262 - CHAR reduce 262 - FINAL reduce 262 - INSTANCEOF reduce 262 - INT reduce 262 - PRIVATE reduce 262 - PROTECTED reduce 262 - PUBLIC reduce 262 - STATIC reduce 262 - VOID reduce 262 - IDENTIFIER reduce 262 - LESSEQUAL reduce 262 - GREATEREQUAL reduce 262 - LOGICALOR reduce 262 - LOGICALAND reduce 262 - INCREMENT reduce 262 - DECREMENT reduce 262 - ',' reduce 262 - ';' reduce 262 - '.' reduce 262 - '*' reduce 262 - '<' reduce 262 - '>' reduce 262 - '}' reduce 262 - ')' reduce 262 - '&' reduce 262 - '+' reduce 262 - '-' reduce 262 - '|' reduce 262 - '^' reduce 262 - '/' reduce 262 - '%' reduce 262 + . reduce 250 -233: shift/reduce conflict (shift 327, reduce 251) on '&' -state 233 - exclusiveorexpression : andexpression . (251) - andexpression : andexpression . '&' equalityexpression (263) +state 276 + unaryexpressionnotplusminus : castexpression . (254) - '&' shift 327 - ABSTRACT reduce 251 - BOOLEAN reduce 251 - CHAR reduce 251 - FINAL reduce 251 - INSTANCEOF reduce 251 - INT reduce 251 - PRIVATE reduce 251 - PROTECTED reduce 251 - PUBLIC reduce 251 - STATIC reduce 251 - VOID reduce 251 - IDENTIFIER reduce 251 - EQUAL reduce 251 - LESSEQUAL reduce 251 - GREATEREQUAL reduce 251 - NOTEQUAL reduce 251 - LOGICALOR reduce 251 - LOGICALAND reduce 251 - INCREMENT reduce 251 - DECREMENT reduce 251 - ',' reduce 251 - ';' reduce 251 - '.' reduce 251 - '*' reduce 251 - '<' reduce 251 - '>' reduce 251 - '}' reduce 251 - ')' reduce 251 - '+' reduce 251 - '-' reduce 251 - '|' reduce 251 - '^' reduce 251 - '/' reduce 251 - '%' reduce 251 + . reduce 254 -234: shift/reduce conflict (shift 328, reduce 242) on '^' -state 234 - inclusiveorexpression : exclusiveorexpression . (242) - exclusiveorexpression : exclusiveorexpression . '^' andexpression (252) +state 277 + constructordeclarator : simplename '(' ')' . (95) - '^' shift 328 + . reduce 95 + + +state 278 + constructordeclarator : simplename '(' formalparameterlist . ')' (96) + formalparameterlist : formalparameterlist . ',' formalparameter (142) + + ',' shift 326 + ')' shift 355 + . error + + +state 279 + methodheader : type methoddeclarator throws . (115) + + . reduce 115 + + +state 280 + fielddeclaration : type variabledeclarators ';' . (90) + + . reduce 90 + + +state 281 + fielddeclarator : type variabledeclarator '=' . expression (85) + fielddeclarator : variabledeclarator '=' . expression (86) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 356 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 282 + fielddeclarator : type variabledeclarator . '=' expression (85) + + '=' shift 357 + . error + + +state 283 + methodheader : modifiers VOID methoddeclarator . (120) + methodheader : modifiers VOID methoddeclarator . throws (122) + + THROWS shift 147 + ';' reduce 120 + '{' reduce 120 + + throws goto 358 + + +state 284 + boundedMethodParameters : boundedMethodParameters . ',' boundedMethodParameter (110) + methodheader : modifiers '<' boundedMethodParameters . '>' type methoddeclarator (114) + methodheader : modifiers '<' boundedMethodParameters . '>' type methoddeclarator throws (118) + methodheader : modifiers '<' boundedMethodParameters . '>' VOID methoddeclarator (124) + methodheader : modifiers '<' boundedMethodParameters . '>' VOID methoddeclarator throws (126) + + ',' shift 242 + '>' shift 359 + . error + + +state 285 + methodheader : modifiers methoddeclarator throws . (131) + + . reduce 131 + + +state 286 + methoddeclarator : IDENTIFIER . '(' ')' (147) + methoddeclarator : IDENTIFIER . '(' formalparameterlist ')' (148) + variabledeclaratorid : IDENTIFIER . (160) + + '(' shift 142 + ',' reduce 160 + ';' reduce 160 + + +state 287 + methodheader : modifiers type methoddeclarator . (113) + methodheader : modifiers type methoddeclarator . throws (117) + + THROWS shift 147 + ';' reduce 113 + '{' reduce 113 + + throws goto 360 + + +state 288 + fielddeclaration : modifiers type variabledeclarators . ';' (91) + variabledeclarators : variabledeclarators . ',' variabledeclarator (137) + + ',' shift 151 + ';' shift 361 + . error + + +state 289 + constructordeclaration : modifiers constructordeclarator constructorbody . (82) + + . reduce 82 + + +state 290 + explicitconstructorinvocation : THIS . '(' ')' ';' (143) + explicitconstructorinvocation : THIS . '(' argumentlist ')' ';' (144) + primarynonewarray : THIS . (249) + + '(' shift 362 + INCREMENT reduce 249 + DECREMENT reduce 249 + '.' reduce 249 + + +state 291 + constructorbody : '{' '}' . (97) + + . reduce 97 + + +state 292 + constructorbody : '{' blockstatements . '}' (99) + blockstatements : blockstatements . blockstatement (140) + + BOOLEAN shift 2 + CHAR shift 3 + FOR shift 184 + IF shift 185 + INT shift 6 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 197 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '}' shift 363 + '(' shift 202 + . error + + variabledeclarators goto 203 + variabledeclarator goto 204 + variabledeclaratorid goto 101 + simplename goto 205 + qualifiedname goto 35 + name goto 206 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 207 + block goto 208 + localvariabledeclarationstatement goto 210 + localvariabledeclaration goto 211 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + blockstatement goto 310 + statement goto 226 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 293 + constructorbody : '{' explicitconstructorinvocation . '}' (98) + constructorbody : '{' explicitconstructorinvocation . blockstatements '}' (100) + + BOOLEAN shift 2 + CHAR shift 3 + FOR shift 184 + IF shift 185 + INT shift 6 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 197 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '}' shift 364 + '(' shift 202 + . error + + variabledeclarators goto 203 + variabledeclarator goto 204 + variabledeclaratorid goto 101 + simplename goto 205 + qualifiedname goto 35 + name goto 206 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 207 + block goto 208 + blockstatements goto 365 + localvariabledeclarationstatement goto 210 + localvariabledeclaration goto 211 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + blockstatement goto 225 + statement goto 226 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 294 + constantdeclaration : modifiers type IDENTIFIER . '=' expression ';' (83) + methoddeclarator : IDENTIFIER . '(' ')' (147) + methoddeclarator : IDENTIFIER . '(' formalparameterlist ')' (148) + + '=' shift 366 + '(' shift 142 + . error + + +state 295 + classdeclaration : modifiers CLASS classidentifier super interfaces classbody . (27) + + . reduce 27 + + +state 296 + boundedclassidentifierlist : boundedclassidentifierlist '&' . referencetype (108) + + IDENTIFIER shift 14 + . error + + simplename goto 18 + classorinterfacetype goto 21 + referencetype goto 367 + + +state 297 + forstatement : FOR '(' . expression ';' expression ';' expression ')' statement (181) + forstatement : FOR '(' . expression ';' expression ';' ')' statement (182) + forstatement : FOR '(' . expression ';' ';' expression ')' statement (183) + forstatement : FOR '(' . ';' expression ';' expression ')' statement (184) + forstatement : FOR '(' . expression ';' ';' ')' statement (185) + forstatement : FOR '(' . ';' expression ';' ')' statement (186) + forstatement : FOR '(' . ';' ';' expression ')' statement (187) + forstatement : FOR '(' . ';' ';' ')' statement (188) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 368 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 369 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 298 + ifthenstatement : IF '(' . expression ')' statement (178) + ifthenelsestatement : IF '(' . expression ')' statementnoshortif ELSE statement (179) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 370 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 299 + returnstatement : RETURN ';' . (193) + + . reduce 193 + + +state 300 + returnstatement : RETURN expression . ';' (194) + + ';' shift 371 + . error + + +state 301 + whilestatement : WHILE '(' . expression ')' statement (180) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 372 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +302: shift/reduce conflict (shift 62, reduce 242) on '.' +state 302 + qualifiedname : name . '.' IDENTIFIER (16) + methodinvocation : name . '(' ')' (228) + methodinvocation : name . '(' argumentlist ')' (229) + postfixexpression : name . (242) + + '.' shift 62 + '(' shift 307 ABSTRACT reduce 242 BOOLEAN reduce 242 CHAR reduce 242 @@ -3453,7 +4618,6 @@ state 234 DECREMENT reduce 242 ',' reduce 242 ';' reduce 242 - '.' reduce 242 '*' reduce 242 '<' reduce 242 '>' reduce 242 @@ -3463,4759 +4627,3927 @@ state 234 '+' reduce 242 '-' reduce 242 '|' reduce 242 + '^' reduce 242 '/' reduce 242 '%' reduce 242 -235: shift/reduce conflict (shift 329, reduce 230) on '|' -state 235 - conditionalandexpression : inclusiveorexpression . (230) - inclusiveorexpression : inclusiveorexpression . '|' exclusiveorexpression (243) - - '|' shift 329 - ABSTRACT reduce 230 - BOOLEAN reduce 230 - CHAR reduce 230 - FINAL reduce 230 - INSTANCEOF reduce 230 - INT reduce 230 - PRIVATE reduce 230 - PROTECTED reduce 230 - PUBLIC reduce 230 - STATIC reduce 230 - VOID reduce 230 - IDENTIFIER reduce 230 - EQUAL reduce 230 - LESSEQUAL reduce 230 - GREATEREQUAL reduce 230 - NOTEQUAL reduce 230 - LOGICALOR reduce 230 - LOGICALAND reduce 230 - INCREMENT reduce 230 - DECREMENT reduce 230 - ',' reduce 230 - ';' reduce 230 - '.' reduce 230 - '*' reduce 230 - '<' reduce 230 - '>' reduce 230 - '}' reduce 230 - ')' reduce 230 - '&' reduce 230 - '+' reduce 230 - '-' reduce 230 - '^' reduce 230 - '/' reduce 230 - '%' reduce 230 - - -236: shift/reduce conflict (shift 330, reduce 205) on LOGICALAND -state 236 - conditionalorexpression : conditionalandexpression . (205) - conditionalandexpression : conditionalandexpression . LOGICALAND inclusiveorexpression (231) - - LOGICALAND shift 330 - ABSTRACT reduce 205 - BOOLEAN reduce 205 - CHAR reduce 205 - FINAL reduce 205 - INSTANCEOF reduce 205 - INT reduce 205 - PRIVATE reduce 205 - PROTECTED reduce 205 - PUBLIC reduce 205 - STATIC reduce 205 - VOID reduce 205 - IDENTIFIER reduce 205 - EQUAL reduce 205 - LESSEQUAL reduce 205 - GREATEREQUAL reduce 205 - NOTEQUAL reduce 205 - LOGICALOR reduce 205 - INCREMENT reduce 205 - DECREMENT reduce 205 - ',' reduce 205 - ';' reduce 205 - '.' reduce 205 - '*' reduce 205 - '<' reduce 205 - '>' reduce 205 - '}' reduce 205 - ')' reduce 205 - '&' reduce 205 - '+' reduce 205 - '-' reduce 205 - '|' reduce 205 - '^' reduce 205 - '/' reduce 205 - '%' reduce 205 - - -237: shift/reduce conflict (shift 331, reduce 194) on LOGICALOR -state 237 - conditionalexpression : conditionalorexpression . (194) - conditionalorexpression : conditionalorexpression . LOGICALOR conditionalandexpression (206) - - LOGICALOR shift 331 - ABSTRACT reduce 194 - BOOLEAN reduce 194 - CHAR reduce 194 - FINAL reduce 194 - INSTANCEOF reduce 194 - INT reduce 194 - PRIVATE reduce 194 - PROTECTED reduce 194 - PUBLIC reduce 194 - STATIC reduce 194 - VOID reduce 194 - IDENTIFIER reduce 194 - EQUAL reduce 194 - LESSEQUAL reduce 194 - GREATEREQUAL reduce 194 - NOTEQUAL reduce 194 - LOGICALAND reduce 194 - INCREMENT reduce 194 - DECREMENT reduce 194 - ',' reduce 194 - ';' reduce 194 - '.' reduce 194 - '*' reduce 194 - '<' reduce 194 - '>' reduce 194 - '}' reduce 194 - ')' reduce 194 - '&' reduce 194 - '+' reduce 194 - '-' reduce 194 - '|' reduce 194 - '^' reduce 194 - '/' reduce 194 - '%' reduce 194 - - -state 238 - assignmentexpression : conditionalexpression . (185) - - . reduce 185 - - -state 239 - expression : assignmentexpression . (164) - - . reduce 164 - - -state 240 - fielddeclarator : variabledeclarator '=' expression . (82) - - . reduce 82 - - -state 241 - unaryexpression : preincrementexpression . (232) - - . reduce 232 - - -state 242 - unaryexpression : predecrementexpression . (233) - - . reduce 233 - - -state 243 - postfixexpression : postincrementexpression . (239) - - . reduce 239 - - -state 244 - postfixexpression : postdecrementexpression . (240) - - . reduce 240 - - -state 245 - expression : classinstancecreationexpression . (165) - - . reduce 165 - - -state 246 - assignmentexpression : assignment . (186) - - . reduce 186 - - -state 247 - primarynonewarray : methodinvocation . (246) - - . reduce 246 - - -state 248 - unaryexpressionnotplusminus : castexpression . (250) - - . reduce 250 - - -state 249 - constructordeclarator : simplename '(' ')' . (91) - - . reduce 91 - - -state 250 - constructordeclarator : simplename '(' formalparameterlist . ')' (92) - formalparameterlist : formalparameterlist . ',' formalparameter (138) - - ',' shift 303 - ')' shift 332 - . error - - -state 251 - type : primitivetype '[' ']' . (129) - - . reduce 129 - - -state 252 - type : referencetype '[' ']' . (131) - - . reduce 131 - - -state 253 - methodheader : type methoddeclarator throws . (111) - - . reduce 111 - - -state 254 - fielddeclaration : type variabledeclarators ';' . (86) - - . reduce 86 - - -state 255 - fielddeclarator : type variabledeclarator '=' . expression (81) - fielddeclarator : variabledeclarator '=' . expression (82) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 333 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 256 - fielddeclarator : type variabledeclarator . '=' expression (81) - - '=' shift 334 - . error - - -state 257 - methodheader : modifiers VOID methoddeclarator . (116) - methodheader : modifiers VOID methoddeclarator . throws (118) - - THROWS shift 114 - ';' reduce 116 - '{' reduce 116 - - throws goto 335 - - -state 258 - boundedMethodParameters : boundedMethodParameters . ',' boundedMethodParameter (106) - methodheader : modifiers '<' boundedMethodParameters . '>' type methoddeclarator (110) - methodheader : modifiers '<' boundedMethodParameters . '>' type methoddeclarator throws (114) - methodheader : modifiers '<' boundedMethodParameters . '>' VOID methoddeclarator (120) - methodheader : modifiers '<' boundedMethodParameters . '>' VOID methoddeclarator throws (122) - - ',' shift 213 - '>' shift 336 - . error - - -state 259 - methodheader : modifiers methoddeclarator throws . (127) - - . reduce 127 - - -state 260 - methoddeclarator : IDENTIFIER . '(' ')' (143) - methoddeclarator : IDENTIFIER . '(' formalparameterlist ')' (144) - variabledeclaratorid : IDENTIFIER . (156) - - '(' shift 109 - ',' reduce 156 - ';' reduce 156 - - -state 261 - methodheader : modifiers type methoddeclarator . (109) - methodheader : modifiers type methoddeclarator . throws (113) - - THROWS shift 114 - ';' reduce 109 - '{' reduce 109 - - throws goto 337 - - -state 262 - fielddeclaration : modifiers type variabledeclarators . ';' (87) - variabledeclarators : variabledeclarators . ',' variabledeclarator (133) - - ',' shift 118 - ';' shift 338 - . error - - -state 263 - constructordeclaration : modifiers constructordeclarator constructorbody . (78) - - . reduce 78 - - -state 264 - explicitconstructorinvocation : THIS . '(' ')' ';' (139) - explicitconstructorinvocation : THIS . '(' argumentlist ')' ';' (140) - primarynonewarray : THIS . (245) - - '(' shift 339 - INCREMENT reduce 245 - DECREMENT reduce 245 - '.' reduce 245 - - -state 265 - constructorbody : '{' '}' . (93) - - . reduce 93 - - -state 266 - constructorbody : '{' blockstatements . '}' (95) - blockstatements : blockstatements . blockstatement (136) - - BOOLEAN shift 48 - CHAR shift 49 - FOR shift 154 - IF shift 155 - INT shift 50 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 167 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '}' shift 340 - '(' shift 172 - . error - - variabledeclarators goto 173 - variabledeclarator goto 174 - variabledeclaratorid goto 66 - simplename goto 175 - qualifiedname goto 176 - name goto 177 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 178 - block goto 179 - localvariabledeclarationstatement goto 181 - localvariabledeclaration goto 182 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - blockstatement goto 287 - statement goto 197 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 267 - constructorbody : '{' explicitconstructorinvocation . '}' (94) - constructorbody : '{' explicitconstructorinvocation . blockstatements '}' (96) - - BOOLEAN shift 48 - CHAR shift 49 - FOR shift 154 - IF shift 155 - INT shift 50 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 167 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '}' shift 341 - '(' shift 172 - . error - - variabledeclarators goto 173 - variabledeclarator goto 174 - variabledeclaratorid goto 66 - simplename goto 175 - qualifiedname goto 176 - name goto 177 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 178 - block goto 179 - blockstatements goto 342 - localvariabledeclarationstatement goto 181 - localvariabledeclaration goto 182 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - blockstatement goto 196 - statement goto 197 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 268 - constantdeclaration : modifiers type IDENTIFIER . '=' expression ';' (79) - methoddeclarator : IDENTIFIER . '(' ')' (143) - methoddeclarator : IDENTIFIER . '(' formalparameterlist ')' (144) - - '=' shift 343 - '(' shift 109 - . error - - -state 269 - classdeclaration : modifiers CLASS classidentifier super interfaces classbody . (23) - - . reduce 23 - - -state 270 - boundedclassidentifierlist : boundedclassidentifierlist '&' . referencetype (104) - - IDENTIFIER shift 42 - . error - - simplename goto 43 - classorinterfacetype goto 68 - referencetype goto 344 - - -state 271 - typelist : typelist ',' . type (69) - - BOOLEAN shift 48 - CHAR shift 49 - INT shift 50 - IDENTIFIER shift 42 - . error - - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 345 - - -state 272 - parameter : '<' typelist '>' . (71) - - . reduce 71 - - -state 273 - forstatement : FOR '(' . expression ';' expression ';' expression ')' statement (177) - forstatement : FOR '(' . expression ';' expression ';' ')' statement (178) - forstatement : FOR '(' . expression ';' ';' expression ')' statement (179) - forstatement : FOR '(' . ';' expression ';' expression ')' statement (180) - forstatement : FOR '(' . expression ';' ';' ')' statement (181) - forstatement : FOR '(' . ';' expression ';' ')' statement (182) - forstatement : FOR '(' . ';' ';' expression ')' statement (183) - forstatement : FOR '(' . ';' ';' ')' statement (184) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 346 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 347 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 274 - ifthenstatement : IF '(' . expression ')' statement (174) - ifthenelsestatement : IF '(' . expression ')' statementnoshortif ELSE statement (175) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 348 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 275 - returnstatement : RETURN ';' . (189) - - . reduce 189 - - -state 276 - returnstatement : RETURN expression . ';' (190) - - ';' shift 349 - . error - - -state 277 - whilestatement : WHILE '(' . expression ')' statement (176) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 350 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -278: shift/reduce conflict (shift 283, reduce 238) on '.' -state 278 - qualifiedname : name . '.' IDENTIFIER (12) - methodinvocation : name . '(' ')' (224) - methodinvocation : name . '(' argumentlist ')' (225) - postfixexpression : name . (238) - - '.' shift 283 - '(' shift 284 - ABSTRACT reduce 238 - BOOLEAN reduce 238 - CHAR reduce 238 - FINAL reduce 238 - INSTANCEOF reduce 238 - INT reduce 238 - PRIVATE reduce 238 - PROTECTED reduce 238 - PUBLIC reduce 238 - STATIC reduce 238 - VOID reduce 238 - IDENTIFIER reduce 238 - EQUAL reduce 238 - LESSEQUAL reduce 238 - GREATEREQUAL reduce 238 - NOTEQUAL reduce 238 - LOGICALOR reduce 238 - LOGICALAND reduce 238 - INCREMENT reduce 238 - DECREMENT reduce 238 - ',' reduce 238 - ';' reduce 238 - '*' reduce 238 - '<' reduce 238 - '>' reduce 238 - '}' reduce 238 - ')' reduce 238 - '&' reduce 238 - '+' reduce 238 - '-' reduce 238 - '|' reduce 238 - '^' reduce 238 - '/' reduce 238 - '%' reduce 238 - - -state 279 - preincrementexpression : INCREMENT unaryexpression . (220) - - . reduce 220 - - -state 280 - predecrementexpression : DECREMENT unaryexpression . (221) - - . reduce 221 - - -state 281 - lambdaexpressionparameter : '(' ')' . (210) - - . reduce 210 - - -state 282 - formalparameterlist : formalparameterlist . ',' formalparameter (138) - lambdaexpressionparameter : '(' formalparameterlist . ')' (211) - - ',' shift 303 - ')' shift 351 - . error - - -state 283 - qualifiedname : name '.' . IDENTIFIER (12) - - IDENTIFIER shift 352 - . error - - -state 284 - methodinvocation : name '(' . ')' (224) - methodinvocation : name '(' . argumentlist ')' (225) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - ')' shift 353 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 354 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - argumentlist goto 355 - methodinvocation goto 247 - castexpression goto 248 - - -state 285 - variabledeclarators : variabledeclarators . ',' variabledeclarator (133) - localvariabledeclaration : type variabledeclarators . (168) - - ',' shift 118 - ';' reduce 168 - - -state 286 - block : '{' blockstatements '}' . (90) - - . reduce 90 - - -state 287 - blockstatements : blockstatements blockstatement . (136) - - . reduce 136 - - -state 288 - localvariabledeclarationstatement : localvariabledeclaration ';' . (158) - - . reduce 158 - - -state 289 - lambdaassignmentoperator : LAMBDAASSIGNMENT . (207) - - . reduce 207 - - -state 290 - lambdaexpression : lambdaexpressionparameter lambdaassignmentoperator . lambdabody (212) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '{' shift 105 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 356 - lambdabody goto 357 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 358 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 291 - methodinvocation : primary '.' . IDENTIFIER '(' ')' (226) - methodinvocation : primary '.' . IDENTIFIER '(' argumentlist ')' (227) - - IDENTIFIER shift 359 - . error - - -state 292 - postincrementexpression : postfixexpression INCREMENT . (222) - - . reduce 222 - - -state 293 - postdecrementexpression : postfixexpression DECREMENT . (223) - - . reduce 223 - - -state 294 - expressionstatement : statementexpression ';' . (188) - - . reduce 188 - - -state 295 - assignmentoperator : PLUSEQUAL . (218) - - . reduce 218 - - -state 296 - assignmentoperator : MINUSEQUAL . (219) - - . reduce 219 - - -state 297 - assignmentoperator : TIMESEQUAL . (215) - - . reduce 215 - - -state 298 - assignmentoperator : DIVIDEEQUAL . (216) - - . reduce 216 - - -state 299 - assignmentoperator : MODULOEQUAL . (217) - - . reduce 217 - - -state 300 - assignmentoperator : '=' . (214) - - . reduce 214 - - -state 301 - assignment : lefthandside assignmentoperator . assignmentexpression (195) - assignment : lefthandside assignmentoperator . classinstancecreationexpression (196) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 360 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 361 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 302 - formalparameter : type variabledeclaratorid . (151) - - . reduce 151 - - state 303 - formalparameterlist : formalparameterlist ',' . formalparameter (138) - - BOOLEAN shift 48 - CHAR shift 49 - INT shift 50 - IDENTIFIER shift 167 - . error - - variabledeclaratorid goto 209 - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 210 - formalparameter goto 362 - - -state 304 - methoddeclarator : IDENTIFIER '(' formalparameterlist ')' . (144) - - . reduce 144 - - -state 305 - boundedMethodParameters : boundedMethodParameters ',' boundedMethodParameter . (106) - - . reduce 106 - - -state 306 - methodheader : '<' boundedMethodParameters '>' VOID . methoddeclarator (119) - methodheader : '<' boundedMethodParameters '>' VOID . methoddeclarator throws (121) - - IDENTIFIER shift 107 - . error - - methoddeclarator goto 363 - - -state 307 - methodheader : '<' boundedMethodParameters '>' methoddeclarator . (124) - - . reduce 124 - - -state 308 - methodheader : '<' boundedMethodParameters '>' type . methoddeclarator (107) - methodheader : '<' boundedMethodParameters '>' type . methoddeclarator throws (112) - - IDENTIFIER shift 107 - . error - - methoddeclarator goto 364 - - -state 309 - classtypelist : classtypelist ',' . classtype (142) - - IDENTIFIER shift 42 - . error - - simplename goto 43 - classtype goto 365 - classorinterfacetype goto 45 - - -state 310 - classinstancecreationexpression : NEW classtype . '(' ')' (228) - classinstancecreationexpression : NEW classtype . '(' argumentlist ')' (229) - - '(' shift 366 - . error - - -state 311 - type : primitivetype . (128) - type : primitivetype . '[' ']' (129) - castexpression : '(' primitivetype . ')' unaryexpression (261) - - ')' shift 367 - '[' shift 123 - IDENTIFIER reduce 128 - - -state 312 - unaryexpression : '+' unaryexpression . (234) - - . reduce 234 - - -state 313 - unaryexpression : '-' unaryexpression . (235) - - . reduce 235 - - -state 314 - unaryexpressionnotplusminus : '!' unaryexpression . (249) - - . reduce 249 - - -state 315 - multiplicativeexpression : multiplicativeexpression '*' . unaryexpression (278) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 368 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 316 - multiplicativeexpression : multiplicativeexpression '/' . unaryexpression (279) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 369 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 317 - multiplicativeexpression : multiplicativeexpression '%' . unaryexpression (280) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 370 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 318 - additiveexpression : additiveexpression '+' . multiplicativeexpression (275) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 371 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 319 - additiveexpression : additiveexpression '-' . multiplicativeexpression (276) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 372 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 320 - relationalexpression : relationalexpression INSTANCEOF . referencetype (272) - - IDENTIFIER shift 42 - . error - - simplename goto 43 - classorinterfacetype goto 68 - referencetype goto 373 - - -state 321 - relationalexpression : relationalexpression LESSEQUAL . shiftexpression (270) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 374 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 322 - relationalexpression : relationalexpression GREATEREQUAL . shiftexpression (271) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 375 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 323 - relationalexpression : relationalexpression '<' . shiftexpression (268) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 376 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 324 - relationalexpression : relationalexpression '>' . shiftexpression (269) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 377 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 325 - equalityexpression : equalityexpression EQUAL . relationalexpression (265) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 378 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 326 - equalityexpression : equalityexpression NOTEQUAL . relationalexpression (266) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 379 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 327 - andexpression : andexpression '&' . equalityexpression (263) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 380 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 328 - exclusiveorexpression : exclusiveorexpression '^' . andexpression (252) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 381 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 329 - inclusiveorexpression : inclusiveorexpression '|' . exclusiveorexpression (243) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 382 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 330 - conditionalandexpression : conditionalandexpression LOGICALAND . inclusiveorexpression (231) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 383 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 331 - conditionalorexpression : conditionalorexpression LOGICALOR . conditionalandexpression (206) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 384 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 332 - constructordeclarator : simplename '(' formalparameterlist ')' . (92) - - . reduce 92 - - -state 333 - fielddeclarator : type variabledeclarator '=' expression . (81) - fielddeclarator : variabledeclarator '=' expression . (82) - - ABSTRACT reduce 82 - BOOLEAN reduce 82 - CHAR reduce 82 - FINAL reduce 82 - INT reduce 82 - PRIVATE reduce 82 - PROTECTED reduce 82 - PUBLIC reduce 82 - STATIC reduce 82 - VOID reduce 82 - IDENTIFIER reduce 82 - ';' reduce 81 - '<' reduce 82 - '}' reduce 82 - - -state 334 - fielddeclarator : type variabledeclarator '=' . expression (81) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 385 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 335 - methodheader : modifiers VOID methoddeclarator throws . (118) - - . reduce 118 - - -state 336 - methodheader : modifiers '<' boundedMethodParameters '>' . type methoddeclarator (110) - methodheader : modifiers '<' boundedMethodParameters '>' . type methoddeclarator throws (114) - methodheader : modifiers '<' boundedMethodParameters '>' . VOID methoddeclarator (120) - methodheader : modifiers '<' boundedMethodParameters '>' . VOID methoddeclarator throws (122) - - BOOLEAN shift 48 - CHAR shift 49 - INT shift 50 - VOID shift 386 - IDENTIFIER shift 42 - . error - - simplename goto 43 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 387 - - -state 337 - methodheader : modifiers type methoddeclarator throws . (113) - - . reduce 113 - - -state 338 - fielddeclaration : modifiers type variabledeclarators ';' . (87) - - . reduce 87 - - -state 339 - explicitconstructorinvocation : THIS '(' . ')' ';' (139) - explicitconstructorinvocation : THIS '(' . argumentlist ')' ';' (140) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - ')' shift 388 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 354 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - argumentlist goto 389 - methodinvocation goto 247 - castexpression goto 248 - - -state 340 - constructorbody : '{' blockstatements '}' . (95) - - . reduce 95 - - -state 341 - constructorbody : '{' explicitconstructorinvocation '}' . (94) - - . reduce 94 - - -state 342 - constructorbody : '{' explicitconstructorinvocation blockstatements . '}' (96) - blockstatements : blockstatements . blockstatement (136) - - BOOLEAN shift 48 - CHAR shift 49 - FOR shift 154 - IF shift 155 - INT shift 50 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 167 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '}' shift 390 - '(' shift 172 - . error - - variabledeclarators goto 173 - variabledeclarator goto 174 - variabledeclaratorid goto 66 - simplename goto 175 - qualifiedname goto 176 - name goto 177 - classorinterfacetype goto 68 - integraltype goto 69 - numerictype goto 70 - primitivetype goto 71 - referencetype goto 72 - type goto 178 - block goto 179 - localvariabledeclarationstatement goto 181 - localvariabledeclaration goto 182 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - blockstatement goto 287 - statement goto 197 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 343 - constantdeclaration : modifiers type IDENTIFIER '=' . expression ';' (79) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 391 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 344 - boundedclassidentifierlist : boundedclassidentifierlist '&' referencetype . (104) - - . reduce 104 - - -state 345 - typelist : typelist ',' type . (69) - - . reduce 69 - - -state 346 - forstatement : FOR '(' ';' . expression ';' expression ')' statement (180) - forstatement : FOR '(' ';' . expression ';' ')' statement (182) - forstatement : FOR '(' ';' . ';' expression ')' statement (183) - forstatement : FOR '(' ';' . ';' ')' statement (184) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 392 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 393 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 347 - forstatement : FOR '(' expression . ';' expression ';' expression ')' statement (177) - forstatement : FOR '(' expression . ';' expression ';' ')' statement (178) - forstatement : FOR '(' expression . ';' ';' expression ')' statement (179) - forstatement : FOR '(' expression . ';' ';' ')' statement (181) - - ';' shift 394 - . error - - -state 348 - ifthenstatement : IF '(' expression . ')' statement (174) - ifthenelsestatement : IF '(' expression . ')' statementnoshortif ELSE statement (175) - - ')' shift 395 - . error - - -state 349 - returnstatement : RETURN expression ';' . (190) - - . reduce 190 - - -state 350 - whilestatement : WHILE '(' expression . ')' statement (176) - - ')' shift 396 - . error - - -state 351 - lambdaexpressionparameter : '(' formalparameterlist ')' . (211) - - . reduce 211 - - -state 352 - qualifiedname : name '.' IDENTIFIER . (12) - - . reduce 12 - - -state 353 - methodinvocation : name '(' ')' . (224) + preincrementexpression : INCREMENT unaryexpression . (224) . reduce 224 -state 354 - argumentlist : expression . (153) - - . reduce 153 - - -state 355 - argumentlist : argumentlist . ',' expression (154) - methodinvocation : name '(' argumentlist . ')' (225) - - ',' shift 397 - ')' shift 398 - . error - - -state 356 - lambdabody : block . (208) - - . reduce 208 - - -state 357 - lambdaexpression : lambdaexpressionparameter lambdaassignmentoperator lambdabody . (212) - - . reduce 212 - - -state 358 - lambdabody : expression . (209) - - . reduce 209 - - -state 359 - methodinvocation : primary '.' IDENTIFIER . '(' ')' (226) - methodinvocation : primary '.' IDENTIFIER . '(' argumentlist ')' (227) - - '(' shift 399 - . error - - -state 360 - assignment : lefthandside assignmentoperator assignmentexpression . (195) - - . reduce 195 - - -state 361 - assignment : lefthandside assignmentoperator classinstancecreationexpression . (196) - - . reduce 196 - - -state 362 - formalparameterlist : formalparameterlist ',' formalparameter . (138) - - . reduce 138 - - -state 363 - methodheader : '<' boundedMethodParameters '>' VOID methoddeclarator . (119) - methodheader : '<' boundedMethodParameters '>' VOID methoddeclarator . throws (121) - - THROWS shift 114 - ';' reduce 119 - '{' reduce 119 - - throws goto 400 - - -state 364 - methodheader : '<' boundedMethodParameters '>' type methoddeclarator . (107) - methodheader : '<' boundedMethodParameters '>' type methoddeclarator . throws (112) - - THROWS shift 114 - ';' reduce 107 - '{' reduce 107 - - throws goto 401 - - -state 365 - classtypelist : classtypelist ',' classtype . (142) - - . reduce 142 - - -state 366 - classinstancecreationexpression : NEW classtype '(' . ')' (228) - classinstancecreationexpression : NEW classtype '(' . argumentlist ')' (229) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - ')' shift 402 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 354 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - argumentlist goto 403 - methodinvocation goto 247 - castexpression goto 248 - - -state 367 - castexpression : '(' primitivetype ')' . unaryexpression (261) - - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 278 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 404 - lambdaexpression goto 188 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - methodinvocation goto 247 - castexpression goto 248 - - -state 368 - multiplicativeexpression : multiplicativeexpression '*' unaryexpression . (278) - - . reduce 278 - - -state 369 - multiplicativeexpression : multiplicativeexpression '/' unaryexpression . (279) - - . reduce 279 - - -state 370 - multiplicativeexpression : multiplicativeexpression '%' unaryexpression . (280) - - . reduce 280 - - -371: shift/reduce conflict (shift 315, reduce 275) on '*' -371: shift/reduce conflict (shift 316, reduce 275) on '/' -371: shift/reduce conflict (shift 317, reduce 275) on '%' -state 371 - additiveexpression : additiveexpression '+' multiplicativeexpression . (275) - multiplicativeexpression : multiplicativeexpression . '*' unaryexpression (278) - multiplicativeexpression : multiplicativeexpression . '/' unaryexpression (279) - multiplicativeexpression : multiplicativeexpression . '%' unaryexpression (280) - - '*' shift 315 - '/' shift 316 - '%' shift 317 - ABSTRACT reduce 275 - BOOLEAN reduce 275 - CHAR reduce 275 - FINAL reduce 275 - INSTANCEOF reduce 275 - INT reduce 275 - PRIVATE reduce 275 - PROTECTED reduce 275 - PUBLIC reduce 275 - STATIC reduce 275 - VOID reduce 275 - IDENTIFIER reduce 275 - EQUAL reduce 275 - LESSEQUAL reduce 275 - GREATEREQUAL reduce 275 - NOTEQUAL reduce 275 - LOGICALOR reduce 275 - LOGICALAND reduce 275 - INCREMENT reduce 275 - DECREMENT reduce 275 - ',' reduce 275 - ';' reduce 275 - '.' reduce 275 - '<' reduce 275 - '>' reduce 275 - '}' reduce 275 - ')' reduce 275 - '&' reduce 275 - '+' reduce 275 - '-' reduce 275 - '|' reduce 275 - '^' reduce 275 - - -372: shift/reduce conflict (shift 315, reduce 276) on '*' -372: shift/reduce conflict (shift 316, reduce 276) on '/' -372: shift/reduce conflict (shift 317, reduce 276) on '%' -state 372 - additiveexpression : additiveexpression '-' multiplicativeexpression . (276) - multiplicativeexpression : multiplicativeexpression . '*' unaryexpression (278) - multiplicativeexpression : multiplicativeexpression . '/' unaryexpression (279) - multiplicativeexpression : multiplicativeexpression . '%' unaryexpression (280) - - '*' shift 315 - '/' shift 316 - '%' shift 317 - ABSTRACT reduce 276 - BOOLEAN reduce 276 - CHAR reduce 276 - FINAL reduce 276 - INSTANCEOF reduce 276 - INT reduce 276 - PRIVATE reduce 276 - PROTECTED reduce 276 - PUBLIC reduce 276 - STATIC reduce 276 - VOID reduce 276 - IDENTIFIER reduce 276 - EQUAL reduce 276 - LESSEQUAL reduce 276 - GREATEREQUAL reduce 276 - NOTEQUAL reduce 276 - LOGICALOR reduce 276 - LOGICALAND reduce 276 - INCREMENT reduce 276 - DECREMENT reduce 276 - ',' reduce 276 - ';' reduce 276 - '.' reduce 276 - '<' reduce 276 - '>' reduce 276 - '}' reduce 276 - ')' reduce 276 - '&' reduce 276 - '+' reduce 276 - '-' reduce 276 - '|' reduce 276 - '^' reduce 276 - - -state 373 - relationalexpression : relationalexpression INSTANCEOF referencetype . (272) - - . reduce 272 - - -state 374 - relationalexpression : relationalexpression LESSEQUAL shiftexpression . (270) - - . reduce 270 - - -state 375 - relationalexpression : relationalexpression GREATEREQUAL shiftexpression . (271) - - . reduce 271 - - -state 376 - relationalexpression : relationalexpression '<' shiftexpression . (268) - - . reduce 268 - - -state 377 - relationalexpression : relationalexpression '>' shiftexpression . (269) - - . reduce 269 - - -378: shift/reduce conflict (shift 320, reduce 265) on INSTANCEOF -378: shift/reduce conflict (shift 321, reduce 265) on LESSEQUAL -378: shift/reduce conflict (shift 322, reduce 265) on GREATEREQUAL -378: shift/reduce conflict (shift 323, reduce 265) on '<' -378: shift/reduce conflict (shift 324, reduce 265) on '>' -state 378 - equalityexpression : equalityexpression EQUAL relationalexpression . (265) - relationalexpression : relationalexpression . '<' shiftexpression (268) - relationalexpression : relationalexpression . '>' shiftexpression (269) - relationalexpression : relationalexpression . LESSEQUAL shiftexpression (270) - relationalexpression : relationalexpression . GREATEREQUAL shiftexpression (271) - relationalexpression : relationalexpression . INSTANCEOF referencetype (272) - - INSTANCEOF shift 320 - LESSEQUAL shift 321 - GREATEREQUAL shift 322 - '<' shift 323 - '>' shift 324 - ABSTRACT reduce 265 - BOOLEAN reduce 265 - CHAR reduce 265 - FINAL reduce 265 - INT reduce 265 - PRIVATE reduce 265 - PROTECTED reduce 265 - PUBLIC reduce 265 - STATIC reduce 265 - VOID reduce 265 - IDENTIFIER reduce 265 - EQUAL reduce 265 - NOTEQUAL reduce 265 - LOGICALOR reduce 265 - LOGICALAND reduce 265 - INCREMENT reduce 265 - DECREMENT reduce 265 - ',' reduce 265 - ';' reduce 265 - '.' reduce 265 - '*' reduce 265 - '}' reduce 265 - ')' reduce 265 - '&' reduce 265 - '+' reduce 265 - '-' reduce 265 - '|' reduce 265 - '^' reduce 265 - '/' reduce 265 - '%' reduce 265 - - -379: shift/reduce conflict (shift 320, reduce 266) on INSTANCEOF -379: shift/reduce conflict (shift 321, reduce 266) on LESSEQUAL -379: shift/reduce conflict (shift 322, reduce 266) on GREATEREQUAL -379: shift/reduce conflict (shift 323, reduce 266) on '<' -379: shift/reduce conflict (shift 324, reduce 266) on '>' -state 379 - equalityexpression : equalityexpression NOTEQUAL relationalexpression . (266) - relationalexpression : relationalexpression . '<' shiftexpression (268) - relationalexpression : relationalexpression . '>' shiftexpression (269) - relationalexpression : relationalexpression . LESSEQUAL shiftexpression (270) - relationalexpression : relationalexpression . GREATEREQUAL shiftexpression (271) - relationalexpression : relationalexpression . INSTANCEOF referencetype (272) - - INSTANCEOF shift 320 - LESSEQUAL shift 321 - GREATEREQUAL shift 322 - '<' shift 323 - '>' shift 324 - ABSTRACT reduce 266 - BOOLEAN reduce 266 - CHAR reduce 266 - FINAL reduce 266 - INT reduce 266 - PRIVATE reduce 266 - PROTECTED reduce 266 - PUBLIC reduce 266 - STATIC reduce 266 - VOID reduce 266 - IDENTIFIER reduce 266 - EQUAL reduce 266 - NOTEQUAL reduce 266 - LOGICALOR reduce 266 - LOGICALAND reduce 266 - INCREMENT reduce 266 - DECREMENT reduce 266 - ',' reduce 266 - ';' reduce 266 - '.' reduce 266 - '*' reduce 266 - '}' reduce 266 - ')' reduce 266 - '&' reduce 266 - '+' reduce 266 - '-' reduce 266 - '|' reduce 266 - '^' reduce 266 - '/' reduce 266 - '%' reduce 266 - - -380: shift/reduce conflict (shift 325, reduce 263) on EQUAL -380: shift/reduce conflict (shift 326, reduce 263) on NOTEQUAL -state 380 - andexpression : andexpression '&' equalityexpression . (263) - equalityexpression : equalityexpression . EQUAL relationalexpression (265) - equalityexpression : equalityexpression . NOTEQUAL relationalexpression (266) - - EQUAL shift 325 - NOTEQUAL shift 326 - ABSTRACT reduce 263 - BOOLEAN reduce 263 - CHAR reduce 263 - FINAL reduce 263 - INSTANCEOF reduce 263 - INT reduce 263 - PRIVATE reduce 263 - PROTECTED reduce 263 - PUBLIC reduce 263 - STATIC reduce 263 - VOID reduce 263 - IDENTIFIER reduce 263 - LESSEQUAL reduce 263 - GREATEREQUAL reduce 263 - LOGICALOR reduce 263 - LOGICALAND reduce 263 - INCREMENT reduce 263 - DECREMENT reduce 263 - ',' reduce 263 - ';' reduce 263 - '.' reduce 263 - '*' reduce 263 - '<' reduce 263 - '>' reduce 263 - '}' reduce 263 - ')' reduce 263 - '&' reduce 263 - '+' reduce 263 - '-' reduce 263 - '|' reduce 263 - '^' reduce 263 - '/' reduce 263 - '%' reduce 263 - - -381: shift/reduce conflict (shift 327, reduce 252) on '&' -state 381 - exclusiveorexpression : exclusiveorexpression '^' andexpression . (252) - andexpression : andexpression . '&' equalityexpression (263) - - '&' shift 327 - ABSTRACT reduce 252 - BOOLEAN reduce 252 - CHAR reduce 252 - FINAL reduce 252 - INSTANCEOF reduce 252 - INT reduce 252 - PRIVATE reduce 252 - PROTECTED reduce 252 - PUBLIC reduce 252 - STATIC reduce 252 - VOID reduce 252 - IDENTIFIER reduce 252 - EQUAL reduce 252 - LESSEQUAL reduce 252 - GREATEREQUAL reduce 252 - NOTEQUAL reduce 252 - LOGICALOR reduce 252 - LOGICALAND reduce 252 - INCREMENT reduce 252 - DECREMENT reduce 252 - ',' reduce 252 - ';' reduce 252 - '.' reduce 252 - '*' reduce 252 - '<' reduce 252 - '>' reduce 252 - '}' reduce 252 - ')' reduce 252 - '+' reduce 252 - '-' reduce 252 - '|' reduce 252 - '^' reduce 252 - '/' reduce 252 - '%' reduce 252 - - -382: shift/reduce conflict (shift 328, reduce 243) on '^' -state 382 - inclusiveorexpression : inclusiveorexpression '|' exclusiveorexpression . (243) - exclusiveorexpression : exclusiveorexpression . '^' andexpression (252) - - '^' shift 328 - ABSTRACT reduce 243 - BOOLEAN reduce 243 - CHAR reduce 243 - FINAL reduce 243 - INSTANCEOF reduce 243 - INT reduce 243 - PRIVATE reduce 243 - PROTECTED reduce 243 - PUBLIC reduce 243 - STATIC reduce 243 - VOID reduce 243 - IDENTIFIER reduce 243 - EQUAL reduce 243 - LESSEQUAL reduce 243 - GREATEREQUAL reduce 243 - NOTEQUAL reduce 243 - LOGICALOR reduce 243 - LOGICALAND reduce 243 - INCREMENT reduce 243 - DECREMENT reduce 243 - ',' reduce 243 - ';' reduce 243 - '.' reduce 243 - '*' reduce 243 - '<' reduce 243 - '>' reduce 243 - '}' reduce 243 - ')' reduce 243 - '&' reduce 243 - '+' reduce 243 - '-' reduce 243 - '|' reduce 243 - '/' reduce 243 - '%' reduce 243 - - -383: shift/reduce conflict (shift 329, reduce 231) on '|' -state 383 - conditionalandexpression : conditionalandexpression LOGICALAND inclusiveorexpression . (231) - inclusiveorexpression : inclusiveorexpression . '|' exclusiveorexpression (243) - - '|' shift 329 - ABSTRACT reduce 231 - BOOLEAN reduce 231 - CHAR reduce 231 - FINAL reduce 231 - INSTANCEOF reduce 231 - INT reduce 231 - PRIVATE reduce 231 - PROTECTED reduce 231 - PUBLIC reduce 231 - STATIC reduce 231 - VOID reduce 231 - IDENTIFIER reduce 231 - EQUAL reduce 231 - LESSEQUAL reduce 231 - GREATEREQUAL reduce 231 - NOTEQUAL reduce 231 - LOGICALOR reduce 231 - LOGICALAND reduce 231 - INCREMENT reduce 231 - DECREMENT reduce 231 - ',' reduce 231 - ';' reduce 231 - '.' reduce 231 - '*' reduce 231 - '<' reduce 231 - '>' reduce 231 - '}' reduce 231 - ')' reduce 231 - '&' reduce 231 - '+' reduce 231 - '-' reduce 231 - '^' reduce 231 - '/' reduce 231 - '%' reduce 231 - - -384: shift/reduce conflict (shift 330, reduce 206) on LOGICALAND -state 384 - conditionalorexpression : conditionalorexpression LOGICALOR conditionalandexpression . (206) - conditionalandexpression : conditionalandexpression . LOGICALAND inclusiveorexpression (231) - - LOGICALAND shift 330 - ABSTRACT reduce 206 - BOOLEAN reduce 206 - CHAR reduce 206 - FINAL reduce 206 - INSTANCEOF reduce 206 - INT reduce 206 - PRIVATE reduce 206 - PROTECTED reduce 206 - PUBLIC reduce 206 - STATIC reduce 206 - VOID reduce 206 - IDENTIFIER reduce 206 - EQUAL reduce 206 - LESSEQUAL reduce 206 - GREATEREQUAL reduce 206 - NOTEQUAL reduce 206 - LOGICALOR reduce 206 - INCREMENT reduce 206 - DECREMENT reduce 206 - ',' reduce 206 - ';' reduce 206 - '.' reduce 206 - '*' reduce 206 - '<' reduce 206 - '>' reduce 206 - '}' reduce 206 - ')' reduce 206 - '&' reduce 206 - '+' reduce 206 - '-' reduce 206 - '|' reduce 206 - '^' reduce 206 - '/' reduce 206 - '%' reduce 206 - - -state 385 - fielddeclarator : type variabledeclarator '=' expression . (81) - - . reduce 81 - - -state 386 - methodheader : modifiers '<' boundedMethodParameters '>' VOID . methoddeclarator (120) - methodheader : modifiers '<' boundedMethodParameters '>' VOID . methoddeclarator throws (122) - - IDENTIFIER shift 107 - . error - - methoddeclarator goto 405 - - -state 387 - methodheader : modifiers '<' boundedMethodParameters '>' type . methoddeclarator (110) - methodheader : modifiers '<' boundedMethodParameters '>' type . methoddeclarator throws (114) - - IDENTIFIER shift 107 - . error - - methoddeclarator goto 406 - - -state 388 - explicitconstructorinvocation : THIS '(' ')' . ';' (139) - - ';' shift 407 - . error - - -state 389 - explicitconstructorinvocation : THIS '(' argumentlist . ')' ';' (140) - argumentlist : argumentlist . ',' expression (154) - - ',' shift 397 - ')' shift 408 - . error - - -state 390 - constructorbody : '{' explicitconstructorinvocation blockstatements '}' . (96) - - . reduce 96 - - -state 391 - constantdeclaration : modifiers type IDENTIFIER '=' expression . ';' (79) - - ';' shift 409 - . error - - -state 392 - forstatement : FOR '(' ';' ';' . expression ')' statement (183) - forstatement : FOR '(' ';' ';' . ')' statement (184) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - ')' shift 410 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 411 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 393 - forstatement : FOR '(' ';' expression . ';' expression ')' statement (180) - forstatement : FOR '(' ';' expression . ';' ')' statement (182) - - ';' shift 412 - . error - - -state 394 - forstatement : FOR '(' expression ';' . expression ';' expression ')' statement (177) - forstatement : FOR '(' expression ';' . expression ';' ')' statement (178) - forstatement : FOR '(' expression ';' . ';' expression ')' statement (179) - forstatement : FOR '(' expression ';' . ';' ')' statement (181) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 413 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 414 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 395 - ifthenstatement : IF '(' expression ')' . statement (174) - ifthenelsestatement : IF '(' expression ')' . statementnoshortif ELSE statement (175) - - FOR shift 154 - IF shift 415 - RETURN shift 156 - THIS shift 157 - WHILE shift 416 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 417 - statement goto 418 - statementnoshortif goto 419 - whilestatement goto 198 - forstatement goto 199 - whilestatementnoshortif goto 420 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - ifthenelsestatementnoshortif goto 421 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 396 - whilestatement : WHILE '(' expression ')' . statement (176) - - FOR shift 154 - IF shift 155 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - statement goto 422 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 397 - argumentlist : argumentlist ',' . expression (154) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 423 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 398 - methodinvocation : name '(' argumentlist ')' . (225) +state 304 + predecrementexpression : DECREMENT unaryexpression . (225) . reduce 225 -state 399 - methodinvocation : primary '.' IDENTIFIER '(' . ')' (226) - methodinvocation : primary '.' IDENTIFIER '(' . argumentlist ')' (227) +state 305 + lambdaexpressionparameter : '(' ')' . (214) - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - ')' shift 424 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 354 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - argumentlist goto 425 - methodinvocation goto 247 - castexpression goto 248 + . reduce 214 -state 400 - methodheader : '<' boundedMethodParameters '>' VOID methoddeclarator throws . (121) +state 306 + formalparameterlist : formalparameterlist . ',' formalparameter (142) + lambdaexpressionparameter : '(' formalparameterlist . ')' (215) - . reduce 121 - - -state 401 - methodheader : '<' boundedMethodParameters '>' type methoddeclarator throws . (112) - - . reduce 112 - - -state 402 - classinstancecreationexpression : NEW classtype '(' ')' . (228) - - . reduce 228 - - -state 403 - argumentlist : argumentlist . ',' expression (154) - classinstancecreationexpression : NEW classtype '(' argumentlist . ')' (229) - - ',' shift 397 - ')' shift 426 + ',' shift 326 + ')' shift 373 . error -state 404 - castexpression : '(' primitivetype ')' unaryexpression . (261) +state 307 + methodinvocation : name '(' . ')' (228) + methodinvocation : name '(' . argumentlist ')' (229) - . reduce 261 - - -state 405 - methodheader : modifiers '<' boundedMethodParameters '>' VOID methoddeclarator . (120) - methodheader : modifiers '<' boundedMethodParameters '>' VOID methoddeclarator . throws (122) - - THROWS shift 114 - ';' reduce 120 - '{' reduce 120 - - throws goto 427 - - -state 406 - methodheader : modifiers '<' boundedMethodParameters '>' type methoddeclarator . (110) - methodheader : modifiers '<' boundedMethodParameters '>' type methoddeclarator . throws (114) - - THROWS shift 114 - ';' reduce 110 - '{' reduce 110 - - throws goto 428 - - -state 407 - explicitconstructorinvocation : THIS '(' ')' ';' . (139) - - . reduce 139 - - -state 408 - explicitconstructorinvocation : THIS '(' argumentlist ')' . ';' (140) - - ';' shift 429 + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + ')' shift 374 + '+' shift 250 + '-' shift 251 + '!' shift 252 . error - -state 409 - constantdeclaration : modifiers type IDENTIFIER '=' expression ';' . (79) - - . reduce 79 + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 375 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + argumentlist goto 376 + methodinvocation goto 275 + castexpression goto 276 -state 410 - forstatement : FOR '(' ';' ';' ')' . statement (184) +state 308 + variabledeclarators : variabledeclarators . ',' variabledeclarator (137) + localvariabledeclaration : type variabledeclarators . (172) - FOR shift 154 - IF shift 155 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - statement goto 430 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 + ',' shift 151 + ';' reduce 172 -state 411 - forstatement : FOR '(' ';' ';' expression . ')' statement (183) +state 309 + block : '{' blockstatements '}' . (94) - ')' shift 431 - . error + . reduce 94 -state 412 - forstatement : FOR '(' ';' expression ';' . expression ')' statement (180) - forstatement : FOR '(' ';' expression ';' . ')' statement (182) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - ')' shift 432 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 433 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 413 - forstatement : FOR '(' expression ';' ';' . expression ')' statement (179) - forstatement : FOR '(' expression ';' ';' . ')' statement (181) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - ')' shift 434 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 435 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 414 - forstatement : FOR '(' expression ';' expression . ';' expression ')' statement (177) - forstatement : FOR '(' expression ';' expression . ';' ')' statement (178) - - ';' shift 436 - . error - - -state 415 - ifthenstatement : IF . '(' expression ')' statement (174) - ifthenelsestatement : IF . '(' expression ')' statementnoshortif ELSE statement (175) - ifthenelsestatementnoshortif : IF . '(' expression ')' statementnoshortif ELSE statementnoshortif (203) - - '(' shift 437 - . error - - -state 416 - whilestatement : WHILE . '(' expression ')' statement (176) - whilestatementnoshortif : WHILE . '(' expression ')' statementnoshortif (204) - - '(' shift 438 - . error - - -state 417 - statement : statementwithouttrailingsubstatement . (159) - statementnoshortif : statementwithouttrailingsubstatement . (191) - - BOOLEAN reduce 159 - CHAR reduce 159 - ELSE reduce 191 - FOR reduce 159 - IF reduce 159 - INT reduce 159 - RETURN reduce 159 - THIS reduce 159 - WHILE reduce 159 - INTLITERAL reduce 159 - LONGLITERAL reduce 159 - DOUBLELITERAL reduce 159 - FLOATLITERAL reduce 159 - BOOLLITERAL reduce 159 - JNULL reduce 159 - CHARLITERAL reduce 159 - STRINGLITERAL reduce 159 - IDENTIFIER reduce 159 - INCREMENT reduce 159 - DECREMENT reduce 159 - ';' reduce 159 - '{' reduce 159 - '}' reduce 159 - '(' reduce 159 - - -state 418 - ifthenstatement : IF '(' expression ')' statement . (174) - - . reduce 174 - - -state 419 - ifthenelsestatement : IF '(' expression ')' statementnoshortif . ELSE statement (175) - - ELSE shift 439 - . error - - -state 420 - statementnoshortif : whilestatementnoshortif . (193) - - . reduce 193 - - -state 421 - statementnoshortif : ifthenelsestatementnoshortif . (192) - - . reduce 192 - - -state 422 - whilestatement : WHILE '(' expression ')' statement . (176) - - . reduce 176 - - -state 423 - argumentlist : argumentlist ',' expression . (154) - - . reduce 154 - - -state 424 - methodinvocation : primary '.' IDENTIFIER '(' ')' . (226) - - . reduce 226 - - -state 425 - argumentlist : argumentlist . ',' expression (154) - methodinvocation : primary '.' IDENTIFIER '(' argumentlist . ')' (227) - - ',' shift 397 - ')' shift 440 - . error - - -state 426 - classinstancecreationexpression : NEW classtype '(' argumentlist ')' . (229) - - . reduce 229 - - -state 427 - methodheader : modifiers '<' boundedMethodParameters '>' VOID methoddeclarator throws . (122) - - . reduce 122 - - -state 428 - methodheader : modifiers '<' boundedMethodParameters '>' type methoddeclarator throws . (114) - - . reduce 114 - - -state 429 - explicitconstructorinvocation : THIS '(' argumentlist ')' ';' . (140) +state 310 + blockstatements : blockstatements blockstatement . (140) . reduce 140 -state 430 - forstatement : FOR '(' ';' ';' ')' statement . (184) +state 311 + localvariabledeclarationstatement : localvariabledeclaration ';' . (162) - . reduce 184 + . reduce 162 -state 431 - forstatement : FOR '(' ';' ';' expression ')' . statement (183) +state 312 + lambdaassignmentoperator : LAMBDAASSIGNMENT . (211) - FOR shift 154 - IF shift 155 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 + . reduce 211 + + +state 313 + lambdaexpression : lambdaexpressionparameter lambdaassignmentoperator . lambdabody (216) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '{' shift 138 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 . error - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - statement goto 441 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 377 + lambdabody goto 378 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 379 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 -state 432 - forstatement : FOR '(' ';' expression ';' ')' . statement (182) +state 314 + methodinvocation : primary '.' . IDENTIFIER '(' ')' (230) + methodinvocation : primary '.' . IDENTIFIER '(' argumentlist ')' (231) - FOR shift 154 - IF shift 155 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - statement goto 442 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 433 - forstatement : FOR '(' ';' expression ';' expression . ')' statement (180) - - ')' shift 443 + IDENTIFIER shift 380 . error -state 434 - forstatement : FOR '(' expression ';' ';' ')' . statement (181) +state 315 + postincrementexpression : postfixexpression INCREMENT . (226) - FOR shift 154 - IF shift 155 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - statement goto 444 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 + . reduce 226 -state 435 - forstatement : FOR '(' expression ';' ';' expression . ')' statement (179) - - ')' shift 445 - . error - - -state 436 - forstatement : FOR '(' expression ';' expression ';' . expression ')' statement (177) - forstatement : FOR '(' expression ';' expression ';' . ')' statement (178) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - ')' shift 446 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 447 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 437 - ifthenstatement : IF '(' . expression ')' statement (174) - ifthenelsestatement : IF '(' . expression ')' statementnoshortif ELSE statement (175) - ifthenelsestatementnoshortif : IF '(' . expression ')' statementnoshortif ELSE statementnoshortif (203) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 448 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 438 - whilestatement : WHILE '(' . expression ')' statement (176) - whilestatementnoshortif : WHILE '(' . expression ')' statementnoshortif (204) - - NEW shift 219 - THIS shift 157 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - '(' shift 220 - '+' shift 221 - '-' shift 222 - '!' shift 223 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 225 - unaryexpressionnotplusminus goto 226 - unaryexpression goto 227 - multiplicativeexpression goto 228 - additiveexpression goto 229 - shiftexpression goto 230 - relationalexpression goto 231 - equalityexpression goto 232 - andexpression goto 233 - exclusiveorexpression goto 234 - inclusiveorexpression goto 235 - conditionalandexpression goto 236 - conditionalorexpression goto 237 - conditionalexpression goto 238 - assignmentexpression goto 239 - lambdaexpression goto 188 - expression goto 449 - preincrementexpression goto 241 - predecrementexpression goto 242 - postincrementexpression goto 243 - postdecrementexpression goto 244 - classinstancecreationexpression goto 245 - assignment goto 246 - lefthandside goto 205 - methodinvocation goto 247 - castexpression goto 248 - - -state 439 - ifthenelsestatement : IF '(' expression ')' statementnoshortif ELSE . statement (175) - - FOR shift 154 - IF shift 155 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - statement goto 450 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 440 - methodinvocation : primary '.' IDENTIFIER '(' argumentlist ')' . (227) +state 316 + postdecrementexpression : postfixexpression DECREMENT . (227) . reduce 227 -state 441 - forstatement : FOR '(' ';' ';' expression ')' statement . (183) +state 317 + expressionstatement : statementexpression ';' . (192) - . reduce 183 + . reduce 192 -state 442 - forstatement : FOR '(' ';' expression ';' ')' statement . (182) +state 318 + assignmentoperator : PLUSEQUAL . (222) - . reduce 182 + . reduce 222 -state 443 - forstatement : FOR '(' ';' expression ';' expression ')' . statement (180) +state 319 + assignmentoperator : MINUSEQUAL . (223) - FOR shift 154 - IF shift 155 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 + . reduce 223 + + +state 320 + assignmentoperator : TIMESEQUAL . (219) + + . reduce 219 + + +state 321 + assignmentoperator : DIVIDEEQUAL . (220) + + . reduce 220 + + +state 322 + assignmentoperator : MODULOEQUAL . (221) + + . reduce 221 + + +state 323 + assignmentoperator : '=' . (218) + + . reduce 218 + + +state 324 + assignment : lefthandside assignmentoperator . assignmentexpression (199) + assignment : lefthandside assignmentoperator . classinstancecreationexpression (200) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 . error - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 381 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 382 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 325 + formalparameter : type variabledeclaratorid . (155) + + . reduce 155 + + +state 326 + formalparameterlist : formalparameterlist ',' . formalparameter (142) + + BOOLEAN shift 2 + CHAR shift 3 + INT shift 6 + IDENTIFIER shift 197 + . error + + variabledeclaratorid goto 238 + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 239 + formalparameter goto 383 + + +state 327 + methoddeclarator : IDENTIFIER '(' formalparameterlist ')' . (148) + + . reduce 148 + + +state 328 + boundedMethodParameters : boundedMethodParameters ',' boundedMethodParameter . (110) + + . reduce 110 + + +state 329 + methodheader : '<' boundedMethodParameters '>' VOID . methoddeclarator (123) + methodheader : '<' boundedMethodParameters '>' VOID . methoddeclarator throws (125) + + IDENTIFIER shift 140 + . error + + methoddeclarator goto 384 + + +state 330 + methodheader : '<' boundedMethodParameters '>' methoddeclarator . (128) + + . reduce 128 + + +state 331 + methodheader : '<' boundedMethodParameters '>' type . methoddeclarator (111) + methodheader : '<' boundedMethodParameters '>' type . methoddeclarator throws (116) + + IDENTIFIER shift 140 + . error + + methoddeclarator goto 385 + + +state 332 + classtypelist : classtypelist ',' . classtype (146) + + IDENTIFIER shift 14 + . error + + simplename goto 18 + classtype goto 386 + classorinterfacetype goto 83 + + +state 333 + classinstancecreationexpression : NEW classtype . '(' ')' (232) + classinstancecreationexpression : NEW classtype . '(' argumentlist ')' (233) + + '(' shift 387 + . error + + +state 334 + type : primitivetype . (132) + type : primitivetype . '[' ']' (133) + castexpression : '(' primitivetype . ')' unaryexpression (265) + + ')' shift 388 + '[' shift 45 + IDENTIFIER reduce 132 + + +state 335 + unaryexpression : '+' unaryexpression . (238) + + . reduce 238 + + +state 336 + unaryexpression : '-' unaryexpression . (239) + + . reduce 239 + + +state 337 + unaryexpressionnotplusminus : '!' unaryexpression . (253) + + . reduce 253 + + +state 338 + multiplicativeexpression : multiplicativeexpression '*' . unaryexpression (282) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 389 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 339 + multiplicativeexpression : multiplicativeexpression '/' . unaryexpression (283) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 390 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 340 + multiplicativeexpression : multiplicativeexpression '%' . unaryexpression (284) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 391 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 341 + additiveexpression : additiveexpression '+' . multiplicativeexpression (279) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 392 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 342 + additiveexpression : additiveexpression '-' . multiplicativeexpression (280) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 393 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 343 + relationalexpression : relationalexpression INSTANCEOF . referencetype (276) + + IDENTIFIER shift 14 + . error + + simplename goto 18 + classorinterfacetype goto 21 + referencetype goto 394 + + +state 344 + relationalexpression : relationalexpression LESSEQUAL . shiftexpression (274) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 395 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 345 + relationalexpression : relationalexpression GREATEREQUAL . shiftexpression (275) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 396 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 346 + relationalexpression : relationalexpression '<' . shiftexpression (272) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 397 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 347 + relationalexpression : relationalexpression '>' . shiftexpression (273) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 398 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 348 + equalityexpression : equalityexpression EQUAL . relationalexpression (269) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 399 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 349 + equalityexpression : equalityexpression NOTEQUAL . relationalexpression (270) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 400 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 350 + andexpression : andexpression '&' . equalityexpression (267) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 401 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 351 + exclusiveorexpression : exclusiveorexpression '^' . andexpression (256) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 402 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 352 + inclusiveorexpression : inclusiveorexpression '|' . exclusiveorexpression (247) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 403 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 353 + conditionalandexpression : conditionalandexpression LOGICALAND . inclusiveorexpression (235) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 404 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 354 + conditionalorexpression : conditionalorexpression LOGICALOR . conditionalandexpression (210) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 405 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 355 + constructordeclarator : simplename '(' formalparameterlist ')' . (96) + + . reduce 96 + + +state 356 + fielddeclarator : type variabledeclarator '=' expression . (85) + fielddeclarator : variabledeclarator '=' expression . (86) + + ABSTRACT reduce 86 + BOOLEAN reduce 86 + CHAR reduce 86 + FINAL reduce 86 + INT reduce 86 + PRIVATE reduce 86 + PROTECTED reduce 86 + PUBLIC reduce 86 + STATIC reduce 86 + VOID reduce 86 + IDENTIFIER reduce 86 + ';' reduce 85 + '<' reduce 86 + '}' reduce 86 + + +state 357 + fielddeclarator : type variabledeclarator '=' . expression (85) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 406 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 358 + methodheader : modifiers VOID methoddeclarator throws . (122) + + . reduce 122 + + +state 359 + methodheader : modifiers '<' boundedMethodParameters '>' . type methoddeclarator (114) + methodheader : modifiers '<' boundedMethodParameters '>' . type methoddeclarator throws (118) + methodheader : modifiers '<' boundedMethodParameters '>' . VOID methoddeclarator (124) + methodheader : modifiers '<' boundedMethodParameters '>' . VOID methoddeclarator throws (126) + + BOOLEAN shift 2 + CHAR shift 3 + INT shift 6 + VOID shift 407 + IDENTIFIER shift 14 + . error + + simplename goto 18 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 408 + + +state 360 + methodheader : modifiers type methoddeclarator throws . (117) + + . reduce 117 + + +state 361 + fielddeclaration : modifiers type variabledeclarators ';' . (91) + + . reduce 91 + + +state 362 + explicitconstructorinvocation : THIS '(' . ')' ';' (143) + explicitconstructorinvocation : THIS '(' . argumentlist ')' ';' (144) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + ')' shift 409 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 375 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + argumentlist goto 410 + methodinvocation goto 275 + castexpression goto 276 + + +state 363 + constructorbody : '{' blockstatements '}' . (99) + + . reduce 99 + + +state 364 + constructorbody : '{' explicitconstructorinvocation '}' . (98) + + . reduce 98 + + +state 365 + constructorbody : '{' explicitconstructorinvocation blockstatements . '}' (100) + blockstatements : blockstatements . blockstatement (140) + + BOOLEAN shift 2 + CHAR shift 3 + FOR shift 184 + IF shift 185 + INT shift 6 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 197 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '}' shift 411 + '(' shift 202 + . error + + variabledeclarators goto 203 + variabledeclarator goto 204 + variabledeclaratorid goto 101 + simplename goto 205 + qualifiedname goto 35 + name goto 206 + classorinterfacetype goto 21 + integraltype goto 22 + numerictype goto 23 + primitivetype goto 24 + referencetype goto 25 + type goto 207 + block goto 208 + localvariabledeclarationstatement goto 210 + localvariabledeclaration goto 211 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + blockstatement goto 310 + statement goto 226 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 366 + constantdeclaration : modifiers type IDENTIFIER '=' . expression ';' (83) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 412 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 367 + boundedclassidentifierlist : boundedclassidentifierlist '&' referencetype . (108) + + . reduce 108 + + +state 368 + forstatement : FOR '(' ';' . expression ';' expression ')' statement (184) + forstatement : FOR '(' ';' . expression ';' ')' statement (186) + forstatement : FOR '(' ';' . ';' expression ')' statement (187) + forstatement : FOR '(' ';' . ';' ')' statement (188) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 413 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 414 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 369 + forstatement : FOR '(' expression . ';' expression ';' expression ')' statement (181) + forstatement : FOR '(' expression . ';' expression ';' ')' statement (182) + forstatement : FOR '(' expression . ';' ';' expression ')' statement (183) + forstatement : FOR '(' expression . ';' ';' ')' statement (185) + + ';' shift 415 + . error + + +state 370 + ifthenstatement : IF '(' expression . ')' statement (178) + ifthenelsestatement : IF '(' expression . ')' statementnoshortif ELSE statement (179) + + ')' shift 416 + . error + + +state 371 + returnstatement : RETURN expression ';' . (194) + + . reduce 194 + + +state 372 + whilestatement : WHILE '(' expression . ')' statement (180) + + ')' shift 417 + . error + + +state 373 + lambdaexpressionparameter : '(' formalparameterlist ')' . (215) + + . reduce 215 + + +state 374 + methodinvocation : name '(' ')' . (228) + + . reduce 228 + + +state 375 + argumentlist : expression . (157) + + . reduce 157 + + +state 376 + argumentlist : argumentlist . ',' expression (158) + methodinvocation : name '(' argumentlist . ')' (229) + + ',' shift 418 + ')' shift 419 + . error + + +state 377 + lambdabody : block . (212) + + . reduce 212 + + +state 378 + lambdaexpression : lambdaexpressionparameter lambdaassignmentoperator lambdabody . (216) + + . reduce 216 + + +state 379 + lambdabody : expression . (213) + + . reduce 213 + + +state 380 + methodinvocation : primary '.' IDENTIFIER . '(' ')' (230) + methodinvocation : primary '.' IDENTIFIER . '(' argumentlist ')' (231) + + '(' shift 420 + . error + + +state 381 + assignment : lefthandside assignmentoperator assignmentexpression . (199) + + . reduce 199 + + +state 382 + assignment : lefthandside assignmentoperator classinstancecreationexpression . (200) + + . reduce 200 + + +state 383 + formalparameterlist : formalparameterlist ',' formalparameter . (142) + + . reduce 142 + + +state 384 + methodheader : '<' boundedMethodParameters '>' VOID methoddeclarator . (123) + methodheader : '<' boundedMethodParameters '>' VOID methoddeclarator . throws (125) + + THROWS shift 147 + ';' reduce 123 + '{' reduce 123 + + throws goto 421 + + +state 385 + methodheader : '<' boundedMethodParameters '>' type methoddeclarator . (111) + methodheader : '<' boundedMethodParameters '>' type methoddeclarator . throws (116) + + THROWS shift 147 + ';' reduce 111 + '{' reduce 111 + + throws goto 422 + + +state 386 + classtypelist : classtypelist ',' classtype . (146) + + . reduce 146 + + +state 387 + classinstancecreationexpression : NEW classtype '(' . ')' (232) + classinstancecreationexpression : NEW classtype '(' . argumentlist ')' (233) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + ')' shift 423 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 375 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + argumentlist goto 424 + methodinvocation goto 275 + castexpression goto 276 + + +state 388 + castexpression : '(' primitivetype ')' . unaryexpression (265) + + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 302 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 425 + lambdaexpression goto 217 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + methodinvocation goto 275 + castexpression goto 276 + + +state 389 + multiplicativeexpression : multiplicativeexpression '*' unaryexpression . (282) + + . reduce 282 + + +state 390 + multiplicativeexpression : multiplicativeexpression '/' unaryexpression . (283) + + . reduce 283 + + +state 391 + multiplicativeexpression : multiplicativeexpression '%' unaryexpression . (284) + + . reduce 284 + + +392: shift/reduce conflict (shift 338, reduce 279) on '*' +392: shift/reduce conflict (shift 339, reduce 279) on '/' +392: shift/reduce conflict (shift 340, reduce 279) on '%' +state 392 + additiveexpression : additiveexpression '+' multiplicativeexpression . (279) + multiplicativeexpression : multiplicativeexpression . '*' unaryexpression (282) + multiplicativeexpression : multiplicativeexpression . '/' unaryexpression (283) + multiplicativeexpression : multiplicativeexpression . '%' unaryexpression (284) + + '*' shift 338 + '/' shift 339 + '%' shift 340 + ABSTRACT reduce 279 + BOOLEAN reduce 279 + CHAR reduce 279 + FINAL reduce 279 + INSTANCEOF reduce 279 + INT reduce 279 + PRIVATE reduce 279 + PROTECTED reduce 279 + PUBLIC reduce 279 + STATIC reduce 279 + VOID reduce 279 + IDENTIFIER reduce 279 + EQUAL reduce 279 + LESSEQUAL reduce 279 + GREATEREQUAL reduce 279 + NOTEQUAL reduce 279 + LOGICALOR reduce 279 + LOGICALAND reduce 279 + INCREMENT reduce 279 + DECREMENT reduce 279 + ',' reduce 279 + ';' reduce 279 + '.' reduce 279 + '<' reduce 279 + '>' reduce 279 + '}' reduce 279 + ')' reduce 279 + '&' reduce 279 + '+' reduce 279 + '-' reduce 279 + '|' reduce 279 + '^' reduce 279 + + +393: shift/reduce conflict (shift 338, reduce 280) on '*' +393: shift/reduce conflict (shift 339, reduce 280) on '/' +393: shift/reduce conflict (shift 340, reduce 280) on '%' +state 393 + additiveexpression : additiveexpression '-' multiplicativeexpression . (280) + multiplicativeexpression : multiplicativeexpression . '*' unaryexpression (282) + multiplicativeexpression : multiplicativeexpression . '/' unaryexpression (283) + multiplicativeexpression : multiplicativeexpression . '%' unaryexpression (284) + + '*' shift 338 + '/' shift 339 + '%' shift 340 + ABSTRACT reduce 280 + BOOLEAN reduce 280 + CHAR reduce 280 + FINAL reduce 280 + INSTANCEOF reduce 280 + INT reduce 280 + PRIVATE reduce 280 + PROTECTED reduce 280 + PUBLIC reduce 280 + STATIC reduce 280 + VOID reduce 280 + IDENTIFIER reduce 280 + EQUAL reduce 280 + LESSEQUAL reduce 280 + GREATEREQUAL reduce 280 + NOTEQUAL reduce 280 + LOGICALOR reduce 280 + LOGICALAND reduce 280 + INCREMENT reduce 280 + DECREMENT reduce 280 + ',' reduce 280 + ';' reduce 280 + '.' reduce 280 + '<' reduce 280 + '>' reduce 280 + '}' reduce 280 + ')' reduce 280 + '&' reduce 280 + '+' reduce 280 + '-' reduce 280 + '|' reduce 280 + '^' reduce 280 + + +state 394 + relationalexpression : relationalexpression INSTANCEOF referencetype . (276) + + . reduce 276 + + +state 395 + relationalexpression : relationalexpression LESSEQUAL shiftexpression . (274) + + . reduce 274 + + +state 396 + relationalexpression : relationalexpression GREATEREQUAL shiftexpression . (275) + + . reduce 275 + + +state 397 + relationalexpression : relationalexpression '<' shiftexpression . (272) + + . reduce 272 + + +state 398 + relationalexpression : relationalexpression '>' shiftexpression . (273) + + . reduce 273 + + +399: shift/reduce conflict (shift 343, reduce 269) on INSTANCEOF +399: shift/reduce conflict (shift 344, reduce 269) on LESSEQUAL +399: shift/reduce conflict (shift 345, reduce 269) on GREATEREQUAL +399: shift/reduce conflict (shift 346, reduce 269) on '<' +399: shift/reduce conflict (shift 347, reduce 269) on '>' +state 399 + equalityexpression : equalityexpression EQUAL relationalexpression . (269) + relationalexpression : relationalexpression . '<' shiftexpression (272) + relationalexpression : relationalexpression . '>' shiftexpression (273) + relationalexpression : relationalexpression . LESSEQUAL shiftexpression (274) + relationalexpression : relationalexpression . GREATEREQUAL shiftexpression (275) + relationalexpression : relationalexpression . INSTANCEOF referencetype (276) + + INSTANCEOF shift 343 + LESSEQUAL shift 344 + GREATEREQUAL shift 345 + '<' shift 346 + '>' shift 347 + ABSTRACT reduce 269 + BOOLEAN reduce 269 + CHAR reduce 269 + FINAL reduce 269 + INT reduce 269 + PRIVATE reduce 269 + PROTECTED reduce 269 + PUBLIC reduce 269 + STATIC reduce 269 + VOID reduce 269 + IDENTIFIER reduce 269 + EQUAL reduce 269 + NOTEQUAL reduce 269 + LOGICALOR reduce 269 + LOGICALAND reduce 269 + INCREMENT reduce 269 + DECREMENT reduce 269 + ',' reduce 269 + ';' reduce 269 + '.' reduce 269 + '*' reduce 269 + '}' reduce 269 + ')' reduce 269 + '&' reduce 269 + '+' reduce 269 + '-' reduce 269 + '|' reduce 269 + '^' reduce 269 + '/' reduce 269 + '%' reduce 269 + + +400: shift/reduce conflict (shift 343, reduce 270) on INSTANCEOF +400: shift/reduce conflict (shift 344, reduce 270) on LESSEQUAL +400: shift/reduce conflict (shift 345, reduce 270) on GREATEREQUAL +400: shift/reduce conflict (shift 346, reduce 270) on '<' +400: shift/reduce conflict (shift 347, reduce 270) on '>' +state 400 + equalityexpression : equalityexpression NOTEQUAL relationalexpression . (270) + relationalexpression : relationalexpression . '<' shiftexpression (272) + relationalexpression : relationalexpression . '>' shiftexpression (273) + relationalexpression : relationalexpression . LESSEQUAL shiftexpression (274) + relationalexpression : relationalexpression . GREATEREQUAL shiftexpression (275) + relationalexpression : relationalexpression . INSTANCEOF referencetype (276) + + INSTANCEOF shift 343 + LESSEQUAL shift 344 + GREATEREQUAL shift 345 + '<' shift 346 + '>' shift 347 + ABSTRACT reduce 270 + BOOLEAN reduce 270 + CHAR reduce 270 + FINAL reduce 270 + INT reduce 270 + PRIVATE reduce 270 + PROTECTED reduce 270 + PUBLIC reduce 270 + STATIC reduce 270 + VOID reduce 270 + IDENTIFIER reduce 270 + EQUAL reduce 270 + NOTEQUAL reduce 270 + LOGICALOR reduce 270 + LOGICALAND reduce 270 + INCREMENT reduce 270 + DECREMENT reduce 270 + ',' reduce 270 + ';' reduce 270 + '.' reduce 270 + '*' reduce 270 + '}' reduce 270 + ')' reduce 270 + '&' reduce 270 + '+' reduce 270 + '-' reduce 270 + '|' reduce 270 + '^' reduce 270 + '/' reduce 270 + '%' reduce 270 + + +401: shift/reduce conflict (shift 348, reduce 267) on EQUAL +401: shift/reduce conflict (shift 349, reduce 267) on NOTEQUAL +state 401 + andexpression : andexpression '&' equalityexpression . (267) + equalityexpression : equalityexpression . EQUAL relationalexpression (269) + equalityexpression : equalityexpression . NOTEQUAL relationalexpression (270) + + EQUAL shift 348 + NOTEQUAL shift 349 + ABSTRACT reduce 267 + BOOLEAN reduce 267 + CHAR reduce 267 + FINAL reduce 267 + INSTANCEOF reduce 267 + INT reduce 267 + PRIVATE reduce 267 + PROTECTED reduce 267 + PUBLIC reduce 267 + STATIC reduce 267 + VOID reduce 267 + IDENTIFIER reduce 267 + LESSEQUAL reduce 267 + GREATEREQUAL reduce 267 + LOGICALOR reduce 267 + LOGICALAND reduce 267 + INCREMENT reduce 267 + DECREMENT reduce 267 + ',' reduce 267 + ';' reduce 267 + '.' reduce 267 + '*' reduce 267 + '<' reduce 267 + '>' reduce 267 + '}' reduce 267 + ')' reduce 267 + '&' reduce 267 + '+' reduce 267 + '-' reduce 267 + '|' reduce 267 + '^' reduce 267 + '/' reduce 267 + '%' reduce 267 + + +402: shift/reduce conflict (shift 350, reduce 256) on '&' +state 402 + exclusiveorexpression : exclusiveorexpression '^' andexpression . (256) + andexpression : andexpression . '&' equalityexpression (267) + + '&' shift 350 + ABSTRACT reduce 256 + BOOLEAN reduce 256 + CHAR reduce 256 + FINAL reduce 256 + INSTANCEOF reduce 256 + INT reduce 256 + PRIVATE reduce 256 + PROTECTED reduce 256 + PUBLIC reduce 256 + STATIC reduce 256 + VOID reduce 256 + IDENTIFIER reduce 256 + EQUAL reduce 256 + LESSEQUAL reduce 256 + GREATEREQUAL reduce 256 + NOTEQUAL reduce 256 + LOGICALOR reduce 256 + LOGICALAND reduce 256 + INCREMENT reduce 256 + DECREMENT reduce 256 + ',' reduce 256 + ';' reduce 256 + '.' reduce 256 + '*' reduce 256 + '<' reduce 256 + '>' reduce 256 + '}' reduce 256 + ')' reduce 256 + '+' reduce 256 + '-' reduce 256 + '|' reduce 256 + '^' reduce 256 + '/' reduce 256 + '%' reduce 256 + + +403: shift/reduce conflict (shift 351, reduce 247) on '^' +state 403 + inclusiveorexpression : inclusiveorexpression '|' exclusiveorexpression . (247) + exclusiveorexpression : exclusiveorexpression . '^' andexpression (256) + + '^' shift 351 + ABSTRACT reduce 247 + BOOLEAN reduce 247 + CHAR reduce 247 + FINAL reduce 247 + INSTANCEOF reduce 247 + INT reduce 247 + PRIVATE reduce 247 + PROTECTED reduce 247 + PUBLIC reduce 247 + STATIC reduce 247 + VOID reduce 247 + IDENTIFIER reduce 247 + EQUAL reduce 247 + LESSEQUAL reduce 247 + GREATEREQUAL reduce 247 + NOTEQUAL reduce 247 + LOGICALOR reduce 247 + LOGICALAND reduce 247 + INCREMENT reduce 247 + DECREMENT reduce 247 + ',' reduce 247 + ';' reduce 247 + '.' reduce 247 + '*' reduce 247 + '<' reduce 247 + '>' reduce 247 + '}' reduce 247 + ')' reduce 247 + '&' reduce 247 + '+' reduce 247 + '-' reduce 247 + '|' reduce 247 + '/' reduce 247 + '%' reduce 247 + + +404: shift/reduce conflict (shift 352, reduce 235) on '|' +state 404 + conditionalandexpression : conditionalandexpression LOGICALAND inclusiveorexpression . (235) + inclusiveorexpression : inclusiveorexpression . '|' exclusiveorexpression (247) + + '|' shift 352 + ABSTRACT reduce 235 + BOOLEAN reduce 235 + CHAR reduce 235 + FINAL reduce 235 + INSTANCEOF reduce 235 + INT reduce 235 + PRIVATE reduce 235 + PROTECTED reduce 235 + PUBLIC reduce 235 + STATIC reduce 235 + VOID reduce 235 + IDENTIFIER reduce 235 + EQUAL reduce 235 + LESSEQUAL reduce 235 + GREATEREQUAL reduce 235 + NOTEQUAL reduce 235 + LOGICALOR reduce 235 + LOGICALAND reduce 235 + INCREMENT reduce 235 + DECREMENT reduce 235 + ',' reduce 235 + ';' reduce 235 + '.' reduce 235 + '*' reduce 235 + '<' reduce 235 + '>' reduce 235 + '}' reduce 235 + ')' reduce 235 + '&' reduce 235 + '+' reduce 235 + '-' reduce 235 + '^' reduce 235 + '/' reduce 235 + '%' reduce 235 + + +405: shift/reduce conflict (shift 353, reduce 210) on LOGICALAND +state 405 + conditionalorexpression : conditionalorexpression LOGICALOR conditionalandexpression . (210) + conditionalandexpression : conditionalandexpression . LOGICALAND inclusiveorexpression (235) + + LOGICALAND shift 353 + ABSTRACT reduce 210 + BOOLEAN reduce 210 + CHAR reduce 210 + FINAL reduce 210 + INSTANCEOF reduce 210 + INT reduce 210 + PRIVATE reduce 210 + PROTECTED reduce 210 + PUBLIC reduce 210 + STATIC reduce 210 + VOID reduce 210 + IDENTIFIER reduce 210 + EQUAL reduce 210 + LESSEQUAL reduce 210 + GREATEREQUAL reduce 210 + NOTEQUAL reduce 210 + LOGICALOR reduce 210 + INCREMENT reduce 210 + DECREMENT reduce 210 + ',' reduce 210 + ';' reduce 210 + '.' reduce 210 + '*' reduce 210 + '<' reduce 210 + '>' reduce 210 + '}' reduce 210 + ')' reduce 210 + '&' reduce 210 + '+' reduce 210 + '-' reduce 210 + '|' reduce 210 + '^' reduce 210 + '/' reduce 210 + '%' reduce 210 + + +state 406 + fielddeclarator : type variabledeclarator '=' expression . (85) + + . reduce 85 + + +state 407 + methodheader : modifiers '<' boundedMethodParameters '>' VOID . methoddeclarator (124) + methodheader : modifiers '<' boundedMethodParameters '>' VOID . methoddeclarator throws (126) + + IDENTIFIER shift 140 + . error + + methoddeclarator goto 426 + + +state 408 + methodheader : modifiers '<' boundedMethodParameters '>' type . methoddeclarator (114) + methodheader : modifiers '<' boundedMethodParameters '>' type . methoddeclarator throws (118) + + IDENTIFIER shift 140 + . error + + methoddeclarator goto 427 + + +state 409 + explicitconstructorinvocation : THIS '(' ')' . ';' (143) + + ';' shift 428 + . error + + +state 410 + explicitconstructorinvocation : THIS '(' argumentlist . ')' ';' (144) + argumentlist : argumentlist . ',' expression (158) + + ',' shift 418 + ')' shift 429 + . error + + +state 411 + constructorbody : '{' explicitconstructorinvocation blockstatements '}' . (100) + + . reduce 100 + + +state 412 + constantdeclaration : modifiers type IDENTIFIER '=' expression . ';' (83) + + ';' shift 430 + . error + + +state 413 + forstatement : FOR '(' ';' ';' . expression ')' statement (187) + forstatement : FOR '(' ';' ';' . ')' statement (188) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + ')' shift 431 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 432 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 414 + forstatement : FOR '(' ';' expression . ';' expression ')' statement (184) + forstatement : FOR '(' ';' expression . ';' ')' statement (186) + + ';' shift 433 + . error + + +state 415 + forstatement : FOR '(' expression ';' . expression ';' expression ')' statement (181) + forstatement : FOR '(' expression ';' . expression ';' ')' statement (182) + forstatement : FOR '(' expression ';' . ';' expression ')' statement (183) + forstatement : FOR '(' expression ';' . ';' ')' statement (185) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 434 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 435 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 416 + ifthenstatement : IF '(' expression ')' . statement (178) + ifthenelsestatement : IF '(' expression ')' . statementnoshortif ELSE statement (179) + + FOR shift 184 + IF shift 436 + RETURN shift 186 + THIS shift 187 + WHILE shift 437 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 438 + statement goto 439 + statementnoshortif goto 440 + whilestatement goto 227 + forstatement goto 228 + whilestatementnoshortif goto 441 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + ifthenelsestatementnoshortif goto 442 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 417 + whilestatement : WHILE '(' expression ')' . statement (180) + + FOR shift 184 + IF shift 185 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + statement goto 443 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 418 + argumentlist : argumentlist ',' . expression (158) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 444 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 419 + methodinvocation : name '(' argumentlist ')' . (229) + + . reduce 229 + + +state 420 + methodinvocation : primary '.' IDENTIFIER '(' . ')' (230) + methodinvocation : primary '.' IDENTIFIER '(' . argumentlist ')' (231) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + ')' shift 445 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 375 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + argumentlist goto 446 + methodinvocation goto 275 + castexpression goto 276 + + +state 421 + methodheader : '<' boundedMethodParameters '>' VOID methoddeclarator throws . (125) + + . reduce 125 + + +state 422 + methodheader : '<' boundedMethodParameters '>' type methoddeclarator throws . (116) + + . reduce 116 + + +state 423 + classinstancecreationexpression : NEW classtype '(' ')' . (232) + + . reduce 232 + + +state 424 + argumentlist : argumentlist . ',' expression (158) + classinstancecreationexpression : NEW classtype '(' argumentlist . ')' (233) + + ',' shift 418 + ')' shift 447 + . error + + +state 425 + castexpression : '(' primitivetype ')' unaryexpression . (265) + + . reduce 265 + + +state 426 + methodheader : modifiers '<' boundedMethodParameters '>' VOID methoddeclarator . (124) + methodheader : modifiers '<' boundedMethodParameters '>' VOID methoddeclarator . throws (126) + + THROWS shift 147 + ';' reduce 124 + '{' reduce 124 + + throws goto 448 + + +state 427 + methodheader : modifiers '<' boundedMethodParameters '>' type methoddeclarator . (114) + methodheader : modifiers '<' boundedMethodParameters '>' type methoddeclarator . throws (118) + + THROWS shift 147 + ';' reduce 114 + '{' reduce 114 + + throws goto 449 + + +state 428 + explicitconstructorinvocation : THIS '(' ')' ';' . (143) + + . reduce 143 + + +state 429 + explicitconstructorinvocation : THIS '(' argumentlist ')' . ';' (144) + + ';' shift 450 + . error + + +state 430 + constantdeclaration : modifiers type IDENTIFIER '=' expression ';' . (83) + + . reduce 83 + + +state 431 + forstatement : FOR '(' ';' ';' ')' . statement (188) + + FOR shift 184 + IF shift 185 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 statement goto 451 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 -state 444 - forstatement : FOR '(' expression ';' ';' ')' statement . (181) +state 432 + forstatement : FOR '(' ';' ';' expression . ')' statement (187) - . reduce 181 - - -state 445 - forstatement : FOR '(' expression ';' ';' expression ')' . statement (179) - - FOR shift 154 - IF shift 155 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - statement goto 452 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 446 - forstatement : FOR '(' expression ';' expression ';' ')' . statement (178) - - FOR shift 154 - IF shift 155 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - statement goto 453 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 447 - forstatement : FOR '(' expression ';' expression ';' expression . ')' statement (177) - - ')' shift 454 + ')' shift 452 . error -state 448 - ifthenstatement : IF '(' expression . ')' statement (174) - ifthenelsestatement : IF '(' expression . ')' statementnoshortif ELSE statement (175) - ifthenelsestatementnoshortif : IF '(' expression . ')' statementnoshortif ELSE statementnoshortif (203) +state 433 + forstatement : FOR '(' ';' expression ';' . expression ')' statement (184) + forstatement : FOR '(' ';' expression ';' . ')' statement (186) + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + ')' shift 453 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 454 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 434 + forstatement : FOR '(' expression ';' ';' . expression ')' statement (183) + forstatement : FOR '(' expression ';' ';' . ')' statement (185) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 ')' shift 455 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 456 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 435 + forstatement : FOR '(' expression ';' expression . ';' expression ')' statement (181) + forstatement : FOR '(' expression ';' expression . ';' ')' statement (182) + + ';' shift 457 . error -state 449 - whilestatement : WHILE '(' expression . ')' statement (176) - whilestatementnoshortif : WHILE '(' expression . ')' statementnoshortif (204) +state 436 + ifthenstatement : IF . '(' expression ')' statement (178) + ifthenelsestatement : IF . '(' expression ')' statementnoshortif ELSE statement (179) + ifthenelsestatementnoshortif : IF . '(' expression ')' statementnoshortif ELSE statementnoshortif (207) - ')' shift 456 + '(' shift 458 . error -state 450 - ifthenelsestatement : IF '(' expression ')' statementnoshortif ELSE statement . (175) +state 437 + whilestatement : WHILE . '(' expression ')' statement (180) + whilestatementnoshortif : WHILE . '(' expression ')' statementnoshortif (208) - . reduce 175 + '(' shift 459 + . error -state 451 - forstatement : FOR '(' ';' expression ';' expression ')' statement . (180) +state 438 + statement : statementwithouttrailingsubstatement . (163) + statementnoshortif : statementwithouttrailingsubstatement . (195) - . reduce 180 + BOOLEAN reduce 163 + CHAR reduce 163 + ELSE reduce 195 + FOR reduce 163 + IF reduce 163 + INT reduce 163 + RETURN reduce 163 + THIS reduce 163 + WHILE reduce 163 + INTLITERAL reduce 163 + LONGLITERAL reduce 163 + DOUBLELITERAL reduce 163 + FLOATLITERAL reduce 163 + BOOLLITERAL reduce 163 + JNULL reduce 163 + CHARLITERAL reduce 163 + STRINGLITERAL reduce 163 + IDENTIFIER reduce 163 + INCREMENT reduce 163 + DECREMENT reduce 163 + ';' reduce 163 + '{' reduce 163 + '}' reduce 163 + '(' reduce 163 -state 452 - forstatement : FOR '(' expression ';' ';' expression ')' statement . (179) - - . reduce 179 - - -state 453 - forstatement : FOR '(' expression ';' expression ';' ')' statement . (178) +state 439 + ifthenstatement : IF '(' expression ')' statement . (178) . reduce 178 -state 454 - forstatement : FOR '(' expression ';' expression ';' expression ')' . statement (177) - - FOR shift 154 - IF shift 155 - RETURN shift 156 - THIS shift 157 - WHILE shift 158 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 195 - statement goto 457 - whilestatement goto 198 - forstatement goto 199 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 455 - ifthenstatement : IF '(' expression ')' . statement (174) - ifthenelsestatement : IF '(' expression ')' . statementnoshortif ELSE statement (175) - ifthenelsestatementnoshortif : IF '(' expression ')' . statementnoshortif ELSE statementnoshortif (203) - - FOR shift 154 - IF shift 415 - RETURN shift 156 - THIS shift 157 - WHILE shift 416 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 417 - statement goto 418 - statementnoshortif goto 458 - whilestatement goto 198 - forstatement goto 199 - whilestatementnoshortif goto 420 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - ifthenelsestatementnoshortif goto 421 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 456 - whilestatement : WHILE '(' expression ')' . statement (176) - whilestatementnoshortif : WHILE '(' expression ')' . statementnoshortif (204) - - FOR shift 154 - IF shift 415 - RETURN shift 156 - THIS shift 157 - WHILE shift 416 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 - . error - - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 417 - statement goto 422 - statementnoshortif goto 459 - whilestatement goto 198 - forstatement goto 199 - whilestatementnoshortif goto 420 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - ifthenelsestatementnoshortif goto 421 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 - - -state 457 - forstatement : FOR '(' expression ';' expression ';' expression ')' statement . (177) - - . reduce 177 - - -state 458 - ifthenelsestatement : IF '(' expression ')' statementnoshortif . ELSE statement (175) - ifthenelsestatementnoshortif : IF '(' expression ')' statementnoshortif . ELSE statementnoshortif (203) +state 440 + ifthenelsestatement : IF '(' expression ')' statementnoshortif . ELSE statement (179) ELSE shift 460 . error -state 459 - whilestatementnoshortif : WHILE '(' expression ')' statementnoshortif . (204) +state 441 + statementnoshortif : whilestatementnoshortif . (197) - . reduce 204 + . reduce 197 + + +state 442 + statementnoshortif : ifthenelsestatementnoshortif . (196) + + . reduce 196 + + +state 443 + whilestatement : WHILE '(' expression ')' statement . (180) + + . reduce 180 + + +state 444 + argumentlist : argumentlist ',' expression . (158) + + . reduce 158 + + +state 445 + methodinvocation : primary '.' IDENTIFIER '(' ')' . (230) + + . reduce 230 + + +state 446 + argumentlist : argumentlist . ',' expression (158) + methodinvocation : primary '.' IDENTIFIER '(' argumentlist . ')' (231) + + ',' shift 418 + ')' shift 461 + . error + + +state 447 + classinstancecreationexpression : NEW classtype '(' argumentlist ')' . (233) + + . reduce 233 + + +state 448 + methodheader : modifiers '<' boundedMethodParameters '>' VOID methoddeclarator throws . (126) + + . reduce 126 + + +state 449 + methodheader : modifiers '<' boundedMethodParameters '>' type methoddeclarator throws . (118) + + . reduce 118 + + +state 450 + explicitconstructorinvocation : THIS '(' argumentlist ')' ';' . (144) + + . reduce 144 + + +state 451 + forstatement : FOR '(' ';' ';' ')' statement . (188) + + . reduce 188 + + +state 452 + forstatement : FOR '(' ';' ';' expression ')' . statement (187) + + FOR shift 184 + IF shift 185 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + statement goto 462 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 453 + forstatement : FOR '(' ';' expression ';' ')' . statement (186) + + FOR shift 184 + IF shift 185 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + statement goto 463 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 454 + forstatement : FOR '(' ';' expression ';' expression . ')' statement (184) + + ')' shift 464 + . error + + +state 455 + forstatement : FOR '(' expression ';' ';' ')' . statement (185) + + FOR shift 184 + IF shift 185 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + statement goto 465 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 456 + forstatement : FOR '(' expression ';' ';' expression . ')' statement (183) + + ')' shift 466 + . error + + +state 457 + forstatement : FOR '(' expression ';' expression ';' . expression ')' statement (181) + forstatement : FOR '(' expression ';' expression ';' . ')' statement (182) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + ')' shift 467 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 468 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 458 + ifthenstatement : IF '(' . expression ')' statement (178) + ifthenelsestatement : IF '(' . expression ')' statementnoshortif ELSE statement (179) + ifthenelsestatementnoshortif : IF '(' . expression ')' statementnoshortif ELSE statementnoshortif (207) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 469 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 + + +state 459 + whilestatement : WHILE '(' . expression ')' statement (180) + whilestatementnoshortif : WHILE '(' . expression ')' statementnoshortif (208) + + NEW shift 248 + THIS shift 187 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + '(' shift 249 + '+' shift 250 + '-' shift 251 + '!' shift 252 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 253 + unaryexpressionnotplusminus goto 254 + unaryexpression goto 255 + multiplicativeexpression goto 256 + additiveexpression goto 257 + shiftexpression goto 258 + relationalexpression goto 259 + equalityexpression goto 260 + andexpression goto 261 + exclusiveorexpression goto 262 + inclusiveorexpression goto 263 + conditionalandexpression goto 264 + conditionalorexpression goto 265 + conditionalexpression goto 266 + assignmentexpression goto 267 + lambdaexpression goto 217 + expression goto 470 + preincrementexpression goto 269 + predecrementexpression goto 270 + postincrementexpression goto 271 + postdecrementexpression goto 272 + classinstancecreationexpression goto 273 + assignment goto 274 + lefthandside goto 234 + methodinvocation goto 275 + castexpression goto 276 state 460 - ifthenelsestatement : IF '(' expression ')' statementnoshortif ELSE . statement (175) - ifthenelsestatementnoshortif : IF '(' expression ')' statementnoshortif ELSE . statementnoshortif (203) + ifthenelsestatement : IF '(' expression ')' statementnoshortif ELSE . statement (179) - FOR shift 154 - IF shift 415 - RETURN shift 156 - THIS shift 157 - WHILE shift 416 - INTLITERAL shift 159 - LONGLITERAL shift 160 - DOUBLELITERAL shift 161 - FLOATLITERAL shift 162 - BOOLLITERAL shift 163 - JNULL shift 164 - CHARLITERAL shift 165 - STRINGLITERAL shift 166 - IDENTIFIER shift 42 - INCREMENT shift 168 - DECREMENT shift 169 - ';' shift 170 - '{' shift 105 - '(' shift 172 + FOR shift 184 + IF shift 185 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 . error - simplename goto 224 - qualifiedname goto 176 - name goto 177 - block goto 179 - lambdaexpressionparameter goto 183 - literal goto 184 - primarynonewarray goto 185 - primary goto 186 - postfixexpression goto 187 - lambdaexpression goto 188 - statementexpression goto 189 - preincrementexpression goto 190 - predecrementexpression goto 191 - postincrementexpression goto 192 - postdecrementexpression goto 193 - expressionstatement goto 194 - statementwithouttrailingsubstatement goto 417 - statement goto 450 - statementnoshortif goto 461 - whilestatement goto 198 - forstatement goto 199 - whilestatementnoshortif goto 420 - ifthenstatement goto 200 - ifthenelsestatement goto 201 - ifthenelsestatementnoshortif goto 421 - emptystatement goto 202 - returnstatement goto 203 - assignment goto 204 - lefthandside goto 205 - methodinvocation goto 206 + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + statement goto 471 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 state 461 - ifthenelsestatementnoshortif : IF '(' expression ')' statementnoshortif ELSE statementnoshortif . (203) + methodinvocation : primary '.' IDENTIFIER '(' argumentlist ')' . (231) - . reduce 203 + . reduce 231 + + +state 462 + forstatement : FOR '(' ';' ';' expression ')' statement . (187) + + . reduce 187 + + +state 463 + forstatement : FOR '(' ';' expression ';' ')' statement . (186) + + . reduce 186 + + +state 464 + forstatement : FOR '(' ';' expression ';' expression ')' . statement (184) + + FOR shift 184 + IF shift 185 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + statement goto 472 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 465 + forstatement : FOR '(' expression ';' ';' ')' statement . (185) + + . reduce 185 + + +state 466 + forstatement : FOR '(' expression ';' ';' expression ')' . statement (183) + + FOR shift 184 + IF shift 185 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + statement goto 473 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 467 + forstatement : FOR '(' expression ';' expression ';' ')' . statement (182) + + FOR shift 184 + IF shift 185 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + statement goto 474 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 468 + forstatement : FOR '(' expression ';' expression ';' expression . ')' statement (181) + + ')' shift 475 + . error + + +state 469 + ifthenstatement : IF '(' expression . ')' statement (178) + ifthenelsestatement : IF '(' expression . ')' statementnoshortif ELSE statement (179) + ifthenelsestatementnoshortif : IF '(' expression . ')' statementnoshortif ELSE statementnoshortif (207) + + ')' shift 476 + . error + + +state 470 + whilestatement : WHILE '(' expression . ')' statement (180) + whilestatementnoshortif : WHILE '(' expression . ')' statementnoshortif (208) + + ')' shift 477 + . error + + +state 471 + ifthenelsestatement : IF '(' expression ')' statementnoshortif ELSE statement . (179) + + . reduce 179 + + +state 472 + forstatement : FOR '(' ';' expression ';' expression ')' statement . (184) + + . reduce 184 + + +state 473 + forstatement : FOR '(' expression ';' ';' expression ')' statement . (183) + + . reduce 183 + + +state 474 + forstatement : FOR '(' expression ';' expression ';' ')' statement . (182) + + . reduce 182 + + +state 475 + forstatement : FOR '(' expression ';' expression ';' expression ')' . statement (181) + + FOR shift 184 + IF shift 185 + RETURN shift 186 + THIS shift 187 + WHILE shift 188 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 224 + statement goto 478 + whilestatement goto 227 + forstatement goto 228 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 476 + ifthenstatement : IF '(' expression ')' . statement (178) + ifthenelsestatement : IF '(' expression ')' . statementnoshortif ELSE statement (179) + ifthenelsestatementnoshortif : IF '(' expression ')' . statementnoshortif ELSE statementnoshortif (207) + + FOR shift 184 + IF shift 436 + RETURN shift 186 + THIS shift 187 + WHILE shift 437 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 438 + statement goto 439 + statementnoshortif goto 479 + whilestatement goto 227 + forstatement goto 228 + whilestatementnoshortif goto 441 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + ifthenelsestatementnoshortif goto 442 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 477 + whilestatement : WHILE '(' expression ')' . statement (180) + whilestatementnoshortif : WHILE '(' expression ')' . statementnoshortif (208) + + FOR shift 184 + IF shift 436 + RETURN shift 186 + THIS shift 187 + WHILE shift 437 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 438 + statement goto 443 + statementnoshortif goto 480 + whilestatement goto 227 + forstatement goto 228 + whilestatementnoshortif goto 441 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + ifthenelsestatementnoshortif goto 442 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 478 + forstatement : FOR '(' expression ';' expression ';' expression ')' statement . (181) + + . reduce 181 + + +state 479 + ifthenelsestatement : IF '(' expression ')' statementnoshortif . ELSE statement (179) + ifthenelsestatementnoshortif : IF '(' expression ')' statementnoshortif . ELSE statementnoshortif (207) + + ELSE shift 481 + . error + + +state 480 + whilestatementnoshortif : WHILE '(' expression ')' statementnoshortif . (208) + + . reduce 208 + + +state 481 + ifthenelsestatement : IF '(' expression ')' statementnoshortif ELSE . statement (179) + ifthenelsestatementnoshortif : IF '(' expression ')' statementnoshortif ELSE . statementnoshortif (207) + + FOR shift 184 + IF shift 436 + RETURN shift 186 + THIS shift 187 + WHILE shift 437 + INTLITERAL shift 189 + LONGLITERAL shift 190 + DOUBLELITERAL shift 191 + FLOATLITERAL shift 192 + BOOLLITERAL shift 193 + JNULL shift 194 + CHARLITERAL shift 195 + STRINGLITERAL shift 196 + IDENTIFIER shift 14 + INCREMENT shift 198 + DECREMENT shift 199 + ';' shift 200 + '{' shift 138 + '(' shift 202 + . error + + simplename goto 34 + qualifiedname goto 35 + name goto 206 + block goto 208 + lambdaexpressionparameter goto 212 + literal goto 213 + primarynonewarray goto 214 + primary goto 215 + postfixexpression goto 216 + lambdaexpression goto 217 + statementexpression goto 218 + preincrementexpression goto 219 + predecrementexpression goto 220 + postincrementexpression goto 221 + postdecrementexpression goto 222 + expressionstatement goto 223 + statementwithouttrailingsubstatement goto 438 + statement goto 471 + statementnoshortif goto 482 + whilestatement goto 227 + forstatement goto 228 + whilestatementnoshortif goto 441 + ifthenstatement goto 229 + ifthenelsestatement goto 230 + ifthenelsestatementnoshortif goto 442 + emptystatement goto 231 + returnstatement goto 232 + assignment goto 233 + lefthandside goto 234 + methodinvocation goto 235 + + +state 482 + ifthenelsestatementnoshortif : IF '(' expression ')' statementnoshortif ELSE statementnoshortif . (207) + + . reduce 207 Rules never reduced: - packagedeclaration : PACKAGE name ';' (2) - importdeclarations : importdeclaration (3) - importdeclarations : importdeclarations importdeclaration (4) - importdeclaration : IMPORT importqualifiedname ';' (5) - importqualifiedname : name '.' IDENTIFIER (13) - importqualifiedname : name '.' '*' (14) - paralist : IDENTIFIER (32) - paralist : IDENTIFIER '<' paralist '>' (33) - paralist : wildcardparameter (34) - paralist : paralist ',' IDENTIFIER (35) - paralist : paralist ',' IDENTIFIER '<' paralist '>' (36) - paralist : paralist ',' wildcardparameter (37) - wildcardparameter : '?' (38) - wildcardparameter : '?' EXTENDS referencetype (39) - wildcardparameter : '?' SUPER referencetype (40) - variableinitializer : expression (157) + paralist : IDENTIFIER (36) + paralist : IDENTIFIER '<' paralist '>' (37) + paralist : wildcardparameter (38) + paralist : paralist ',' IDENTIFIER (39) + paralist : paralist ',' IDENTIFIER '<' paralist '>' (40) + paralist : paralist ',' wildcardparameter (41) + wildcardparameter : '?' (42) + wildcardparameter : '?' EXTENDS referencetype (43) + wildcardparameter : '?' SUPER referencetype (44) + variableinitializer : expression (161) -State 43 contains 1 shift/reduce conflict. -State 53 contains 1 shift/reduce conflict. -State 84 contains 1 shift/reduce conflict. -State 177 contains 1 shift/reduce conflict. -State 186 contains 1 shift/reduce conflict. -State 225 contains 2 shift/reduce conflicts. -State 228 contains 3 shift/reduce conflicts. -State 229 contains 2 shift/reduce conflicts. -State 231 contains 5 shift/reduce conflicts. -State 232 contains 2 shift/reduce conflicts. -State 233 contains 1 shift/reduce conflict. -State 234 contains 1 shift/reduce conflict. -State 235 contains 1 shift/reduce conflict. -State 236 contains 1 shift/reduce conflict. -State 237 contains 1 shift/reduce conflict. -State 278 contains 1 shift/reduce conflict. -State 371 contains 3 shift/reduce conflicts. -State 372 contains 3 shift/reduce conflicts. -State 378 contains 5 shift/reduce conflicts. -State 379 contains 5 shift/reduce conflicts. -State 380 contains 2 shift/reduce conflicts. -State 381 contains 1 shift/reduce conflict. -State 382 contains 1 shift/reduce conflict. -State 383 contains 1 shift/reduce conflict. -State 384 contains 1 shift/reduce conflict. +State 18 contains 1 shift/reduce conflict. +State 88 contains 1 shift/reduce conflict. +State 117 contains 1 shift/reduce conflict. +State 206 contains 1 shift/reduce conflict. +State 215 contains 1 shift/reduce conflict. +State 253 contains 2 shift/reduce conflicts. +State 256 contains 3 shift/reduce conflicts. +State 257 contains 2 shift/reduce conflicts. +State 259 contains 5 shift/reduce conflicts. +State 260 contains 2 shift/reduce conflicts. +State 261 contains 1 shift/reduce conflict. +State 262 contains 1 shift/reduce conflict. +State 263 contains 1 shift/reduce conflict. +State 264 contains 1 shift/reduce conflict. +State 265 contains 1 shift/reduce conflict. +State 302 contains 1 shift/reduce conflict. +State 392 contains 3 shift/reduce conflicts. +State 393 contains 3 shift/reduce conflicts. +State 399 contains 5 shift/reduce conflicts. +State 400 contains 5 shift/reduce conflicts. +State 401 contains 2 shift/reduce conflicts. +State 402 contains 1 shift/reduce conflict. +State 403 contains 1 shift/reduce conflict. +State 404 contains 1 shift/reduce conflict. +State 405 contains 1 shift/reduce conflict. 97 terminals, 117 nonterminals -281 grammar rules, 462 states +285 grammar rules, 483 states