|
Lines 31-36
Link Here
|
| 31 |
import org.eclipse.jdt.internal.compiler.CompilationResult; |
31 |
import org.eclipse.jdt.internal.compiler.CompilationResult; |
| 32 |
import org.eclipse.jdt.internal.compiler.ast.*; |
32 |
import org.eclipse.jdt.internal.compiler.ast.*; |
| 33 |
import org.eclipse.jdt.internal.compiler.classfmt.ClassFileConstants; |
33 |
import org.eclipse.jdt.internal.compiler.classfmt.ClassFileConstants; |
|
|
34 |
import org.eclipse.jdt.internal.compiler.codegen.ConstantPool; |
| 34 |
import org.eclipse.jdt.internal.compiler.env.ICompilationUnit; |
35 |
import org.eclipse.jdt.internal.compiler.env.ICompilationUnit; |
| 35 |
import org.eclipse.jdt.internal.compiler.impl.CompilerOptions; |
36 |
import org.eclipse.jdt.internal.compiler.impl.CompilerOptions; |
| 36 |
import org.eclipse.jdt.internal.compiler.impl.ReferenceContext; |
37 |
import org.eclipse.jdt.internal.compiler.impl.ReferenceContext; |
|
Lines 71-76
Link Here
|
| 71 |
//expression stack |
72 |
//expression stack |
| 72 |
protected final static int ExpressionStackIncrement = 100; |
73 |
protected final static int ExpressionStackIncrement = 100; |
| 73 |
|
74 |
|
|
|
75 |
// annotation stack |
| 76 |
protected final static int TypeAnnotationStackIncrement = 100; |
| 77 |
|
| 74 |
protected final static int GenericsStackIncrement = 10; |
78 |
protected final static int GenericsStackIncrement = 10; |
| 75 |
|
79 |
|
| 76 |
private final static String FILEPREFIX = "parser"; //$NON-NLS-1$ |
80 |
private final static String FILEPREFIX = "parser"; //$NON-NLS-1$ |
|
Lines 788-794
Link Here
|
| 788 |
protected int[] expressionLengthStack; |
792 |
protected int[] expressionLengthStack; |
| 789 |
protected int expressionPtr; |
793 |
protected int expressionPtr; |
| 790 |
protected Expression[] expressionStack = new Expression[ExpressionStackIncrement]; |
794 |
protected Expression[] expressionStack = new Expression[ExpressionStackIncrement]; |
|
|
795 |
protected int unattachedAnnotationPtr; // used for figuring out whether some set of annotations are annotating a dimension or not. |
| 791 |
public int firstToken ; // handle for multiple parsing goals |
796 |
public int firstToken ; // handle for multiple parsing goals |
|
|
797 |
|
| 798 |
/* jsr308 -- Type annotation management, we now maintain type annotations in a separate stack |
| 799 |
as otherwise they get interspersed with other expressions and some of the code is not prepared |
| 800 |
to handle such interleaving and will look ugly if changed. |
| 801 |
|
| 802 |
See consumeArrayCreationExpressionWithoutInitializer for example. |
| 803 |
|
| 804 |
See that annotations gets pushed into expression stack the moment an annotation is discovered and |
| 805 |
get moved to the new type annotations stack only later when the annotation is recognized to be a |
| 806 |
type annotation. Where ambiguities exist (i.e 1.7 annotation occurs in a place sanctioned for an |
| 807 |
1.5 type annotation, the annotation continues to stay in the expression stack, but in these case |
| 808 |
interleaving is not an issue. |
| 809 |
*/ |
| 810 |
protected int typeAnnotationPtr; |
| 811 |
protected int typeAnnotationLengthPtr; |
| 812 |
protected Annotation [] typeAnnotationStack = new Annotation[TypeAnnotationStackIncrement]; |
| 813 |
protected int [] typeAnnotationLengthStack; |
| 792 |
// generics management |
814 |
// generics management |
| 793 |
protected int genericsIdentifiersLengthPtr; |
815 |
protected int genericsIdentifiersLengthPtr; |
| 794 |
protected int[] genericsIdentifiersLengthStack = new int[GenericsStackIncrement]; |
816 |
protected int[] genericsIdentifiersLengthStack = new int[GenericsStackIncrement]; |
|
Lines 884-889
Link Here
|
| 884 |
this.parsingJava8Plus = this.options.sourceLevel >= ClassFileConstants.JDK1_8; |
906 |
this.parsingJava8Plus = this.options.sourceLevel >= ClassFileConstants.JDK1_8; |
| 885 |
this.astLengthStack = new int[50]; |
907 |
this.astLengthStack = new int[50]; |
| 886 |
this.expressionLengthStack = new int[30]; |
908 |
this.expressionLengthStack = new int[30]; |
|
|
909 |
this.typeAnnotationLengthStack = new int[30]; |
| 887 |
this.intStack = new int[50]; |
910 |
this.intStack = new int[50]; |
| 888 |
this.identifierStack = new char[30][]; |
911 |
this.identifierStack = new char[30][]; |
| 889 |
this.identifierLengthStack = new int[30]; |
912 |
this.identifierLengthStack = new int[30]; |
|
Lines 1232-1237
Link Here
|
| 1232 |
} |
1255 |
} |
| 1233 |
} |
1256 |
} |
| 1234 |
protected ParameterizedQualifiedTypeReference computeQualifiedGenericsFromRightSide(TypeReference rightSide, int dim) { |
1257 |
protected ParameterizedQualifiedTypeReference computeQualifiedGenericsFromRightSide(TypeReference rightSide, int dim) { |
|
|
1258 |
Annotation [][] annotationsOnDimensions = dim == 0 ? null : getAnnotationsOnDimensions(dim); |
| 1235 |
int nameSize = this.identifierLengthStack[this.identifierLengthPtr]; |
1259 |
int nameSize = this.identifierLengthStack[this.identifierLengthPtr]; |
| 1236 |
int tokensSize = nameSize; |
1260 |
int tokensSize = nameSize; |
| 1237 |
if (rightSide instanceof ParameterizedSingleTypeReference) { |
1261 |
if (rightSide instanceof ParameterizedSingleTypeReference) { |
|
Lines 1287-1293
Link Here
|
| 1287 |
typeArguments[nameSize - 1] = currentTypeArguments; |
1311 |
typeArguments[nameSize - 1] = currentTypeArguments; |
| 1288 |
} |
1312 |
} |
| 1289 |
this.identifierLengthPtr--; |
1313 |
this.identifierLengthPtr--; |
| 1290 |
return new ParameterizedQualifiedTypeReference(tokens, typeArguments, dim, positions); |
1314 |
ParameterizedQualifiedTypeReference typeRef = new ParameterizedQualifiedTypeReference(tokens, typeArguments, dim, annotationsOnDimensions, positions); |
|
|
1315 |
int length; |
| 1316 |
if (this.typeAnnotationLengthPtr >= 0 && (length = this.typeAnnotationLengthStack[this.typeAnnotationLengthPtr--]) != 0) { |
| 1317 |
System.arraycopy( |
| 1318 |
this.typeAnnotationStack, |
| 1319 |
(this.typeAnnotationPtr -= length) + 1, |
| 1320 |
typeRef.annotations = new Annotation[length], |
| 1321 |
0, |
| 1322 |
length); |
| 1323 |
typeRef.sourceStart = typeRef.annotations[0].sourceStart; |
| 1324 |
typeRef.bits |= ASTNode.HasTypeAnnotations; |
| 1325 |
} |
| 1326 |
return typeRef; |
| 1291 |
} |
1327 |
} |
| 1292 |
protected void concatExpressionLists() { |
1328 |
protected void concatExpressionLists() { |
| 1293 |
this.expressionLengthStack[--this.expressionLengthPtr]++; |
1329 |
this.expressionLengthStack[--this.expressionLengthPtr]++; |
|
Lines 1630-1637
Link Here
|
| 1630 |
this.expressionLengthPtr -- ; |
1666 |
this.expressionLengthPtr -- ; |
| 1631 |
arrayAllocation.initializer = (ArrayInitializer) this.expressionStack[this.expressionPtr--]; |
1667 |
arrayAllocation.initializer = (ArrayInitializer) this.expressionStack[this.expressionPtr--]; |
| 1632 |
|
1668 |
|
| 1633 |
arrayAllocation.type = getTypeReference(0); |
|
|
| 1634 |
arrayAllocation.type.bits |= ASTNode.IgnoreRawTypeCheck; // no need to worry about raw type usage |
| 1635 |
length = (this.expressionLengthStack[this.expressionLengthPtr--]); |
1669 |
length = (this.expressionLengthStack[this.expressionLengthPtr--]); |
| 1636 |
this.expressionPtr -= length ; |
1670 |
this.expressionPtr -= length ; |
| 1637 |
System.arraycopy( |
1671 |
System.arraycopy( |
|
Lines 1640-1645
Link Here
|
| 1640 |
arrayAllocation.dimensions = new Expression[length], |
1674 |
arrayAllocation.dimensions = new Expression[length], |
| 1641 |
0, |
1675 |
0, |
| 1642 |
length); |
1676 |
length); |
|
|
1677 |
Annotation[][] annotationsOnDimensions = getAnnotationsOnDimensions(length); |
| 1678 |
arrayAllocation.annotationsOnDimensions = annotationsOnDimensions; |
| 1679 |
if (annotationsOnDimensions != null) { |
| 1680 |
arrayAllocation.bits |= ASTNode.HasTypeAnnotations; |
| 1681 |
} |
| 1682 |
arrayAllocation.type = getTypeReference(0); |
| 1683 |
arrayAllocation.type.bits |= ASTNode.IgnoreRawTypeCheck; // no need to worry about raw type usage |
| 1684 |
|
| 1643 |
arrayAllocation.sourceStart = this.intStack[this.intPtr--]; |
1685 |
arrayAllocation.sourceStart = this.intStack[this.intPtr--]; |
| 1644 |
if (arrayAllocation.initializer == null) { |
1686 |
if (arrayAllocation.initializer == null) { |
| 1645 |
arrayAllocation.sourceEnd = this.endStatementPosition; |
1687 |
arrayAllocation.sourceEnd = this.endStatementPosition; |
|
Lines 1654-1661
Link Here
|
| 1654 |
|
1696 |
|
| 1655 |
int length; |
1697 |
int length; |
| 1656 |
ArrayAllocationExpression arrayAllocation = new ArrayAllocationExpression(); |
1698 |
ArrayAllocationExpression arrayAllocation = new ArrayAllocationExpression(); |
| 1657 |
arrayAllocation.type = getTypeReference(0); |
|
|
| 1658 |
arrayAllocation.type.bits |= ASTNode.IgnoreRawTypeCheck; // no need to worry about raw type usage |
| 1659 |
length = (this.expressionLengthStack[this.expressionLengthPtr--]); |
1699 |
length = (this.expressionLengthStack[this.expressionLengthPtr--]); |
| 1660 |
this.expressionPtr -= length ; |
1700 |
this.expressionPtr -= length ; |
| 1661 |
System.arraycopy( |
1701 |
System.arraycopy( |
|
Lines 1664-1669
Link Here
|
| 1664 |
arrayAllocation.dimensions = new Expression[length], |
1704 |
arrayAllocation.dimensions = new Expression[length], |
| 1665 |
0, |
1705 |
0, |
| 1666 |
length); |
1706 |
length); |
|
|
1707 |
Annotation[][] annotationsOnDimensions = getAnnotationsOnDimensions(length); |
| 1708 |
arrayAllocation.annotationsOnDimensions = annotationsOnDimensions; |
| 1709 |
if (annotationsOnDimensions != null) { |
| 1710 |
arrayAllocation.bits |= ASTNode.HasTypeAnnotations; |
| 1711 |
} |
| 1712 |
arrayAllocation.type = getTypeReference(0); |
| 1713 |
arrayAllocation.type.bits |= ASTNode.IgnoreRawTypeCheck; // no need to worry about raw type usage |
| 1667 |
arrayAllocation.sourceStart = this.intStack[this.intPtr--]; |
1714 |
arrayAllocation.sourceStart = this.intStack[this.intPtr--]; |
| 1668 |
if (arrayAllocation.initializer == null) { |
1715 |
if (arrayAllocation.initializer == null) { |
| 1669 |
arrayAllocation.sourceEnd = this.endStatementPosition; |
1716 |
arrayAllocation.sourceEnd = this.endStatementPosition; |
|
Lines 2059-2065
Link Here
|
| 2059 |
pushOnAstStack(caseStatement); |
2106 |
pushOnAstStack(caseStatement); |
| 2060 |
} |
2107 |
} |
| 2061 |
protected void consumeCastExpressionLL1() { |
2108 |
protected void consumeCastExpressionLL1() { |
| 2062 |
//CastExpression ::= '(' Expression ')' InsideCastExpressionLL1 UnaryExpressionNotPlusMinus |
2109 |
//CastExpression ::= '(' Name ')' InsideCastExpressionLL1 UnaryExpressionNotPlusMinus |
| 2063 |
// Expression is used in order to make the grammar LL1 |
2110 |
// Expression is used in order to make the grammar LL1 |
| 2064 |
|
2111 |
|
| 2065 |
//optimize push/pop |
2112 |
//optimize push/pop |
|
Lines 2074-2079
Link Here
|
| 2074 |
this.expressionLengthPtr -- ; |
2121 |
this.expressionLengthPtr -- ; |
| 2075 |
updateSourcePosition(cast); |
2122 |
updateSourcePosition(cast); |
| 2076 |
cast.sourceEnd=exp.sourceEnd; |
2123 |
cast.sourceEnd=exp.sourceEnd; |
|
|
2124 |
} |
| 2125 |
protected void consumeCastExpressionLL1WithTypeAnnotations() { |
| 2126 |
// CastExpression ::= '(' Modifiers Name ')' InsideCastExpressionLL1 UnaryExpressionNotPlusMinus |
| 2127 |
// Expression is used in order to make the grammar LL1 |
| 2128 |
|
| 2129 |
//optimize push/pop |
| 2130 |
|
| 2131 |
// pop the expression |
| 2132 |
Expression expression = this.expressionStack[this.expressionPtr--]; |
| 2133 |
this.expressionLengthPtr--; |
| 2134 |
// pop the type reference |
| 2135 |
TypeReference typeReference = (TypeReference) this.expressionStack[this.expressionPtr--]; |
| 2136 |
this.expressionLengthPtr--; |
| 2137 |
|
| 2138 |
int length; |
| 2139 |
if ((length = this.expressionLengthStack[this.expressionLengthPtr--]) != 0) { |
| 2140 |
System.arraycopy( |
| 2141 |
this.expressionStack, |
| 2142 |
(this.expressionPtr -= length) + 1, |
| 2143 |
typeReference.annotations = new Annotation[length], |
| 2144 |
0, |
| 2145 |
length); |
| 2146 |
int typeReferenceSourceStart = typeReference.annotations[0].sourceStart; |
| 2147 |
if (this.modifiersSourceStart < typeReferenceSourceStart) { |
| 2148 |
typeReferenceSourceStart = this.modifiersSourceStart; |
| 2149 |
} |
| 2150 |
typeReference.sourceStart = typeReferenceSourceStart; |
| 2151 |
typeReference.bits |= ASTNode.HasTypeAnnotations; |
| 2152 |
} |
| 2153 |
Expression cast; |
| 2154 |
pushOnExpressionStack(cast = new CastExpression(expression, typeReference)); |
| 2155 |
// pop the two positions for left and right parenthesis |
| 2156 |
updateSourcePosition(cast); |
| 2157 |
cast.sourceEnd = expression.sourceEnd; |
| 2158 |
if (this.modifiers != ClassFileConstants.AccDefault) { |
| 2159 |
problemReporter().invalidLocationForModifiers(typeReference); |
| 2160 |
} |
| 2161 |
resetModifiers(); |
| 2077 |
} |
2162 |
} |
| 2078 |
protected void consumeCastExpressionWithGenericsArray() { |
2163 |
protected void consumeCastExpressionWithGenericsArray() { |
| 2079 |
// CastExpression ::= PushLPAREN Name TypeArguments Dims PushRPAREN InsideCastExpression UnaryExpressionNotPlusMinus |
2164 |
// CastExpression ::= PushLPAREN Name TypeArguments Dims PushRPAREN InsideCastExpression UnaryExpressionNotPlusMinus |
|
Lines 2092-2097
Link Here
|
| 2092 |
castType.sourceStart = (cast.sourceStart = this.intStack[this.intPtr--]) + 1; |
2177 |
castType.sourceStart = (cast.sourceStart = this.intStack[this.intPtr--]) + 1; |
| 2093 |
cast.sourceEnd = exp.sourceEnd; |
2178 |
cast.sourceEnd = exp.sourceEnd; |
| 2094 |
} |
2179 |
} |
|
|
2180 |
protected void consumeCastExpressionWithGenericsArrayWithTypeAnnotations() { |
| 2181 |
// CastExpression ::= PushLPAREN Modifiers Name OnlyTypeArgumentsForCastExpression Dimsopt PushRPARENForAnnotatedTypeCast InsideCastExpression UnaryExpressionNotPlusMinus |
| 2182 |
int end = this.intStack[this.intPtr--]; |
| 2183 |
int dim = this.intStack[this.intPtr--]; |
| 2184 |
|
| 2185 |
pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]); |
| 2186 |
TypeReference typeReference = getTypeReference(dim); |
| 2187 |
|
| 2188 |
// pop expression |
| 2189 |
Expression expression = this.expressionStack[this.expressionPtr--]; |
| 2190 |
this.expressionLengthPtr--; |
| 2191 |
|
| 2192 |
int length; |
| 2193 |
if ((length = this.expressionLengthStack[this.expressionLengthPtr--]) != 0) { |
| 2194 |
System.arraycopy( |
| 2195 |
this.expressionStack, |
| 2196 |
(this.expressionPtr -= length) + 1, |
| 2197 |
typeReference.annotations = new Annotation[length], |
| 2198 |
0, |
| 2199 |
length); |
| 2200 |
int typeReferenceSourceStart = typeReference.annotations[0].sourceStart; |
| 2201 |
if (this.modifiersSourceStart < typeReferenceSourceStart) { |
| 2202 |
typeReferenceSourceStart = this.modifiersSourceStart; |
| 2203 |
} |
| 2204 |
typeReference.bits |= ASTNode.HasTypeAnnotations; |
| 2205 |
typeReference.sourceStart = typeReferenceSourceStart; |
| 2206 |
} |
| 2207 |
Expression cast; |
| 2208 |
pushOnExpressionStack(cast = new CastExpression(expression, typeReference)); |
| 2209 |
this.intPtr--; |
| 2210 |
typeReference.sourceEnd = end - 1; |
| 2211 |
typeReference.sourceStart = (cast.sourceStart = this.intStack[this.intPtr--]) + 1; |
| 2212 |
cast.sourceEnd = expression.sourceEnd; |
| 2213 |
if (this.modifiers != ClassFileConstants.AccDefault) { |
| 2214 |
problemReporter().invalidLocationForModifiers(typeReference); |
| 2215 |
} |
| 2216 |
resetModifiers(); |
| 2217 |
} |
| 2095 |
protected void consumeCastExpressionWithNameArray() { |
2218 |
protected void consumeCastExpressionWithNameArray() { |
| 2096 |
// CastExpression ::= PushLPAREN Name Dims PushRPAREN InsideCastExpression UnaryExpressionNotPlusMinus |
2219 |
// CastExpression ::= PushLPAREN Name Dims PushRPAREN InsideCastExpression UnaryExpressionNotPlusMinus |
| 2097 |
|
2220 |
|
|
Lines 2109-2114
Link Here
|
| 2109 |
castType.sourceStart = (cast.sourceStart = this.intStack[this.intPtr--]) + 1; |
2232 |
castType.sourceStart = (cast.sourceStart = this.intStack[this.intPtr--]) + 1; |
| 2110 |
cast.sourceEnd = exp.sourceEnd; |
2233 |
cast.sourceEnd = exp.sourceEnd; |
| 2111 |
} |
2234 |
} |
|
|
2235 |
protected void consumeCastExpressionWithNameArrayWithTypeAnnotations() { |
| 2236 |
// CastExpression ::= PushLPAREN Modifiers Name Dims PushRPARENForAnnotatedTypeCast InsideCastExpression UnaryExpressionNotPlusMinus |
| 2237 |
|
| 2238 |
int end = this.intStack[this.intPtr--]; |
| 2239 |
|
| 2240 |
// handle type arguments |
| 2241 |
pushOnGenericsLengthStack(0); |
| 2242 |
pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]); |
| 2243 |
|
| 2244 |
// pop expression |
| 2245 |
Expression expression = this.expressionStack[this.expressionPtr--]; |
| 2246 |
this.expressionLengthPtr--; |
| 2247 |
TypeReference typeReference = getTypeReference(this.intStack[this.intPtr--]); |
| 2248 |
|
| 2249 |
int length; |
| 2250 |
if ((length = this.expressionLengthStack[this.expressionLengthPtr--]) != 0) { |
| 2251 |
System.arraycopy( |
| 2252 |
this.expressionStack, |
| 2253 |
(this.expressionPtr -= length) + 1, |
| 2254 |
typeReference.annotations = new Annotation[length], |
| 2255 |
0, |
| 2256 |
length); |
| 2257 |
int typeReferenceSourceStart = typeReference.annotations[0].sourceStart; |
| 2258 |
if (this.modifiersSourceStart < typeReferenceSourceStart) { |
| 2259 |
typeReferenceSourceStart = this.modifiersSourceStart; |
| 2260 |
} |
| 2261 |
typeReference.bits |= ASTNode.HasTypeAnnotations; |
| 2262 |
typeReference.sourceStart = typeReferenceSourceStart; |
| 2263 |
} |
| 2264 |
Expression cast; |
| 2265 |
pushOnExpressionStack(cast = new CastExpression(expression, typeReference)); |
| 2266 |
typeReference.sourceEnd = end - 1; |
| 2267 |
typeReference.sourceStart = (cast.sourceStart = this.intStack[this.intPtr--]) + 1; |
| 2268 |
cast.sourceEnd = expression.sourceEnd; |
| 2269 |
if (this.modifiers != ClassFileConstants.AccDefault) { |
| 2270 |
problemReporter().invalidLocationForModifiers(typeReference); |
| 2271 |
} |
| 2272 |
resetModifiers(); |
| 2273 |
} |
| 2112 |
protected void consumeCastExpressionWithPrimitiveType() { |
2274 |
protected void consumeCastExpressionWithPrimitiveType() { |
| 2113 |
// CastExpression ::= PushLPAREN PrimitiveType Dimsopt PushRPAREN InsideCastExpression UnaryExpression |
2275 |
// CastExpression ::= PushLPAREN PrimitiveType Dimsopt PushRPAREN InsideCastExpression UnaryExpression |
| 2114 |
|
2276 |
|
|
Lines 2125-2130
Link Here
|
| 2125 |
castType.sourceStart = (cast.sourceStart = this.intStack[this.intPtr--]) + 1; |
2287 |
castType.sourceStart = (cast.sourceStart = this.intStack[this.intPtr--]) + 1; |
| 2126 |
cast.sourceEnd = exp.sourceEnd; |
2288 |
cast.sourceEnd = exp.sourceEnd; |
| 2127 |
} |
2289 |
} |
|
|
2290 |
protected void consumeCastExpressionWithPrimitiveTypeWithTypeAnnotations() { |
| 2291 |
// CastExpression ::= PushLPAREN Modifiers PrimitiveType Dimsopt PushRPARENForAnnotatedTypeCast InsideCastExpression UnaryExpression |
| 2292 |
|
| 2293 |
//this.intStack : posOfLeftParen dim posOfRightParen |
| 2294 |
int end = this.intStack[this.intPtr--]; |
| 2295 |
|
| 2296 |
// pop expression |
| 2297 |
Expression expression = this.expressionStack[this.expressionPtr--]; |
| 2298 |
this.expressionLengthPtr--; |
| 2299 |
|
| 2300 |
TypeReference typeReference = getTypeReference(this.intStack[this.intPtr--]); |
| 2301 |
int length; |
| 2302 |
if ((length = this.expressionLengthStack[this.expressionLengthPtr--]) != 0) { |
| 2303 |
System.arraycopy( |
| 2304 |
this.expressionStack, |
| 2305 |
(this.expressionPtr -= length) + 1, |
| 2306 |
typeReference.annotations = new Annotation[length], |
| 2307 |
0, |
| 2308 |
length); |
| 2309 |
int typeReferenceSourceStart = typeReference.annotations[0].sourceStart; |
| 2310 |
if (this.modifiersSourceStart < typeReferenceSourceStart) { |
| 2311 |
typeReferenceSourceStart = this.modifiersSourceStart; |
| 2312 |
} |
| 2313 |
typeReference.bits |= ASTNode.HasTypeAnnotations; |
| 2314 |
typeReference.sourceStart = typeReferenceSourceStart; |
| 2315 |
} |
| 2316 |
|
| 2317 |
Expression cast; |
| 2318 |
pushOnExpressionStack(cast = new CastExpression(expression, typeReference)); |
| 2319 |
|
| 2320 |
typeReference.sourceEnd = end - 1; |
| 2321 |
typeReference.sourceStart = (cast.sourceStart = this.intStack[this.intPtr--]) + 1; |
| 2322 |
cast.sourceEnd = expression.sourceEnd; |
| 2323 |
if (this.modifiers != ClassFileConstants.AccDefault) { |
| 2324 |
problemReporter().invalidLocationForModifiers(typeReference); |
| 2325 |
} |
| 2326 |
resetModifiers(); |
| 2327 |
} |
| 2128 |
protected void consumeCastExpressionWithQualifiedGenericsArray() { |
2328 |
protected void consumeCastExpressionWithQualifiedGenericsArray() { |
| 2129 |
// CastExpression ::= PushLPAREN Name OnlyTypeArguments '.' ClassOrInterfaceType Dims PushRPAREN InsideCastExpression UnaryExpressionNotPlusMinus |
2329 |
// CastExpression ::= PushLPAREN Name OnlyTypeArguments '.' ClassOrInterfaceType Dims PushRPAREN InsideCastExpression UnaryExpressionNotPlusMinus |
| 2130 |
Expression exp; |
2330 |
Expression exp; |
|
Lines 2133-2139
Link Here
|
| 2133 |
int end = this.intStack[this.intPtr--]; |
2333 |
int end = this.intStack[this.intPtr--]; |
| 2134 |
|
2334 |
|
| 2135 |
int dim = this.intStack[this.intPtr--]; |
2335 |
int dim = this.intStack[this.intPtr--]; |
| 2136 |
TypeReference rightSide = getTypeReference(0); |
2336 |
TypeReference rightSide = getUnannotatedTypeReference(0); // by design the type after . is not annotated. |
| 2137 |
|
2337 |
|
| 2138 |
ParameterizedQualifiedTypeReference qualifiedParameterizedTypeReference = computeQualifiedGenericsFromRightSide(rightSide, dim); |
2338 |
ParameterizedQualifiedTypeReference qualifiedParameterizedTypeReference = computeQualifiedGenericsFromRightSide(rightSide, dim); |
| 2139 |
this.intPtr--; |
2339 |
this.intPtr--; |
|
Lines 2141-2146
Link Here
|
| 2141 |
castType.sourceEnd = end - 1; |
2341 |
castType.sourceEnd = end - 1; |
| 2142 |
castType.sourceStart = (cast.sourceStart = this.intStack[this.intPtr--]) + 1; |
2342 |
castType.sourceStart = (cast.sourceStart = this.intStack[this.intPtr--]) + 1; |
| 2143 |
cast.sourceEnd = exp.sourceEnd; |
2343 |
cast.sourceEnd = exp.sourceEnd; |
|
|
2344 |
} |
| 2345 |
protected void consumeCastExpressionWithQualifiedGenericsArrayWithTypeAnnotations() { |
| 2346 |
// CastExpression ::= PushLPAREN Name OnlyTypeArguments '.' ClassOrInterfaceType Dims PushRPAREN InsideCastExpression UnaryExpressionNotPlusMinus |
| 2347 |
int end = this.intStack[this.intPtr--]; |
| 2348 |
|
| 2349 |
int dim = this.intStack[this.intPtr--]; |
| 2350 |
// pop expression |
| 2351 |
Expression expression = this.expressionStack[this.expressionPtr--]; |
| 2352 |
this.expressionLengthPtr--; |
| 2353 |
|
| 2354 |
TypeReference rightSide = getUnannotatedTypeReference(0); // by design the type after . is not annotated. |
| 2355 |
|
| 2356 |
ParameterizedQualifiedTypeReference typeReference = computeQualifiedGenericsFromRightSide(rightSide, dim); |
| 2357 |
this.intPtr--; |
| 2358 |
int length; |
| 2359 |
if ((length = this.expressionLengthStack[this.expressionLengthPtr--]) != 0) { |
| 2360 |
System.arraycopy( |
| 2361 |
this.expressionStack, |
| 2362 |
(this.expressionPtr -= length) + 1, |
| 2363 |
typeReference.annotations = new Annotation[length], |
| 2364 |
0, |
| 2365 |
length); |
| 2366 |
int typeReferenceSourceStart = typeReference.annotations[0].sourceStart; |
| 2367 |
if (this.modifiersSourceStart < typeReferenceSourceStart) { |
| 2368 |
typeReferenceSourceStart = this.modifiersSourceStart; |
| 2369 |
} |
| 2370 |
typeReference.bits |= ASTNode.HasTypeAnnotations; |
| 2371 |
typeReference.sourceStart = typeReferenceSourceStart; |
| 2372 |
} |
| 2373 |
Expression cast; |
| 2374 |
pushOnExpressionStack(cast = new CastExpression(expression, typeReference)); |
| 2375 |
typeReference.sourceEnd = end - 1; |
| 2376 |
typeReference.sourceStart = (cast.sourceStart = this.intStack[this.intPtr--]) + 1; |
| 2377 |
cast.sourceEnd = expression.sourceEnd; |
| 2378 |
if (this.modifiers != ClassFileConstants.AccDefault) { |
| 2379 |
problemReporter().invalidLocationForModifiers(typeReference); |
| 2380 |
} |
| 2381 |
resetModifiers(); |
| 2144 |
} |
2382 |
} |
| 2145 |
protected void consumeCatches() { |
2383 |
protected void consumeCatches() { |
| 2146 |
// Catches ::= Catches CatchClause |
2384 |
// Catches ::= Catches CatchClause |
|
Lines 2334-2339
Link Here
|
| 2334 |
TypeReference superClass = getTypeReference(0); |
2572 |
TypeReference superClass = getTypeReference(0); |
| 2335 |
// There is a class declaration on the top of stack |
2573 |
// There is a class declaration on the top of stack |
| 2336 |
TypeDeclaration typeDecl = (TypeDeclaration) this.astStack[this.astPtr]; |
2574 |
TypeDeclaration typeDecl = (TypeDeclaration) this.astStack[this.astPtr]; |
|
|
2575 |
typeDecl.bits |= (superClass.bits & ASTNode.HasTypeAnnotations); |
| 2337 |
typeDecl.superclass = superClass; |
2576 |
typeDecl.superclass = superClass; |
| 2338 |
superClass.bits |= ASTNode.IsSuperType; |
2577 |
superClass.bits |= ASTNode.IsSuperType; |
| 2339 |
typeDecl.bodyStart = typeDecl.superclass.sourceEnd + 1; |
2578 |
typeDecl.bodyStart = typeDecl.superclass.sourceEnd + 1; |
|
Lines 2355-2362
Link Here
|
| 2355 |
typeDecl.superInterfaces = new TypeReference[length], |
2594 |
typeDecl.superInterfaces = new TypeReference[length], |
| 2356 |
0, |
2595 |
0, |
| 2357 |
length); |
2596 |
length); |
| 2358 |
for (int i = 0, max = typeDecl.superInterfaces.length; i < max; i++) { |
2597 |
TypeReference[] superinterfaces = typeDecl.superInterfaces; |
| 2359 |
typeDecl.superInterfaces[i].bits |= ASTNode.IsSuperType; |
2598 |
for (int i = 0, max = superinterfaces.length; i < max; i++) { |
|
|
2599 |
TypeReference typeReference = superinterfaces[i]; |
| 2600 |
typeDecl.bits |= (typeReference.bits & ASTNode.HasTypeAnnotations); |
| 2601 |
typeReference.bits |= ASTNode.IsSuperType; |
| 2360 |
} |
2602 |
} |
| 2361 |
typeDecl.bodyStart = typeDecl.superInterfaces[length-1].sourceEnd + 1; |
2603 |
typeDecl.bodyStart = typeDecl.superInterfaces[length-1].sourceEnd + 1; |
| 2362 |
this.listLength = 0; // reset after having read super-interfaces |
2604 |
this.listLength = 0; // reset after having read super-interfaces |
|
Lines 2690-2698
Link Here
|
| 2690 |
} |
2932 |
} |
| 2691 |
} |
2933 |
} |
| 2692 |
|
2934 |
|
| 2693 |
if (!this.diet || insideFieldInitializer){ |
2935 |
if (!this.options.ignoreMethodBodies) { |
| 2694 |
// add it only in non-diet mode, if diet_bodies, then constructor call will be added elsewhere. |
2936 |
if (!this.diet || insideFieldInitializer){ |
| 2695 |
constructorCall = SuperReference.implicitSuperConstructorCall(); |
2937 |
// add it only in non-diet mode, if diet_bodies, then constructor call will be added elsewhere. |
|
|
2938 |
constructorCall = SuperReference.implicitSuperConstructorCall(); |
| 2939 |
} |
| 2696 |
} |
2940 |
} |
| 2697 |
} |
2941 |
} |
| 2698 |
|
2942 |
|
|
Lines 2888-2893
Link Here
|
| 2888 |
} |
3132 |
} |
| 2889 |
protected void consumeDimWithOrWithOutExpr() { |
3133 |
protected void consumeDimWithOrWithOutExpr() { |
| 2890 |
// DimWithOrWithOutExpr ::= '[' ']' |
3134 |
// DimWithOrWithOutExpr ::= '[' ']' |
|
|
3135 |
// DimWithOrWithOutExpr ::= OneOrMoreAnnotations '[' ']' |
| 2891 |
pushOnExpressionStack(null); |
3136 |
pushOnExpressionStack(null); |
| 2892 |
|
3137 |
|
| 2893 |
if(this.currentElement != null && this.currentToken == TokenNameLBRACE) { |
3138 |
if(this.currentElement != null && this.currentToken == TokenNameLBRACE) { |
|
Lines 3097-3102
Link Here
|
| 3097 |
localDeclaration.annotations = new Annotation[length], |
3342 |
localDeclaration.annotations = new Annotation[length], |
| 3098 |
0, |
3343 |
0, |
| 3099 |
length); |
3344 |
length); |
|
|
3345 |
localDeclaration.bits |= ASTNode.HasTypeAnnotations; |
| 3100 |
} |
3346 |
} |
| 3101 |
if (hasModifiers) { |
3347 |
if (hasModifiers) { |
| 3102 |
localDeclaration.declarationSourceStart = declarationSourceStart; |
3348 |
localDeclaration.declarationSourceStart = declarationSourceStart; |
|
Lines 3105-3110
Link Here
|
| 3105 |
localDeclaration.declarationSourceStart = type.sourceStart; |
3351 |
localDeclaration.declarationSourceStart = type.sourceStart; |
| 3106 |
} |
3352 |
} |
| 3107 |
localDeclaration.type = type; |
3353 |
localDeclaration.type = type; |
|
|
3354 |
localDeclaration.bits |= (type.bits & ASTNode.HasTypeAnnotations); |
| 3108 |
|
3355 |
|
| 3109 |
ForeachStatement iteratorForStatement = |
3356 |
ForeachStatement iteratorForStatement = |
| 3110 |
new ForeachStatement( |
3357 |
new ForeachStatement( |
|
Lines 3195-3200
Link Here
|
| 3195 |
char[] identifierName = this.identifierStack[this.identifierPtr]; |
3442 |
char[] identifierName = this.identifierStack[this.identifierPtr]; |
| 3196 |
long namePosition = this.identifierPositionStack[this.identifierPtr]; |
3443 |
long namePosition = this.identifierPositionStack[this.identifierPtr]; |
| 3197 |
int extendedDimension = this.intStack[this.intPtr--]; |
3444 |
int extendedDimension = this.intStack[this.intPtr--]; |
|
|
3445 |
// pop any annotations on extended dimensions now, so they don't pollute the base dimensions. |
| 3446 |
Annotation [][] annotationsOnExtendedDimensions = extendedDimension == 0 ? null : getAnnotationsOnDimensions(extendedDimension); |
| 3198 |
AbstractVariableDeclaration declaration; |
3447 |
AbstractVariableDeclaration declaration; |
| 3199 |
// create the ast node |
3448 |
// create the ast node |
| 3200 |
boolean isLocalDeclaration = this.nestedMethod[this.nestedType] != 0; |
3449 |
boolean isLocalDeclaration = this.nestedMethod[this.nestedType] != 0; |
|
Lines 3227-3232
Link Here
|
| 3227 |
declaration.annotations = new Annotation[length], |
3476 |
declaration.annotations = new Annotation[length], |
| 3228 |
0, |
3477 |
0, |
| 3229 |
length); |
3478 |
length); |
|
|
3479 |
declaration.bits |= ASTNode.HasTypeAnnotations; |
| 3230 |
} |
3480 |
} |
| 3231 |
type = getTypeReference(typeDim = this.intStack[this.intPtr--]); // type dimension |
3481 |
type = getTypeReference(typeDim = this.intStack[this.intPtr--]); // type dimension |
| 3232 |
if (declaration.declarationSourceStart == -1) { |
3482 |
if (declaration.declarationSourceStart == -1) { |
|
Lines 3248-3253
Link Here
|
| 3248 |
declaration.annotations = new Annotation[length], |
3498 |
declaration.annotations = new Annotation[length], |
| 3249 |
0, |
3499 |
0, |
| 3250 |
length); |
3500 |
length); |
|
|
3501 |
declaration.bits |= ASTNode.HasTypeAnnotations; |
| 3251 |
} |
3502 |
} |
| 3252 |
// Store javadoc only on first declaration as it is the same for all ones |
3503 |
// Store javadoc only on first declaration as it is the same for all ones |
| 3253 |
FieldDeclaration fieldDeclaration = (FieldDeclaration) declaration; |
3504 |
FieldDeclaration fieldDeclaration = (FieldDeclaration) declaration; |
|
Lines 3265-3278
Link Here
|
| 3265 |
if (annotations != null) { |
3516 |
if (annotations != null) { |
| 3266 |
final int annotationsLength = annotations.length; |
3517 |
final int annotationsLength = annotations.length; |
| 3267 |
System.arraycopy(annotations, 0, declaration.annotations = new Annotation[annotationsLength], 0, annotationsLength); |
3518 |
System.arraycopy(annotations, 0, declaration.annotations = new Annotation[annotationsLength], 0, annotationsLength); |
|
|
3519 |
declaration.bits |= ASTNode.HasTypeAnnotations; |
| 3268 |
} |
3520 |
} |
| 3269 |
} |
3521 |
} |
| 3270 |
|
3522 |
|
| 3271 |
if (extendedDimension == 0) { |
3523 |
if (extendedDimension == 0) { |
| 3272 |
declaration.type = type; |
3524 |
declaration.type = type; |
|
|
3525 |
declaration.bits |= (type.bits & ASTNode.HasTypeAnnotations); |
| 3273 |
} else { |
3526 |
} else { |
| 3274 |
int dimension = typeDim + extendedDimension; |
3527 |
int dimension = typeDim + extendedDimension; |
| 3275 |
declaration.type = copyDims(type, dimension); |
3528 |
Annotation [][] annotationsOnAllDimensions = null; |
|
|
3529 |
Annotation[][] annotationsOnDimensions = type.getAnnotationsOnDimensions(); |
| 3530 |
if (annotationsOnDimensions != null || annotationsOnExtendedDimensions != null) { |
| 3531 |
annotationsOnAllDimensions = getMergedAnnotationsOnDimensions(typeDim, annotationsOnDimensions, extendedDimension, annotationsOnExtendedDimensions); |
| 3532 |
declaration.bits |= (type.bits & ASTNode.HasTypeAnnotations); |
| 3533 |
} |
| 3534 |
declaration.type = copyDims(type, dimension, annotationsOnAllDimensions); |
| 3276 |
} |
3535 |
} |
| 3277 |
this.variablesCounter[this.nestedType]++; |
3536 |
this.variablesCounter[this.nestedType]++; |
| 3278 |
pushOnAstStack(declaration); |
3537 |
pushOnAstStack(declaration); |
|
Lines 3298-3303
Link Here
|
| 3298 |
} |
3557 |
} |
| 3299 |
this.lastIgnoredToken = -1; |
3558 |
this.lastIgnoredToken = -1; |
| 3300 |
} |
3559 |
} |
|
|
3560 |
} |
| 3561 |
protected Annotation[][] getMergedAnnotationsOnDimensions(int dims, Annotation[][] annotationsOnDimensions, |
| 3562 |
int extendedDims, Annotation[][] annotationsOnExtendedDimensions) { |
| 3563 |
|
| 3564 |
if (annotationsOnDimensions == null && annotationsOnExtendedDimensions == null) |
| 3565 |
return null; |
| 3566 |
|
| 3567 |
Annotation [][] mergedAnnotations = new Annotation[dims + extendedDims][]; |
| 3568 |
for (int i = 0; i < dims; i++) { |
| 3569 |
if (annotationsOnDimensions != null) { |
| 3570 |
mergedAnnotations[i] = annotationsOnDimensions[i]; |
| 3571 |
} else { |
| 3572 |
mergedAnnotations[i] = null; |
| 3573 |
} |
| 3574 |
} |
| 3575 |
for (int i = dims, j = 0; i < dims + extendedDims; i++, j++) { |
| 3576 |
if (annotationsOnExtendedDimensions != null) { |
| 3577 |
mergedAnnotations[i] = annotationsOnExtendedDimensions[j]; |
| 3578 |
} else { |
| 3579 |
mergedAnnotations[i] = null; |
| 3580 |
} |
| 3581 |
} |
| 3582 |
|
| 3583 |
return mergedAnnotations; |
| 3301 |
} |
3584 |
} |
| 3302 |
protected void consumeEnumBodyNoConstants() { |
3585 |
protected void consumeEnumBodyNoConstants() { |
| 3303 |
// nothing to do |
3586 |
// nothing to do |
|
Lines 3409-3414
Link Here
|
| 3409 |
enumConstant.annotations = new Annotation[length], |
3692 |
enumConstant.annotations = new Annotation[length], |
| 3410 |
0, |
3693 |
0, |
| 3411 |
length); |
3694 |
length); |
|
|
3695 |
enumConstant.bits |= ASTNode.HasTypeAnnotations; |
| 3412 |
} |
3696 |
} |
| 3413 |
pushOnAstStack(enumConstant); |
3697 |
pushOnAstStack(enumConstant); |
| 3414 |
if (this.currentElement != null){ |
3698 |
if (this.currentElement != null){ |
|
Lines 3918-3925
Link Here
|
| 3918 |
this.identifierStack : |
4202 |
this.identifierStack : |
| 3919 |
this.intStack : |
4203 |
this.intStack : |
| 3920 |
*/ |
4204 |
*/ |
| 3921 |
|
4205 |
this.identifierLengthPtr--; |
| 3922 |
this.identifierLengthPtr--; |
|
|
| 3923 |
char[] identifierName = this.identifierStack[this.identifierPtr]; |
4206 |
char[] identifierName = this.identifierStack[this.identifierPtr]; |
| 3924 |
long namePositions = this.identifierPositionStack[this.identifierPtr--]; |
4207 |
long namePositions = this.identifierPositionStack[this.identifierPtr--]; |
| 3925 |
int extendedDimensions = this.intStack[this.intPtr--]; |
4208 |
int extendedDimensions = this.intStack[this.intPtr--]; |
|
Lines 3928-3937
Link Here
|
| 3928 |
endOfEllipsis = this.intStack[this.intPtr--]; |
4211 |
endOfEllipsis = this.intStack[this.intPtr--]; |
| 3929 |
} |
4212 |
} |
| 3930 |
int firstDimensions = this.intStack[this.intPtr--]; |
4213 |
int firstDimensions = this.intStack[this.intPtr--]; |
| 3931 |
final int typeDimensions = firstDimensions + extendedDimensions; |
4214 |
TypeReference type = getUnannotatedTypeReference(extendedDimensions); |
| 3932 |
TypeReference type = getTypeReference(typeDimensions); |
4215 |
Annotation [] varArgsAnnotations = null; |
|
|
4216 |
int length; |
| 4217 |
if ((length = this.typeAnnotationLengthStack[this.typeAnnotationLengthPtr--]) != 0) { |
| 4218 |
System.arraycopy( |
| 4219 |
this.typeAnnotationStack, |
| 4220 |
(this.typeAnnotationPtr -= length) + 1, |
| 4221 |
varArgsAnnotations = new Annotation[length], |
| 4222 |
0, |
| 4223 |
length); |
| 4224 |
} |
| 4225 |
final int typeDimensions = firstDimensions + extendedDimensions + (isVarArgs ? 1 : 0); |
| 4226 |
|
| 4227 |
if (typeDimensions != extendedDimensions) { |
| 4228 |
// jsr308 type annotations management |
| 4229 |
Annotation [][] annotationsOnFirstDimensions = firstDimensions == 0 ? null : getAnnotationsOnDimensions(firstDimensions); |
| 4230 |
Annotation [][] annotationsOnExtendedDimensions = extendedDimensions == 0 ? null : type.getAnnotationsOnDimensions(); |
| 4231 |
Annotation [][] annotationsOnAllDimensions = null; |
| 4232 |
if (annotationsOnFirstDimensions != null || annotationsOnExtendedDimensions != null || varArgsAnnotations != null) { |
| 4233 |
annotationsOnAllDimensions = getMergedAnnotationsOnDimensions(firstDimensions, annotationsOnFirstDimensions, extendedDimensions, annotationsOnExtendedDimensions); |
| 4234 |
annotationsOnAllDimensions = getMergedAnnotationsOnDimensions(firstDimensions + extendedDimensions, annotationsOnAllDimensions, isVarArgs ? 1 : 0, isVarArgs ? new Annotation[][]{varArgsAnnotations} : null); |
| 4235 |
} |
| 4236 |
type = copyDims(type, typeDimensions, annotationsOnAllDimensions); |
| 4237 |
type.sourceEnd = type.isParameterizedTypeReference() ? this.endStatementPosition : this.endPosition; |
| 4238 |
} |
| 3933 |
if (isVarArgs) { |
4239 |
if (isVarArgs) { |
| 3934 |
type = copyDims(type, typeDimensions + 1); |
|
|
| 3935 |
if (extendedDimensions == 0) { |
4240 |
if (extendedDimensions == 0) { |
| 3936 |
type.sourceEnd = endOfEllipsis; |
4241 |
type.sourceEnd = endOfEllipsis; |
| 3937 |
} |
4242 |
} |
|
Lines 3946-3953
Link Here
|
| 3946 |
type, |
4251 |
type, |
| 3947 |
this.intStack[this.intPtr + 1] & ~ClassFileConstants.AccDeprecated); // modifiers |
4252 |
this.intStack[this.intPtr + 1] & ~ClassFileConstants.AccDeprecated); // modifiers |
| 3948 |
arg.declarationSourceStart = modifierPositions; |
4253 |
arg.declarationSourceStart = modifierPositions; |
|
|
4254 |
arg.bits |= (type.bits & ASTNode.HasTypeAnnotations); |
| 3949 |
// consume annotations |
4255 |
// consume annotations |
| 3950 |
int length; |
|
|
| 3951 |
if ((length = this.expressionLengthStack[this.expressionLengthPtr--]) != 0) { |
4256 |
if ((length = this.expressionLengthStack[this.expressionLengthPtr--]) != 0) { |
| 3952 |
System.arraycopy( |
4257 |
System.arraycopy( |
| 3953 |
this.expressionStack, |
4258 |
this.expressionStack, |
|
Lines 3955-3960
Link Here
|
| 3955 |
arg.annotations = new Annotation[length], |
4260 |
arg.annotations = new Annotation[length], |
| 3956 |
0, |
4261 |
0, |
| 3957 |
length); |
4262 |
length); |
|
|
4263 |
arg.bits |= ASTNode.HasTypeAnnotations; |
| 3958 |
RecoveredType currentRecoveryType = this.currentRecoveryType(); |
4264 |
RecoveredType currentRecoveryType = this.currentRecoveryType(); |
| 3959 |
if (currentRecoveryType != null) |
4265 |
if (currentRecoveryType != null) |
| 3960 |
currentRecoveryType.annotationsConsumed(arg.annotations); |
4266 |
currentRecoveryType.annotationsConsumed(arg.annotations); |
|
Lines 3974-3980
Link Here
|
| 3974 |
extendedDimensions > 0) { |
4280 |
extendedDimensions > 0) { |
| 3975 |
problemReporter().illegalExtendedDimensions(arg); |
4281 |
problemReporter().illegalExtendedDimensions(arg); |
| 3976 |
} |
4282 |
} |
|
|
4283 |
} else { |
| 4284 |
// The grammar allows trailing annotations in FormalParameter as in |
| 4285 |
// "int @NonNull[] @Misplaced parameter" in order to allow for constructs such as |
| 4286 |
// "Object @NonNull[] @Correct ... objects" -- we prune these here. |
| 4287 |
if (varArgsAnnotations != null) { |
| 4288 |
problemReporter().misplacedTypeAnnotations(varArgsAnnotations[0], |
| 4289 |
varArgsAnnotations[varArgsAnnotations.length-1]); |
| 4290 |
} |
| 3977 |
} |
4291 |
} |
|
|
4292 |
} |
| 4293 |
protected Annotation[][] getAnnotationsOnDimensions(int dimensionsCount) { |
| 4294 |
Annotation [][] dimensionsAnnotations = null; |
| 4295 |
if (dimensionsCount > 0) { |
| 4296 |
for (int i = 0; i < dimensionsCount; i++) { |
| 4297 |
Annotation [] annotations = null; |
| 4298 |
int length; |
| 4299 |
if ((length = this.typeAnnotationLengthStack[this.typeAnnotationLengthPtr--]) != 0) { |
| 4300 |
System.arraycopy( |
| 4301 |
this.typeAnnotationStack, |
| 4302 |
(this.typeAnnotationPtr -= length) + 1, |
| 4303 |
annotations = new Annotation[length], |
| 4304 |
0, |
| 4305 |
length); |
| 4306 |
if (dimensionsAnnotations == null) { |
| 4307 |
dimensionsAnnotations = new Annotation[dimensionsCount][]; |
| 4308 |
} |
| 4309 |
dimensionsAnnotations[dimensionsCount - i - 1] = annotations; |
| 4310 |
} |
| 4311 |
} |
| 4312 |
} |
| 4313 |
return dimensionsAnnotations; |
| 3978 |
} |
4314 |
} |
| 3979 |
protected void consumeFormalParameterList() { |
4315 |
protected void consumeFormalParameterList() { |
| 3980 |
// FormalParameterList ::= FormalParameterList ',' FormalParameter |
4316 |
// FormalParameterList ::= FormalParameterList ',' FormalParameter |
|
Lines 4036-4041
Link Here
|
| 4036 |
} |
4372 |
} |
| 4037 |
protected void consumeInsideCastExpressionWithQualifiedGenerics() { |
4373 |
protected void consumeInsideCastExpressionWithQualifiedGenerics() { |
| 4038 |
// InsideCastExpressionWithQualifiedGenerics ::= $empty |
4374 |
// InsideCastExpressionWithQualifiedGenerics ::= $empty |
|
|
4375 |
} |
| 4376 |
protected void consumeInsideCastExpressionWithAnnotatedQualifiedGenerics() { |
| 4377 |
// InsideCastExpressionWithAnnotatedQualifiedGenerics ::= $empty |
| 4039 |
} |
4378 |
} |
| 4040 |
protected void consumeInstanceOfExpression() { |
4379 |
protected void consumeInstanceOfExpression() { |
| 4041 |
// RelationalExpression ::= RelationalExpression 'instanceof' ReferenceType |
4380 |
// RelationalExpression ::= RelationalExpression 'instanceof' ReferenceType |
|
Lines 4133-4140
Link Here
|
| 4133 |
typeDecl.superInterfaces = new TypeReference[length], |
4472 |
typeDecl.superInterfaces = new TypeReference[length], |
| 4134 |
0, |
4473 |
0, |
| 4135 |
length); |
4474 |
length); |
| 4136 |
for (int i = 0, max = typeDecl.superInterfaces.length; i < max; i++) { |
4475 |
TypeReference[] superinterfaces = typeDecl.superInterfaces; |
| 4137 |
typeDecl.superInterfaces[i].bits |= ASTNode.IsSuperType; |
4476 |
for (int i = 0, max = superinterfaces.length; i < max; i++) { |
|
|
4477 |
TypeReference typeReference = superinterfaces[i]; |
| 4478 |
typeDecl.bits |= (typeReference.bits & ASTNode.HasTypeAnnotations); |
| 4479 |
typeReference.bits |= ASTNode.IsSuperType; |
| 4138 |
} |
4480 |
} |
| 4139 |
typeDecl.bodyStart = typeDecl.superInterfaces[length-1].sourceEnd + 1; |
4481 |
typeDecl.bodyStart = typeDecl.superInterfaces[length-1].sourceEnd + 1; |
| 4140 |
this.listLength = 0; // reset after having read super-interfaces |
4482 |
this.listLength = 0; // reset after having read super-interfaces |
|
Lines 4494-4501
Link Here
|
| 4494 |
if (isNotAbstract) { |
4836 |
if (isNotAbstract) { |
| 4495 |
//statements |
4837 |
//statements |
| 4496 |
explicitDeclarations = this.realBlockStack[this.realBlockPtr--]; |
4838 |
explicitDeclarations = this.realBlockStack[this.realBlockPtr--]; |
| 4497 |
if (!this.options.ignoreMethodBodies) { |
4839 |
if ((length = this.astLengthStack[this.astLengthPtr--]) != 0) { |
| 4498 |
if ((length = this.astLengthStack[this.astLengthPtr--]) != 0) { |
4840 |
if (this.options.ignoreMethodBodies) { |
|
|
4841 |
this.astPtr -= length; |
| 4842 |
} else { |
| 4499 |
System.arraycopy( |
4843 |
System.arraycopy( |
| 4500 |
this.astStack, |
4844 |
this.astStack, |
| 4501 |
(this.astPtr -= length) + 1, |
4845 |
(this.astPtr -= length) + 1, |
|
Lines 4503-4511
Link Here
|
| 4503 |
0, |
4847 |
0, |
| 4504 |
length); |
4848 |
length); |
| 4505 |
} |
4849 |
} |
| 4506 |
} else { |
|
|
| 4507 |
length = this.astLengthStack[this.astLengthPtr--]; |
| 4508 |
this.astPtr -= length; |
| 4509 |
} |
4850 |
} |
| 4510 |
} |
4851 |
} |
| 4511 |
|
4852 |
|
|
Lines 4598-4604
Link Here
|
| 4598 |
TypeReference returnType = md.returnType; |
4939 |
TypeReference returnType = md.returnType; |
| 4599 |
md.sourceEnd = this.endPosition; |
4940 |
md.sourceEnd = this.endPosition; |
| 4600 |
int dims = returnType.dimensions() + extendedDims; |
4941 |
int dims = returnType.dimensions() + extendedDims; |
| 4601 |
md.returnType = copyDims(returnType, dims); |
4942 |
Annotation [][] annotationsOnDimensions = returnType.getAnnotationsOnDimensions(); |
|
|
4943 |
Annotation [][] annotationsOnExtendedDimensions = getAnnotationsOnDimensions(extendedDims); |
| 4944 |
Annotation [][] annotationsOnAllDimensions = null; |
| 4945 |
if (annotationsOnDimensions != null || annotationsOnExtendedDimensions != null) { |
| 4946 |
annotationsOnAllDimensions = getMergedAnnotationsOnDimensions(returnType.dimensions(), annotationsOnDimensions, extendedDims, annotationsOnExtendedDimensions); |
| 4947 |
} |
| 4948 |
md.returnType = copyDims(returnType, dims, annotationsOnAllDimensions); |
| 4602 |
if (this.currentToken == TokenNameLBRACE){ |
4949 |
if (this.currentToken == TokenNameLBRACE){ |
| 4603 |
md.bodyStart = this.endPosition + 1; |
4950 |
md.bodyStart = this.endPosition + 1; |
| 4604 |
} |
4951 |
} |
|
Lines 4682-4688
Link Here
|
| 4682 |
long selectorSource = this.identifierPositionStack[this.identifierPtr--]; |
5029 |
long selectorSource = this.identifierPositionStack[this.identifierPtr--]; |
| 4683 |
this.identifierLengthPtr--; |
5030 |
this.identifierLengthPtr--; |
| 4684 |
//type |
5031 |
//type |
| 4685 |
md.returnType = getTypeReference(this.intStack[this.intPtr--]); |
5032 |
TypeReference returnType = getTypeReference(this.intStack[this.intPtr--]); |
|
|
5033 |
md.returnType = returnType; |
| 5034 |
md.bits |= (returnType.bits & ASTNode.HasTypeAnnotations); |
| 4686 |
|
5035 |
|
| 4687 |
// consume type parameters |
5036 |
// consume type parameters |
| 4688 |
int length = this.genericsLengthStack[this.genericsLengthPtr--]; |
5037 |
int length = this.genericsLengthStack[this.genericsLengthPtr--]; |
|
Lines 4908-4913
Link Here
|
| 4908 |
// Resources ::= Resources ';' Resource |
5257 |
// Resources ::= Resources ';' Resource |
| 4909 |
concatNodeLists(); |
5258 |
concatNodeLists(); |
| 4910 |
} |
5259 |
} |
|
|
5260 |
protected void consumeOneMoreTypeAnnotation() { |
| 5261 |
// OneOrMoreAnnotations ::= OneOrMoreAnnotations Annotation |
| 5262 |
this.expressionLengthPtr --; |
| 5263 |
Annotation annotation = (Annotation) this.expressionStack[this.expressionPtr--]; |
| 5264 |
pushOnTypeAnnotationStack(annotation); |
| 5265 |
this.typeAnnotationLengthStack[--this.typeAnnotationLengthPtr]++; |
| 5266 |
if(!this.statementRecoveryActivated && |
| 5267 |
this.options.sourceLevel < ClassFileConstants.JDK1_7 && |
| 5268 |
this.lastErrorEndPositionBeforeRecovery < this.scanner.currentPosition) { |
| 5269 |
problemReporter().invalidUsageOfTypeAnnotations(annotation); |
| 5270 |
} |
| 5271 |
} |
| 5272 |
protected void consumePotentialNameArrayType () { |
| 5273 |
|
| 5274 |
// FormalParameter ::= Modifiersopt Name DimsoptAnnotsopt PotentialNameArray VariableDeclaratorId |
| 5275 |
// FormalParameter ::= Modifiersopt Name DimsoptAnnotsopt PotentialNameArray '...' VariableDeclaratorId |
| 5276 |
// PotentialNameArray -> $empty |
| 5277 |
// Dimensions including lack of have been pushed appropriately by action attached to DimsoptAnnotsopt |
| 5278 |
pushOnGenericsLengthStack(0); // handle type arguments |
| 5279 |
pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]); |
| 5280 |
} |
| 5281 |
|
| 4911 |
protected void consumeNameArrayType() { |
5282 |
protected void consumeNameArrayType() { |
| 4912 |
pushOnGenericsLengthStack(0); // handle type arguments |
5283 |
pushOnGenericsLengthStack(0); // handle type arguments |
| 4913 |
pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]); |
5284 |
pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]); |
|
Lines 4971-4979
Link Here
|
| 4971 |
} |
5342 |
} |
| 4972 |
this.recordStringLiterals = true; |
5343 |
this.recordStringLiterals = true; |
| 4973 |
} |
5344 |
} |
| 4974 |
protected void consumeOneDimLoop() { |
5345 |
protected void consumeOneDimLoop(boolean expressionStackMayHaveAnnotations) { |
| 4975 |
// OneDimLoop ::= '[' ']' |
5346 |
// OneDimLoop ::= '[' ']' |
|
|
5347 |
// OneDimOrAnnot -> '[' ']' |
| 4976 |
this.dimensions++; |
5348 |
this.dimensions++; |
|
|
5349 |
if (!expressionStackMayHaveAnnotations || this.unattachedAnnotationPtr == -1 ) { |
| 5350 |
pushOnTypeAnnotationLengthStack(0); // no annotations for the current dimension. |
| 5351 |
} else { |
| 5352 |
this.unattachedAnnotationPtr = -1; // Leave type annotation stacks they are. |
| 5353 |
} |
| 5354 |
} |
| 5355 |
protected void consumeOneDimLoopWithAnnotations() { |
| 5356 |
// OneDimLoop ::= OneOrMoreAnnotations '[' ']' |
| 5357 |
this.dimensions++; |
| 5358 |
// Top of expression stack contains annotations of length specified |
| 5359 |
// by top of expression length stack that apply to this dimension. |
| 4977 |
} |
5360 |
} |
| 4978 |
protected void consumeOnlySynchronized() { |
5361 |
protected void consumeOnlySynchronized() { |
| 4979 |
// OnlySynchronized ::= 'synchronized' |
5362 |
// OnlySynchronized ::= 'synchronized' |
|
Lines 5143-5149
Link Here
|
| 5143 |
pushOnGenericsLengthStack(0); |
5526 |
pushOnGenericsLengthStack(0); |
| 5144 |
|
5527 |
|
| 5145 |
pushOnExpressionStack( |
5528 |
pushOnExpressionStack( |
| 5146 |
new ClassLiteralAccess(this.intStack[this.intPtr--], getTypeReference(this.intStack[this.intPtr--]))); |
5529 |
new ClassLiteralAccess(this.intStack[this.intPtr--], getUnannotatedTypeReference(this.intStack[this.intPtr--]))); |
| 5147 |
} |
5530 |
} |
| 5148 |
protected void consumePrimaryNoNewArrayName() { |
5531 |
protected void consumePrimaryNoNewArrayName() { |
| 5149 |
// PrimaryNoNewArray ::= Name '.' 'class' |
5532 |
// PrimaryNoNewArray ::= Name '.' 'class' |
|
Lines 5152-5158
Link Here
|
| 5152 |
// handle type arguments |
5535 |
// handle type arguments |
| 5153 |
pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]); |
5536 |
pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]); |
| 5154 |
pushOnGenericsLengthStack(0); |
5537 |
pushOnGenericsLengthStack(0); |
| 5155 |
TypeReference typeReference = getTypeReference(0); |
5538 |
TypeReference typeReference = getUnannotatedTypeReference(0); // TODO (Srikanth) needs fix |
| 5156 |
|
5539 |
|
| 5157 |
pushOnExpressionStack( |
5540 |
pushOnExpressionStack( |
| 5158 |
new ClassLiteralAccess(this.intStack[this.intPtr--], typeReference)); |
5541 |
new ClassLiteralAccess(this.intStack[this.intPtr--], typeReference)); |
|
Lines 5162-5167
Link Here
|
| 5162 |
// handle type arguments |
5545 |
// handle type arguments |
| 5163 |
pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]); |
5546 |
pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]); |
| 5164 |
pushOnGenericsLengthStack(0); |
5547 |
pushOnGenericsLengthStack(0); |
|
|
5548 |
pushOnTypeAnnotationLengthStack(0); // javac complains on annotations here. |
| 5165 |
TypeReference typeReference = getTypeReference(0); |
5549 |
TypeReference typeReference = getTypeReference(0); |
| 5166 |
|
5550 |
|
| 5167 |
pushOnExpressionStack( |
5551 |
pushOnExpressionStack( |
|
Lines 5175-5181
Link Here
|
| 5175 |
// handle type arguments |
5559 |
// handle type arguments |
| 5176 |
pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]); |
5560 |
pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]); |
| 5177 |
pushOnGenericsLengthStack(0); // handle type arguments |
5561 |
pushOnGenericsLengthStack(0); // handle type arguments |
| 5178 |
|
5562 |
pushOnTypeAnnotationLengthStack(0); // javac complains on annotations here. |
| 5179 |
TypeReference typeReference = getTypeReference(0); |
5563 |
TypeReference typeReference = getTypeReference(0); |
| 5180 |
|
5564 |
|
| 5181 |
pushOnExpressionStack( |
5565 |
pushOnExpressionStack( |
|
Lines 5188-5200
Link Here
|
| 5188 |
// PrimaryNoNewArray ::= PrimitiveType Dims '.' 'class' |
5572 |
// PrimaryNoNewArray ::= PrimitiveType Dims '.' 'class' |
| 5189 |
this.intPtr--; // remove the class start position |
5573 |
this.intPtr--; // remove the class start position |
| 5190 |
pushOnExpressionStack( |
5574 |
pushOnExpressionStack( |
| 5191 |
new ClassLiteralAccess(this.intStack[this.intPtr--], getTypeReference(this.intStack[this.intPtr--]))); |
5575 |
new ClassLiteralAccess(this.intStack[this.intPtr--], getUnannotatedTypeReference(this.intStack[this.intPtr--]))); |
| 5192 |
} |
5576 |
} |
| 5193 |
protected void consumePrimaryNoNewArrayPrimitiveType() { |
5577 |
protected void consumePrimaryNoNewArrayPrimitiveType() { |
| 5194 |
// PrimaryNoNewArray ::= PrimitiveType '.' 'class' |
5578 |
// PrimaryNoNewArray ::= PrimitiveType '.' 'class' |
| 5195 |
this.intPtr--; // remove the class start position |
5579 |
this.intPtr--; // remove the class start position |
| 5196 |
pushOnExpressionStack( |
5580 |
pushOnExpressionStack( |
| 5197 |
new ClassLiteralAccess(this.intStack[this.intPtr--], getTypeReference(0))); |
5581 |
new ClassLiteralAccess(this.intStack[this.intPtr--], getUnannotatedTypeReference(0))); |
| 5198 |
} |
5582 |
} |
| 5199 |
protected void consumePrimaryNoNewArrayThis() { |
5583 |
protected void consumePrimaryNoNewArrayThis() { |
| 5200 |
// PrimaryNoNewArray ::= 'this' |
5584 |
// PrimaryNoNewArray ::= 'this' |
|
Lines 5325-7144
Link Here
|
| 5325 |
// PushRPAREN ::= ')' |
5709 |
// PushRPAREN ::= ')' |
| 5326 |
pushOnIntStack(this.rParenPos); |
5710 |
pushOnIntStack(this.rParenPos); |
| 5327 |
} |
5711 |
} |
|
|
5712 |
protected void consumeUnannotatedType() { |
| 5713 |
/* We go through some song & dance here to get the type annotations stacks |
| 5714 |
to reflect the fact that this type was unannotated. Using a dummy non-terminal |
| 5715 |
with an empty rhs leads to conflicts in many places :-( |
| 5716 |
*/ |
| 5717 |
pushOnTypeAnnotationLengthStack(0); // either done or else made room. |
| 5718 |
int dims = this.intStack[this.intPtr]; |
| 5719 |
if (dims != 0) { |
| 5720 |
System.arraycopy( |
| 5721 |
this.typeAnnotationLengthStack, |
| 5722 |
this.typeAnnotationLengthPtr - dims, |
| 5723 |
this.typeAnnotationLengthStack, |
| 5724 |
this.typeAnnotationLengthPtr - dims + 1, |
| 5725 |
dims); |
| 5726 |
this.typeAnnotationLengthStack[this.typeAnnotationLengthPtr - dims] = 0; // tag type as unannotated |
| 5727 |
} |
| 5728 |
} |
| 5729 |
protected void consumeAnnotatedType() { |
| 5730 |
/* We go through some song & dance here to get the type annotations stacks |
| 5731 |
to reflect the fact that this type was unannotated. Using a dummy non-terminal |
| 5732 |
with an empty rhs leads to conflicts in many places :-( |
| 5733 |
*/ |
| 5734 |
int dims = this.intStack[this.intPtr]; |
| 5735 |
if (dims != 0) { |
| 5736 |
int counter = 0; |
| 5737 |
for (int i = 0; i < dims; i++) { |
| 5738 |
// we count existing dimensions with annotations |
| 5739 |
counter += this.typeAnnotationLengthStack[this.typeAnnotationLengthPtr - dims + 1 + i]; |
| 5740 |
} |
| 5741 |
System.arraycopy( |
| 5742 |
this.typeAnnotationLengthStack, |
| 5743 |
this.typeAnnotationLengthPtr - dims + 1, |
| 5744 |
this.typeAnnotationLengthStack, |
| 5745 |
this.typeAnnotationLengthPtr - dims + 2, |
| 5746 |
dims); |
| 5747 |
int length = this.expressionLengthStack[this.expressionLengthPtr--]; |
| 5748 |
this.typeAnnotationLengthStack[this.typeAnnotationLengthPtr - dims + 1] = length; |
| 5749 |
int typeAnnotationStackLength = this.typeAnnotationStack.length; |
| 5750 |
if (this.typeAnnotationPtr + counter + length >= typeAnnotationStackLength) { |
| 5751 |
System.arraycopy( |
| 5752 |
this.typeAnnotationStack, |
| 5753 |
0, |
| 5754 |
this.typeAnnotationStack = new Annotation[typeAnnotationStackLength + TypeAnnotationStackIncrement], |
| 5755 |
0, |
| 5756 |
typeAnnotationStackLength); |
| 5757 |
} |
| 5758 |
System.arraycopy( |
| 5759 |
this.typeAnnotationStack, |
| 5760 |
this.typeAnnotationPtr - counter + 1, |
| 5761 |
this.typeAnnotationStack, |
| 5762 |
this.typeAnnotationPtr - counter + 1 + length, |
| 5763 |
counter); |
| 5764 |
System.arraycopy( |
| 5765 |
this.expressionStack, |
| 5766 |
(this.expressionPtr -= length) + 1, |
| 5767 |
this.typeAnnotationStack, |
| 5768 |
this.typeAnnotationPtr - counter + 1, |
| 5769 |
length); |
| 5770 |
this.typeAnnotationPtr += length; |
| 5771 |
this.typeAnnotationLengthPtr++; |
| 5772 |
} else { |
| 5773 |
int length = this.expressionLengthStack[this.expressionLengthPtr--]; |
| 5774 |
int typeAnnotationStackLength = this.typeAnnotationStack.length; |
| 5775 |
if (this.typeAnnotationPtr + length >= typeAnnotationStackLength) { |
| 5776 |
System.arraycopy( |
| 5777 |
this.typeAnnotationStack, |
| 5778 |
0, |
| 5779 |
this.typeAnnotationStack = new Annotation[typeAnnotationStackLength + TypeAnnotationStackIncrement], |
| 5780 |
0, |
| 5781 |
typeAnnotationStackLength); |
| 5782 |
} |
| 5783 |
System.arraycopy( |
| 5784 |
this.expressionStack, |
| 5785 |
(this.expressionPtr -= length) + 1, |
| 5786 |
this.typeAnnotationStack, |
| 5787 |
this.typeAnnotationPtr + 1, |
| 5788 |
length); |
| 5789 |
this.typeAnnotationPtr += length; |
| 5790 |
pushOnTypeAnnotationLengthStack(length); |
| 5791 |
} |
| 5792 |
// if (this.modifiers != ClassFileConstants.AccDefault) { |
| 5793 |
// problemReporter().invalidLocationForModifiers(typeReference); |
| 5794 |
// } |
| 5795 |
// resetModifiers(); |
| 5796 |
} |
| 5797 |
protected void consumeTypeAnnotation (boolean markAsUnattached) { |
| 5798 |
if(!this.statementRecoveryActivated && |
| 5799 |
this.options.sourceLevel < ClassFileConstants.JDK1_7 && |
| 5800 |
this.lastErrorEndPositionBeforeRecovery < this.scanner.currentPosition) { |
| 5801 |
problemReporter().invalidUsageOfTypeAnnotations((Annotation) this.expressionStack[this.expressionPtr]); |
| 5802 |
} |
| 5803 |
this.expressionLengthPtr --; |
| 5804 |
Annotation annotation = (Annotation) this.expressionStack[this.expressionPtr--]; |
| 5805 |
pushOnTypeAnnotationStack(annotation); |
| 5806 |
if (markAsUnattached) { |
| 5807 |
if (this.unattachedAnnotationPtr == -1) { |
| 5808 |
this.unattachedAnnotationPtr = this.typeAnnotationPtr; |
| 5809 |
} else { |
| 5810 |
this.typeAnnotationLengthStack[--this.typeAnnotationLengthPtr]++; |
| 5811 |
} |
| 5812 |
} |
| 5813 |
} |
| 5814 |
protected void consumeDimsWithTrailingAnnotsopt() { |
| 5815 |
// DimsoptAnnotsopt -> DimsAnnotLoop |
| 5816 |
pushOnIntStack(this.dimensions); |
| 5817 |
this.dimensions = 0; |
| 5818 |
if (this.unattachedAnnotationPtr == -1) { |
| 5819 |
pushOnTypeAnnotationLengthStack(0); // no trailing annotations (receiver/vararg) |
| 5820 |
} else { |
| 5821 |
this.unattachedAnnotationPtr = -1; // reset this and leave the annotation stacks as they are. |
| 5822 |
} |
| 5823 |
} |
| 5824 |
protected void consumeZeroTypeAnnotations(boolean shouldPush) { |
| 5825 |
if (shouldPush) { |
| 5826 |
pushOnTypeAnnotationLengthStack(0); |
| 5827 |
} else { |
| 5828 |
this.typeAnnotationLengthPtr --; // pop the 0 from the length stack |
| 5829 |
} |
| 5830 |
} |
| 5831 |
protected void consumeEmptyDimsoptAnnotsopt() { |
| 5832 |
// DimsoptAnnotsopt ::= $empty |
| 5833 |
pushOnIntStack(0); // signal a non array |
| 5834 |
pushOnTypeAnnotationLengthStack(0); // no trailing annotations (receiver/vararg) |
| 5835 |
} |
| 5836 |
protected void consumeRightParenForUnannotatedTypeCast() { |
| 5837 |
consumeUnannotatedType(); |
| 5838 |
// PushRPAREN ::= ')' |
| 5839 |
pushOnIntStack(this.rParenPos); |
| 5840 |
} |
| 5841 |
protected void consumeRightParenForNameUnannotatedTypeCast() { |
| 5842 |
pushOnIntStack(0); // signal a non array |
| 5843 |
consumeUnannotatedType(); |
| 5844 |
// remove the fake dimension |
| 5845 |
this.intPtr--; |
| 5846 |
// PushRPAREN ::= ')' |
| 5847 |
pushOnIntStack(this.rParenPos); |
| 5848 |
} |
| 5849 |
protected void consumeRightParenForAnnotatedTypeCast() { |
| 5850 |
consumeUnannotatedType(); |
| 5851 |
// PushRPAREN ::= ')' |
| 5852 |
pushOnIntStack(this.rParenPos); |
| 5853 |
} |
| 5854 |
protected void consumeRightParenForNameAndAnnotatedTypeCast() { |
| 5855 |
// push a zero for dimensions |
| 5856 |
pushOnIntStack(0); |
| 5857 |
consumeUnannotatedType(); |
| 5858 |
// remove the fake dimension |
| 5859 |
this.intPtr--; |
| 5860 |
// PushRPAREN ::= ')' |
| 5861 |
pushOnIntStack(this.rParenPos); |
| 5862 |
} |
| 5328 |
// This method is part of an automatic generation : do NOT edit-modify |
5863 |
// This method is part of an automatic generation : do NOT edit-modify |
| 5329 |
protected void consumeRule(int act) { |
5864 |
protected void consumeRule(int act) { |
| 5330 |
switch ( act ) { |
5865 |
switch ( act ) { |
| 5331 |
case 30 : if (DEBUG) { System.out.println("Type ::= PrimitiveType"); } //$NON-NLS-1$ |
5866 |
case 32 : if (DEBUG) { System.out.println("Type ::= TypeInternal"); } //$NON-NLS-1$ |
|
|
5867 |
consumeUnannotatedType(); |
| 5868 |
break; |
| 5869 |
|
| 5870 |
case 34 : if (DEBUG) { System.out.println("Type0 ::= TypeInternal"); } //$NON-NLS-1$ |
| 5871 |
consumeUnannotatedType(); |
| 5872 |
break; |
| 5873 |
|
| 5874 |
case 35 : if (DEBUG) { System.out.println("TypeInternal ::= PrimitiveType"); } //$NON-NLS-1$ |
| 5332 |
consumePrimitiveType(); |
5875 |
consumePrimitiveType(); |
| 5333 |
break; |
5876 |
break; |
| 5334 |
|
5877 |
|
| 5335 |
case 44 : if (DEBUG) { System.out.println("ReferenceType ::= ClassOrInterfaceType"); } //$NON-NLS-1$ |
5878 |
case 49 : if (DEBUG) { System.out.println("ReferenceType ::= ReferenceType0"); } //$NON-NLS-1$ |
| 5336 |
consumeReferenceType(); |
5879 |
consumeUnannotatedType(); |
| 5337 |
break; |
5880 |
break; |
| 5338 |
|
5881 |
|
| 5339 |
case 48 : if (DEBUG) { System.out.println("ClassOrInterface ::= Name"); } //$NON-NLS-1$ |
5882 |
case 50 : if (DEBUG) { System.out.println("ReferenceType ::= Modifiers ReferenceType0"); } //$NON-NLS-1$ |
| 5340 |
consumeClassOrInterfaceName(); |
5883 |
consumeAnnotatedType(); |
| 5341 |
break; |
5884 |
break; |
| 5342 |
|
5885 |
|
| 5343 |
case 49 : if (DEBUG) { System.out.println("ClassOrInterface ::= GenericType DOT Name"); } //$NON-NLS-1$ |
5886 |
case 51 : if (DEBUG) { System.out.println("ReferenceType0 ::= ClassOrInterfaceType0"); } //$NON-NLS-1$ |
| 5344 |
consumeClassOrInterface(); |
5887 |
consumeReferenceType(); |
| 5345 |
break; |
5888 |
break; |
| 5346 |
|
5889 |
|
| 5347 |
case 50 : if (DEBUG) { System.out.println("GenericType ::= ClassOrInterface TypeArguments"); } //$NON-NLS-1$ |
5890 |
case 53 : if (DEBUG) { System.out.println("Annotationsopt ::="); } //$NON-NLS-1$ |
| 5348 |
consumeGenericType(); |
5891 |
consumeZeroTypeAnnotations(true); |
| 5349 |
break; |
5892 |
break; |
| 5350 |
|
5893 |
|
| 5351 |
case 51 : if (DEBUG) { System.out.println("GenericType ::= ClassOrInterface LESS GREATER"); } //$NON-NLS-1$ |
5894 |
case 58 : if (DEBUG) { System.out.println("ClassOrInterface ::= ClassOrInterface0"); } //$NON-NLS-1$ |
|
|
5895 |
consumeZeroTypeAnnotations(true); |
| 5896 |
break; |
| 5897 |
|
| 5898 |
case 59 : if (DEBUG) { System.out.println("ClassOrInterface0 ::= Name"); } //$NON-NLS-1$ |
| 5899 |
consumeClassOrInterfaceName(); |
| 5900 |
break; |
| 5901 |
|
| 5902 |
case 61 : if (DEBUG) { System.out.println("PopZeroTypeAnnotations ::="); } //$NON-NLS-1$ |
| 5903 |
consumeZeroTypeAnnotations(false); |
| 5904 |
break; |
| 5905 |
|
| 5906 |
case 62 : if (DEBUG) { System.out.println("GenericType ::= ClassOrInterface TypeArguments..."); } //$NON-NLS-1$ |
| 5907 |
consumeGenericType(); |
| 5908 |
break; |
| 5909 |
|
| 5910 |
case 63 : if (DEBUG) { System.out.println("GenericTypeDotName ::= GenericType DOT Name"); } //$NON-NLS-1$ |
| 5911 |
consumeClassOrInterface(); |
| 5912 |
break; |
| 5913 |
|
| 5914 |
case 64 : if (DEBUG) { System.out.println("GenericType ::= ClassOrInterface LESS GREATER"); } //$NON-NLS-1$ |
| 5352 |
consumeGenericTypeWithDiamond(); |
5915 |
consumeGenericTypeWithDiamond(); |
| 5353 |
break; |
5916 |
break; |
| 5354 |
|
5917 |
|
| 5355 |
case 52 : if (DEBUG) { System.out.println("ArrayTypeWithTypeArgumentsName ::= GenericType DOT Name"); } //$NON-NLS-1$ |
5918 |
case 66 : if (DEBUG) { System.out.println("ArrayType ::= PrimitiveType Dims"); } //$NON-NLS-1$ |
| 5356 |
consumeArrayTypeWithTypeArgumentsName(); |
|
|
| 5357 |
break; |
| 5358 |
|
| 5359 |
case 53 : if (DEBUG) { System.out.println("ArrayType ::= PrimitiveType Dims"); } //$NON-NLS-1$ |
| 5360 |
consumePrimitiveArrayType(); |
5919 |
consumePrimitiveArrayType(); |
| 5361 |
break; |
5920 |
break; |
| 5362 |
|
5921 |
|
| 5363 |
case 54 : if (DEBUG) { System.out.println("ArrayType ::= Name Dims"); } //$NON-NLS-1$ |
5922 |
case 67 : if (DEBUG) { System.out.println("ArrayType ::= Name Dims"); } //$NON-NLS-1$ |
| 5364 |
consumeNameArrayType(); |
5923 |
consumeNameArrayType(); |
| 5365 |
break; |
5924 |
break; |
| 5366 |
|
5925 |
|
| 5367 |
case 55 : if (DEBUG) { System.out.println("ArrayType ::= ArrayTypeWithTypeArgumentsName Dims"); } //$NON-NLS-1$ |
5926 |
case 68 : if (DEBUG) { System.out.println("ArrayType ::= ArrayTypeWithTypeArgumentsName Dims"); } //$NON-NLS-1$ |
| 5368 |
consumeGenericTypeNameArrayType(); |
5927 |
consumeGenericTypeNameArrayType(); |
| 5369 |
break; |
5928 |
break; |
| 5370 |
|
5929 |
|
| 5371 |
case 56 : if (DEBUG) { System.out.println("ArrayType ::= GenericType Dims"); } //$NON-NLS-1$ |
5930 |
case 69 : if (DEBUG) { System.out.println("ArrayType ::= GenericType Dims"); } //$NON-NLS-1$ |
| 5372 |
consumeGenericTypeArrayType(); |
5931 |
consumeGenericTypeArrayType(); |
| 5373 |
break; |
5932 |
break; |
| 5374 |
|
5933 |
|
| 5375 |
case 61 : if (DEBUG) { System.out.println("QualifiedName ::= Name DOT SimpleName"); } //$NON-NLS-1$ |
5934 |
case 74 : if (DEBUG) { System.out.println("QualifiedName ::= Name DOT SimpleName"); } //$NON-NLS-1$ |
| 5376 |
consumeQualifiedName(); |
5935 |
consumeQualifiedName(); |
| 5377 |
break; |
5936 |
break; |
| 5378 |
|
5937 |
|
| 5379 |
case 62 : if (DEBUG) { System.out.println("CompilationUnit ::= EnterCompilationUnit..."); } //$NON-NLS-1$ |
5938 |
case 75 : if (DEBUG) { System.out.println("CompilationUnit ::= EnterCompilationUnit..."); } //$NON-NLS-1$ |
| 5380 |
consumeCompilationUnit(); |
5939 |
consumeCompilationUnit(); |
| 5381 |
break; |
5940 |
break; |
| 5382 |
|
5941 |
|
| 5383 |
case 63 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= PackageDeclaration"); } //$NON-NLS-1$ |
5942 |
case 76 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= PackageDeclaration"); } //$NON-NLS-1$ |
| 5384 |
consumeInternalCompilationUnit(); |
5943 |
consumeInternalCompilationUnit(); |
| 5385 |
break; |
5944 |
break; |
| 5386 |
|
5945 |
|
| 5387 |
case 64 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= PackageDeclaration..."); } //$NON-NLS-1$ |
5946 |
case 77 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= PackageDeclaration..."); } //$NON-NLS-1$ |
| 5388 |
consumeInternalCompilationUnit(); |
5947 |
consumeInternalCompilationUnit(); |
| 5389 |
break; |
5948 |
break; |
| 5390 |
|
5949 |
|
| 5391 |
case 65 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= PackageDeclaration..."); } //$NON-NLS-1$ |
5950 |
case 78 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= PackageDeclaration..."); } //$NON-NLS-1$ |
| 5392 |
consumeInternalCompilationUnitWithTypes(); |
5951 |
consumeInternalCompilationUnitWithTypes(); |
| 5393 |
break; |
5952 |
break; |
| 5394 |
|
5953 |
|
| 5395 |
case 66 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= PackageDeclaration..."); } //$NON-NLS-1$ |
5954 |
case 79 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= PackageDeclaration..."); } //$NON-NLS-1$ |
| 5396 |
consumeInternalCompilationUnitWithTypes(); |
5955 |
consumeInternalCompilationUnitWithTypes(); |
| 5397 |
break; |
5956 |
break; |
| 5398 |
|
5957 |
|
| 5399 |
case 67 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= ImportDeclarations..."); } //$NON-NLS-1$ |
5958 |
case 80 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= ImportDeclarations..."); } //$NON-NLS-1$ |
| 5400 |
consumeInternalCompilationUnit(); |
5959 |
consumeInternalCompilationUnit(); |
| 5401 |
break; |
5960 |
break; |
| 5402 |
|
5961 |
|
| 5403 |
case 68 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= TypeDeclarations"); } //$NON-NLS-1$ |
5962 |
case 81 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= TypeDeclarations"); } //$NON-NLS-1$ |
| 5404 |
consumeInternalCompilationUnitWithTypes(); |
5963 |
consumeInternalCompilationUnitWithTypes(); |
| 5405 |
break; |
5964 |
break; |
| 5406 |
|
5965 |
|
| 5407 |
case 69 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= ImportDeclarations..."); } //$NON-NLS-1$ |
5966 |
case 82 : if (DEBUG) { System.out.println("InternalCompilationUnit ::= ImportDeclarations..."); } //$NON-NLS-1$ |
| 5408 |
consumeInternalCompilationUnitWithTypes(); |
5967 |
consumeInternalCompilationUnitWithTypes(); |
| 5409 |
break; |
5968 |
break; |
| 5410 |
|
5969 |
|
| 5411 |
case 70 : if (DEBUG) { System.out.println("InternalCompilationUnit ::="); } //$NON-NLS-1$ |
5970 |
case 83 : if (DEBUG) { System.out.println("InternalCompilationUnit ::="); } //$NON-NLS-1$ |
| 5412 |
consumeEmptyInternalCompilationUnit(); |
5971 |
consumeEmptyInternalCompilationUnit(); |
| 5413 |
break; |
5972 |
break; |
| 5414 |
|
5973 |
|
| 5415 |
case 71 : if (DEBUG) { System.out.println("ReduceImports ::="); } //$NON-NLS-1$ |
5974 |
case 84 : if (DEBUG) { System.out.println("ReduceImports ::="); } //$NON-NLS-1$ |
| 5416 |
consumeReduceImports(); |
5975 |
consumeReduceImports(); |
| 5417 |
break; |
5976 |
break; |
| 5418 |
|
5977 |
|
| 5419 |
case 72 : if (DEBUG) { System.out.println("EnterCompilationUnit ::="); } //$NON-NLS-1$ |
5978 |
case 85 : if (DEBUG) { System.out.println("EnterCompilationUnit ::="); } //$NON-NLS-1$ |
| 5420 |
consumeEnterCompilationUnit(); |
5979 |
consumeEnterCompilationUnit(); |
| 5421 |
break; |
5980 |
break; |
| 5422 |
|
5981 |
|
| 5423 |
case 88 : if (DEBUG) { System.out.println("CatchHeader ::= catch LPAREN CatchFormalParameter RPAREN"); } //$NON-NLS-1$ |
5982 |
case 104 : if (DEBUG) { System.out.println("CatchHeader ::= catch LPAREN CatchFormalParameter RPAREN"); } //$NON-NLS-1$ |
| 5424 |
consumeCatchHeader(); |
5983 |
consumeCatchHeader(); |
| 5425 |
break; |
5984 |
break; |
| 5426 |
|
5985 |
|
| 5427 |
case 90 : if (DEBUG) { System.out.println("ImportDeclarations ::= ImportDeclarations..."); } //$NON-NLS-1$ |
5986 |
case 106 : if (DEBUG) { System.out.println("ImportDeclarations ::= ImportDeclarations..."); } //$NON-NLS-1$ |
| 5428 |
consumeImportDeclarations(); |
5987 |
consumeImportDeclarations(); |
| 5429 |
break; |
5988 |
break; |
| 5430 |
|
5989 |
|
| 5431 |
case 92 : if (DEBUG) { System.out.println("TypeDeclarations ::= TypeDeclarations TypeDeclaration"); } //$NON-NLS-1$ |
5990 |
case 108 : if (DEBUG) { System.out.println("TypeDeclarations ::= TypeDeclarations TypeDeclaration"); } //$NON-NLS-1$ |
| 5432 |
consumeTypeDeclarations(); |
5991 |
consumeTypeDeclarations(); |
| 5433 |
break; |
5992 |
break; |
| 5434 |
|
5993 |
|
| 5435 |
case 93 : if (DEBUG) { System.out.println("PackageDeclaration ::= PackageDeclarationName SEMICOLON"); } //$NON-NLS-1$ |
5994 |
case 109 : if (DEBUG) { System.out.println("PackageDeclaration ::= PackageDeclarationName SEMICOLON"); } //$NON-NLS-1$ |
| 5436 |
consumePackageDeclaration(); |
5995 |
consumePackageDeclaration(); |
| 5437 |
break; |
5996 |
break; |
| 5438 |
|
5997 |
|
| 5439 |
case 94 : if (DEBUG) { System.out.println("PackageDeclarationName ::= Modifiers package..."); } //$NON-NLS-1$ |
5998 |
case 110 : if (DEBUG) { System.out.println("PackageDeclarationName ::= Modifiers package..."); } //$NON-NLS-1$ |
| 5440 |
consumePackageDeclarationNameWithModifiers(); |
5999 |
consumePackageDeclarationNameWithModifiers(); |
| 5441 |
break; |
6000 |
break; |
| 5442 |
|
6001 |
|
| 5443 |
case 95 : if (DEBUG) { System.out.println("PackageDeclarationName ::= PackageComment package Name"); } //$NON-NLS-1$ |
6002 |
case 111 : if (DEBUG) { System.out.println("PackageDeclarationName ::= PackageComment package Name"); } //$NON-NLS-1$ |
| 5444 |
consumePackageDeclarationName(); |
6003 |
consumePackageDeclarationName(); |
| 5445 |
break; |
6004 |
break; |
| 5446 |
|
6005 |
|
| 5447 |
case 96 : if (DEBUG) { System.out.println("PackageComment ::="); } //$NON-NLS-1$ |
6006 |
case 112 : if (DEBUG) { System.out.println("PackageComment ::="); } //$NON-NLS-1$ |
| 5448 |
consumePackageComment(); |
6007 |
consumePackageComment(); |
| 5449 |
break; |
6008 |
break; |
| 5450 |
|
6009 |
|
| 5451 |
case 101 : if (DEBUG) { System.out.println("SingleTypeImportDeclaration ::=..."); } //$NON-NLS-1$ |
6010 |
case 117 : if (DEBUG) { System.out.println("SingleTypeImportDeclaration ::=..."); } //$NON-NLS-1$ |
| 5452 |
consumeImportDeclaration(); |
6011 |
consumeImportDeclaration(); |
| 5453 |
break; |
6012 |
break; |
| 5454 |
|
6013 |
|
| 5455 |
case 102 : if (DEBUG) { System.out.println("SingleTypeImportDeclarationName ::= import Name"); } //$NON-NLS-1$ |
6014 |
case 118 : if (DEBUG) { System.out.println("SingleTypeImportDeclarationName ::= import Name"); } //$NON-NLS-1$ |
| 5456 |
consumeSingleTypeImportDeclarationName(); |
6015 |
consumeSingleTypeImportDeclarationName(); |
| 5457 |
break; |
6016 |
break; |
| 5458 |
|
6017 |
|
| 5459 |
case 103 : if (DEBUG) { System.out.println("TypeImportOnDemandDeclaration ::=..."); } //$NON-NLS-1$ |
6018 |
case 119 : if (DEBUG) { System.out.println("TypeImportOnDemandDeclaration ::=..."); } //$NON-NLS-1$ |
| 5460 |
consumeImportDeclaration(); |
6019 |
consumeImportDeclaration(); |
| 5461 |
break; |
6020 |
break; |
| 5462 |
|
6021 |
|
| 5463 |
case 104 : if (DEBUG) { System.out.println("TypeImportOnDemandDeclarationName ::= import Name DOT..."); } //$NON-NLS-1$ |
6022 |
case 120 : if (DEBUG) { System.out.println("TypeImportOnDemandDeclarationName ::= import Name DOT..."); } //$NON-NLS-1$ |
| 5464 |
consumeTypeImportOnDemandDeclarationName(); |
6023 |
consumeTypeImportOnDemandDeclarationName(); |
| 5465 |
break; |
6024 |
break; |
| 5466 |
|
6025 |
|
| 5467 |
case 107 : if (DEBUG) { System.out.println("TypeDeclaration ::= SEMICOLON"); } //$NON-NLS-1$ |
6026 |
case 123 : if (DEBUG) { System.out.println("TypeDeclaration ::= SEMICOLON"); } //$NON-NLS-1$ |
| 5468 |
consumeEmptyTypeDeclaration(); |
6027 |
consumeEmptyTypeDeclaration(); |
| 5469 |
break; |
6028 |
break; |
| 5470 |
|
6029 |
|
| 5471 |
case 111 : if (DEBUG) { System.out.println("Modifiers ::= Modifiers Modifier"); } //$NON-NLS-1$ |
6030 |
case 127 : if (DEBUG) { System.out.println("Modifiers ::= Modifiers Modifier"); } //$NON-NLS-1$ |
| 5472 |
consumeModifiers2(); |
6031 |
consumeModifiers2(); |
| 5473 |
break; |
6032 |
break; |
| 5474 |
|
6033 |
|
| 5475 |
case 123 : if (DEBUG) { System.out.println("Modifier ::= Annotation"); } //$NON-NLS-1$ |
6034 |
case 139 : if (DEBUG) { System.out.println("Modifier ::= Annotation"); } //$NON-NLS-1$ |
| 5476 |
consumeAnnotationAsModifier(); |
6035 |
consumeAnnotationAsModifier(); |
| 5477 |
break; |
6036 |
break; |
| 5478 |
|
6037 |
|
| 5479 |
case 124 : if (DEBUG) { System.out.println("ClassDeclaration ::= ClassHeader ClassBody"); } //$NON-NLS-1$ |
6038 |
case 140 : if (DEBUG) { System.out.println("ClassDeclaration ::= ClassHeader ClassBody"); } //$NON-NLS-1$ |
| 5480 |
consumeClassDeclaration(); |
6039 |
consumeClassDeclaration(); |
| 5481 |
break; |
6040 |
break; |
| 5482 |
|
6041 |
|
| 5483 |
case 125 : if (DEBUG) { System.out.println("ClassHeader ::= ClassHeaderName ClassHeaderExtendsopt..."); } //$NON-NLS-1$ |
6042 |
case 141 : if (DEBUG) { System.out.println("ClassHeader ::= ClassHeaderName ClassHeaderExtendsopt..."); } //$NON-NLS-1$ |
| 5484 |
consumeClassHeader(); |
6043 |
consumeClassHeader(); |
| 5485 |
break; |
6044 |
break; |
| 5486 |
|
6045 |
|
| 5487 |
case 126 : if (DEBUG) { System.out.println("ClassHeaderName ::= ClassHeaderName1 TypeParameters"); } //$NON-NLS-1$ |
6046 |
case 142 : if (DEBUG) { System.out.println("ClassHeaderName ::= ClassHeaderName1 TypeParameters"); } //$NON-NLS-1$ |
| 5488 |
consumeTypeHeaderNameWithTypeParameters(); |
6047 |
consumeTypeHeaderNameWithTypeParameters(); |
| 5489 |
break; |
6048 |
break; |
| 5490 |
|
6049 |
|
| 5491 |
case 128 : if (DEBUG) { System.out.println("ClassHeaderName1 ::= Modifiersopt class Identifier"); } //$NON-NLS-1$ |
6050 |
case 144 : if (DEBUG) { System.out.println("ClassHeaderName1 ::= Modifiersopt class Identifier"); } //$NON-NLS-1$ |
| 5492 |
consumeClassHeaderName1(); |
6051 |
consumeClassHeaderName1(); |
| 5493 |
break; |
6052 |
break; |
| 5494 |
|
6053 |
|
| 5495 |
case 129 : if (DEBUG) { System.out.println("ClassHeaderExtends ::= extends ClassType"); } //$NON-NLS-1$ |
6054 |
case 145 : if (DEBUG) { System.out.println("ClassHeaderExtends ::= extends ClassType"); } //$NON-NLS-1$ |
| 5496 |
consumeClassHeaderExtends(); |
6055 |
consumeClassHeaderExtends(); |
| 5497 |
break; |
6056 |
break; |
| 5498 |
|
6057 |
|
| 5499 |
case 130 : if (DEBUG) { System.out.println("ClassHeaderImplements ::= implements InterfaceTypeList"); } //$NON-NLS-1$ |
6058 |
case 146 : if (DEBUG) { System.out.println("ClassHeaderImplements ::= implements InterfaceTypeList"); } //$NON-NLS-1$ |
| 5500 |
consumeClassHeaderImplements(); |
6059 |
consumeClassHeaderImplements(); |
| 5501 |
break; |
6060 |
break; |
| 5502 |
|
6061 |
|
| 5503 |
case 132 : if (DEBUG) { System.out.println("InterfaceTypeList ::= InterfaceTypeList COMMA..."); } //$NON-NLS-1$ |
6062 |
case 148 : if (DEBUG) { System.out.println("InterfaceTypeList ::= InterfaceTypeList COMMA..."); } //$NON-NLS-1$ |
| 5504 |
consumeInterfaceTypeList(); |
6063 |
consumeInterfaceTypeList(); |
| 5505 |
break; |
6064 |
break; |
| 5506 |
|
6065 |
|
| 5507 |
case 133 : if (DEBUG) { System.out.println("InterfaceType ::= ClassOrInterfaceType"); } //$NON-NLS-1$ |
6066 |
case 149 : if (DEBUG) { System.out.println("InterfaceType ::= ClassOrInterfaceType"); } //$NON-NLS-1$ |
| 5508 |
consumeInterfaceType(); |
6067 |
consumeInterfaceType(); |
| 5509 |
break; |
6068 |
break; |
| 5510 |
|
6069 |
|
| 5511 |
case 136 : if (DEBUG) { System.out.println("ClassBodyDeclarations ::= ClassBodyDeclarations..."); } //$NON-NLS-1$ |
6070 |
case 152 : if (DEBUG) { System.out.println("ClassBodyDeclarations ::= ClassBodyDeclarations..."); } //$NON-NLS-1$ |
| 5512 |
consumeClassBodyDeclarations(); |
6071 |
consumeClassBodyDeclarations(); |
| 5513 |
break; |
6072 |
break; |
| 5514 |
|
6073 |
|
| 5515 |
case 140 : if (DEBUG) { System.out.println("ClassBodyDeclaration ::= Diet NestedMethod..."); } //$NON-NLS-1$ |
6074 |
case 156 : if (DEBUG) { System.out.println("ClassBodyDeclaration ::= Diet NestedMethod..."); } //$NON-NLS-1$ |
| 5516 |
consumeClassBodyDeclaration(); |
6075 |
consumeClassBodyDeclaration(); |
| 5517 |
break; |
6076 |
break; |
| 5518 |
|
6077 |
|
| 5519 |
case 141 : if (DEBUG) { System.out.println("Diet ::="); } //$NON-NLS-1$ |
6078 |
case 157 : if (DEBUG) { System.out.println("Diet ::="); } //$NON-NLS-1$ |
| 5520 |
consumeDiet(); |
6079 |
consumeDiet(); |
| 5521 |
break; |
6080 |
break; |
| 5522 |
|
6081 |
|
| 5523 |
case 142 : if (DEBUG) { System.out.println("Initializer ::= Diet NestedMethod CreateInitializer..."); } //$NON-NLS-1$ |
6082 |
case 158 : if (DEBUG) { System.out.println("Initializer ::= Diet NestedMethod CreateInitializer..."); } //$NON-NLS-1$ |
| 5524 |
consumeClassBodyDeclaration(); |
6083 |
consumeClassBodyDeclaration(); |
| 5525 |
break; |
6084 |
break; |
| 5526 |
|
6085 |
|
| 5527 |
case 143 : if (DEBUG) { System.out.println("CreateInitializer ::="); } //$NON-NLS-1$ |
6086 |
case 159 : if (DEBUG) { System.out.println("CreateInitializer ::="); } //$NON-NLS-1$ |
| 5528 |
consumeCreateInitializer(); |
6087 |
consumeCreateInitializer(); |
| 5529 |
break; |
6088 |
break; |
| 5530 |
|
6089 |
|
| 5531 |
case 150 : if (DEBUG) { System.out.println("ClassMemberDeclaration ::= SEMICOLON"); } //$NON-NLS-1$ |
6090 |
case 166 : if (DEBUG) { System.out.println("ClassMemberDeclaration ::= SEMICOLON"); } //$NON-NLS-1$ |
| 5532 |
consumeEmptyTypeDeclaration(); |
6091 |
consumeEmptyTypeDeclaration(); |
| 5533 |
break; |
6092 |
break; |
| 5534 |
|
6093 |
|
| 5535 |
case 153 : if (DEBUG) { System.out.println("FieldDeclaration ::= Modifiersopt Type..."); } //$NON-NLS-1$ |
6094 |
case 169 : if (DEBUG) { System.out.println("FieldDeclaration ::= Modifiersopt Type0..."); } //$NON-NLS-1$ |
| 5536 |
consumeFieldDeclaration(); |
6095 |
consumeFieldDeclaration(); |
| 5537 |
break; |
6096 |
break; |
| 5538 |
|
6097 |
|
| 5539 |
case 155 : if (DEBUG) { System.out.println("VariableDeclarators ::= VariableDeclarators COMMA..."); } //$NON-NLS-1$ |
6098 |
case 171 : if (DEBUG) { System.out.println("VariableDeclarators ::= VariableDeclarators COMMA..."); } //$NON-NLS-1$ |
| 5540 |
consumeVariableDeclarators(); |
6099 |
consumeVariableDeclarators(); |
| 5541 |
break; |
6100 |
break; |
| 5542 |
|
6101 |
|
| 5543 |
case 158 : if (DEBUG) { System.out.println("EnterVariable ::="); } //$NON-NLS-1$ |
6102 |
case 174 : if (DEBUG) { System.out.println("EnterVariable ::="); } //$NON-NLS-1$ |
| 5544 |
consumeEnterVariable(); |
6103 |
consumeEnterVariable(); |
| 5545 |
break; |
6104 |
break; |
| 5546 |
|
6105 |
|
| 5547 |
case 159 : if (DEBUG) { System.out.println("ExitVariableWithInitialization ::="); } //$NON-NLS-1$ |
6106 |
case 175 : if (DEBUG) { System.out.println("ExitVariableWithInitialization ::="); } //$NON-NLS-1$ |
| 5548 |
consumeExitVariableWithInitialization(); |
6107 |
consumeExitVariableWithInitialization(); |
| 5549 |
break; |
6108 |
break; |
| 5550 |
|
6109 |
|
| 5551 |
case 160 : if (DEBUG) { System.out.println("ExitVariableWithoutInitialization ::="); } //$NON-NLS-1$ |
6110 |
case 176 : if (DEBUG) { System.out.println("ExitVariableWithoutInitialization ::="); } //$NON-NLS-1$ |
| 5552 |
consumeExitVariableWithoutInitialization(); |
6111 |
consumeExitVariableWithoutInitialization(); |
| 5553 |
break; |
6112 |
break; |
| 5554 |
|
6113 |
|
| 5555 |
case 161 : if (DEBUG) { System.out.println("ForceNoDiet ::="); } //$NON-NLS-1$ |
6114 |
case 177 : if (DEBUG) { System.out.println("ForceNoDiet ::="); } //$NON-NLS-1$ |
| 5556 |
consumeForceNoDiet(); |
6115 |
consumeForceNoDiet(); |
| 5557 |
break; |
6116 |
break; |
| 5558 |
|
6117 |
|
| 5559 |
case 162 : if (DEBUG) { System.out.println("RestoreDiet ::="); } //$NON-NLS-1$ |
6118 |
case 178 : if (DEBUG) { System.out.println("RestoreDiet ::="); } //$NON-NLS-1$ |
| 5560 |
consumeRestoreDiet(); |
6119 |
consumeRestoreDiet(); |
| 5561 |
break; |
6120 |
break; |
| 5562 |
|
6121 |
|
| 5563 |
case 167 : if (DEBUG) { System.out.println("MethodDeclaration ::= MethodHeader MethodBody"); } //$NON-NLS-1$ |
6122 |
case 179 : if (DEBUG) { System.out.println("VariableDeclaratorIdOrThis ::= this"); } //$NON-NLS-1$ |
|
|
6123 |
consumeExplicitThisParameter(); |
| 6124 |
break; |
| 6125 |
|
| 6126 |
case 185 : if (DEBUG) { System.out.println("MethodDeclaration ::= MethodHeader MethodBody"); } //$NON-NLS-1$ |
| 5564 |
// set to true to consume a method with a body |
6127 |
// set to true to consume a method with a body |
| 5565 |
consumeMethodDeclaration(true); |
6128 |
consumeMethodDeclaration(true); |
| 5566 |
break; |
6129 |
break; |
| 5567 |
|
6130 |
|
| 5568 |
case 168 : if (DEBUG) { System.out.println("AbstractMethodDeclaration ::= MethodHeader SEMICOLON"); } //$NON-NLS-1$ |
6131 |
case 186 : if (DEBUG) { System.out.println("AbstractMethodDeclaration ::= MethodHeader SEMICOLON"); } //$NON-NLS-1$ |
| 5569 |
// set to false to consume a method without body |
6132 |
// set to false to consume a method without body |
| 5570 |
consumeMethodDeclaration(false); |
6133 |
consumeMethodDeclaration(false); |
| 5571 |
break; |
6134 |
break; |
| 5572 |
|
6135 |
|
| 5573 |
case 169 : if (DEBUG) { System.out.println("MethodHeader ::= MethodHeaderName FormalParameterListopt"); } //$NON-NLS-1$ |
6136 |
case 187 : if (DEBUG) { System.out.println("MethodHeader ::= MethodHeaderName FormalParameterListopt"); } //$NON-NLS-1$ |
| 5574 |
consumeMethodHeader(); |
6137 |
consumeMethodHeader(); |
| 5575 |
break; |
6138 |
break; |
| 5576 |
|
6139 |
|
| 5577 |
case 170 : if (DEBUG) { System.out.println("MethodHeaderName ::= Modifiersopt TypeParameters Type..."); } //$NON-NLS-1$ |
6140 |
case 188 : if (DEBUG) { System.out.println("MethodHeaderName ::= Modifiersopt TypeParameters Type..."); } //$NON-NLS-1$ |
| 5578 |
consumeMethodHeaderNameWithTypeParameters(false); |
6141 |
consumeMethodHeaderNameWithTypeParameters(false); |
| 5579 |
break; |
6142 |
break; |
| 5580 |
|
6143 |
|
| 5581 |
case 171 : if (DEBUG) { System.out.println("MethodHeaderName ::= Modifiersopt Type Identifier LPAREN"); } //$NON-NLS-1$ |
6144 |
case 189 : if (DEBUG) { System.out.println("MethodHeaderName ::= Modifiersopt Type0 Identifier..."); } //$NON-NLS-1$ |
| 5582 |
consumeMethodHeaderName(false); |
6145 |
consumeMethodHeaderName(false); |
| 5583 |
break; |
6146 |
break; |
| 5584 |
|
6147 |
|
| 5585 |
case 172 : if (DEBUG) { System.out.println("MethodHeaderRightParen ::= RPAREN"); } //$NON-NLS-1$ |
6148 |
case 190 : if (DEBUG) { System.out.println("MethodHeaderRightParen ::= RPAREN"); } //$NON-NLS-1$ |
| 5586 |
consumeMethodHeaderRightParen(); |
6149 |
consumeMethodHeaderRightParen(); |
| 5587 |
break; |
6150 |
break; |
| 5588 |
|
6151 |
|
| 5589 |
case 173 : if (DEBUG) { System.out.println("MethodHeaderExtendedDims ::= Dimsopt"); } //$NON-NLS-1$ |
6152 |
case 191 : if (DEBUG) { System.out.println("MethodHeaderExtendedDims ::= Dimsopt"); } //$NON-NLS-1$ |
| 5590 |
consumeMethodHeaderExtendedDims(); |
6153 |
consumeMethodHeaderExtendedDims(); |
| 5591 |
break; |
6154 |
break; |
| 5592 |
|
6155 |
|
| 5593 |
case 174 : if (DEBUG) { System.out.println("MethodHeaderThrowsClause ::= throws ClassTypeList"); } //$NON-NLS-1$ |
6156 |
case 192 : if (DEBUG) { System.out.println("MethodHeaderThrowsClause ::= throws ClassTypeList"); } //$NON-NLS-1$ |
| 5594 |
consumeMethodHeaderThrowsClause(); |
6157 |
consumeMethodHeaderThrowsClause(); |
| 5595 |
break; |
6158 |
break; |
| 5596 |
|
6159 |
|
| 5597 |
case 175 : if (DEBUG) { System.out.println("ConstructorHeader ::= ConstructorHeaderName..."); } //$NON-NLS-1$ |
6160 |
case 193 : if (DEBUG) { System.out.println("ConstructorHeader ::= ConstructorHeaderName..."); } //$NON-NLS-1$ |
| 5598 |
consumeConstructorHeader(); |
6161 |
consumeConstructorHeader(); |
| 5599 |
break; |
6162 |
break; |
| 5600 |
|
6163 |
|
| 5601 |
case 176 : if (DEBUG) { System.out.println("ConstructorHeaderName ::= Modifiersopt TypeParameters..."); } //$NON-NLS-1$ |
6164 |
case 194 : if (DEBUG) { System.out.println("ConstructorHeaderName ::= Modifiersopt TypeParameters..."); } //$NON-NLS-1$ |
| 5602 |
consumeConstructorHeaderNameWithTypeParameters(); |
6165 |
consumeConstructorHeaderNameWithTypeParameters(); |
| 5603 |
break; |
6166 |
break; |
| 5604 |
|
6167 |
|
| 5605 |
case 177 : if (DEBUG) { System.out.println("ConstructorHeaderName ::= Modifiersopt Identifier LPAREN"); } //$NON-NLS-1$ |
6168 |
case 195 : if (DEBUG) { System.out.println("ConstructorHeaderName ::= Modifiersopt Identifier LPAREN"); } //$NON-NLS-1$ |
| 5606 |
consumeConstructorHeaderName(); |
6169 |
consumeConstructorHeaderName(); |
| 5607 |
break; |
6170 |
break; |
| 5608 |
|
6171 |
|
| 5609 |
case 179 : if (DEBUG) { System.out.println("FormalParameterList ::= FormalParameterList COMMA..."); } //$NON-NLS-1$ |
6172 |
case 197 : if (DEBUG) { System.out.println("FormalParameterList ::= FormalParameterList COMMA..."); } //$NON-NLS-1$ |
| 5610 |
consumeFormalParameterList(); |
6173 |
consumeFormalParameterList(); |
| 5611 |
break; |
6174 |
break; |
| 5612 |
|
6175 |
|
| 5613 |
case 180 : if (DEBUG) { System.out.println("FormalParameter ::= Modifiersopt Type..."); } //$NON-NLS-1$ |
6176 |
case 198 : if (DEBUG) { System.out.println("PotentialNameArray ::="); } //$NON-NLS-1$ |
|
|
6177 |
consumePotentialNameArrayType(); |
| 6178 |
break; |
| 6179 |
|
| 6180 |
case 199 : if (DEBUG) { System.out.println("FormalParameter ::= Modifiersopt PrimitiveType..."); } //$NON-NLS-1$ |
| 5614 |
consumeFormalParameter(false); |
6181 |
consumeFormalParameter(false); |
| 5615 |
break; |
6182 |
break; |
| 5616 |
|
6183 |
|
| 5617 |
case 181 : if (DEBUG) { System.out.println("FormalParameter ::= Modifiersopt Type ELLIPSIS..."); } //$NON-NLS-1$ |
6184 |
case 200 : if (DEBUG) { System.out.println("FormalParameter ::= Modifiersopt PrimitiveType..."); } //$NON-NLS-1$ |
| 5618 |
consumeFormalParameter(true); |
6185 |
consumeFormalParameter(true); |
| 5619 |
break; |
6186 |
break; |
| 5620 |
|
6187 |
|
| 5621 |
case 182 : if (DEBUG) { System.out.println("CatchFormalParameter ::= Modifiersopt CatchType..."); } //$NON-NLS-1$ |
6188 |
case 201 : if (DEBUG) { System.out.println("FormalParameter ::= Modifiersopt Name DimsoptAnnotsopt"); } //$NON-NLS-1$ |
|
|
6189 |
consumeFormalParameter(false); |
| 6190 |
break; |
| 6191 |
|
| 6192 |
case 202 : if (DEBUG) { System.out.println("FormalParameter ::= Modifiersopt Name DimsoptAnnotsopt"); } //$NON-NLS-1$ |
| 6193 |
consumeFormalParameter(true); |
| 6194 |
break; |
| 6195 |
|
| 6196 |
case 203 : if (DEBUG) { System.out.println("FormalParameter ::= Modifiersopt GenericType..."); } //$NON-NLS-1$ |
| 6197 |
consumeFormalParameter(false); |
| 6198 |
break; |
| 6199 |
|
| 6200 |
case 204 : if (DEBUG) { System.out.println("FormalParameter ::= Modifiersopt GenericType..."); } //$NON-NLS-1$ |
| 6201 |
consumeFormalParameter(true); |
| 6202 |
break; |
| 6203 |
|
| 6204 |
case 205 : if (DEBUG) { System.out.println("FormalParameter ::= Modifiersopt GenericTypeDotName..."); } //$NON-NLS-1$ |
| 6205 |
consumeFormalParameter(false); |
| 6206 |
break; |
| 6207 |
|
| 6208 |
case 206 : if (DEBUG) { System.out.println("FormalParameter ::= Modifiersopt GenericTypeDotName..."); } //$NON-NLS-1$ |
| 6209 |
consumeFormalParameter(true); |
| 6210 |
break; |
| 6211 |
|
| 6212 |
case 207 : if (DEBUG) { System.out.println("CatchFormalParameter ::= Modifiersopt CatchType..."); } //$NON-NLS-1$ |
| 5622 |
consumeCatchFormalParameter(); |
6213 |
consumeCatchFormalParameter(); |
| 5623 |
break; |
6214 |
break; |
| 5624 |
|
6215 |
|
| 5625 |
case 183 : if (DEBUG) { System.out.println("CatchType ::= UnionType"); } //$NON-NLS-1$ |
6216 |
case 208 : if (DEBUG) { System.out.println("CatchType ::= UnionType"); } //$NON-NLS-1$ |
| 5626 |
consumeCatchType(); |
6217 |
consumeCatchType(); |
| 5627 |
break; |
6218 |
break; |
| 5628 |
|
6219 |
|
| 5629 |
case 184 : if (DEBUG) { System.out.println("UnionType ::= Type"); } //$NON-NLS-1$ |
6220 |
case 209 : if (DEBUG) { System.out.println("UnionType ::= TypeInternal"); } //$NON-NLS-1$ |
| 5630 |
consumeUnionTypeAsClassType(); |
6221 |
consumeUnionTypeAsClassType(); |
| 5631 |
break; |
6222 |
break; |
| 5632 |
|
6223 |
|
| 5633 |
case 185 : if (DEBUG) { System.out.println("UnionType ::= UnionType OR Type"); } //$NON-NLS-1$ |
6224 |
case 210 : if (DEBUG) { System.out.println("UnionType ::= UnionType OR Type"); } //$NON-NLS-1$ |
| 5634 |
consumeUnionType(); |
6225 |
consumeUnionType(); |
| 5635 |
break; |
6226 |
break; |
| 5636 |
|
6227 |
|
| 5637 |
case 187 : if (DEBUG) { System.out.println("ClassTypeList ::= ClassTypeList COMMA ClassTypeElt"); } //$NON-NLS-1$ |
6228 |
case 212 : if (DEBUG) { System.out.println("ClassTypeList ::= ClassTypeList COMMA ClassTypeElt"); } //$NON-NLS-1$ |
| 5638 |
consumeClassTypeList(); |
6229 |
consumeClassTypeList(); |
| 5639 |
break; |
6230 |
break; |
| 5640 |
|
6231 |
|
| 5641 |
case 188 : if (DEBUG) { System.out.println("ClassTypeElt ::= ClassType"); } //$NON-NLS-1$ |
6232 |
case 213 : if (DEBUG) { System.out.println("ClassTypeElt ::= ClassType"); } //$NON-NLS-1$ |
| 5642 |
consumeClassTypeElt(); |
6233 |
consumeClassTypeElt(); |
| 5643 |
break; |
6234 |
break; |
| 5644 |
|
6235 |
|
| 5645 |
case 189 : if (DEBUG) { System.out.println("MethodBody ::= NestedMethod LBRACE BlockStatementsopt..."); } //$NON-NLS-1$ |
6236 |
case 214 : if (DEBUG) { System.out.println("MethodBody ::= NestedMethod LBRACE BlockStatementsopt..."); } //$NON-NLS-1$ |
| 5646 |
consumeMethodBody(); |
6237 |
consumeMethodBody(); |
| 5647 |
break; |
6238 |
break; |
| 5648 |
|
6239 |
|
| 5649 |
case 190 : if (DEBUG) { System.out.println("NestedMethod ::="); } //$NON-NLS-1$ |
6240 |
case 215 : if (DEBUG) { System.out.println("NestedMethod ::="); } //$NON-NLS-1$ |
| 5650 |
consumeNestedMethod(); |
6241 |
consumeNestedMethod(); |
| 5651 |
break; |
6242 |
break; |
| 5652 |
|
6243 |
|
| 5653 |
case 191 : if (DEBUG) { System.out.println("StaticInitializer ::= StaticOnly Block"); } //$NON-NLS-1$ |
6244 |
case 216 : if (DEBUG) { System.out.println("StaticInitializer ::= StaticOnly Block"); } //$NON-NLS-1$ |
| 5654 |
consumeStaticInitializer(); |
6245 |
consumeStaticInitializer(); |
| 5655 |
break; |
6246 |
break; |
| 5656 |
|
6247 |
|
| 5657 |
case 192 : if (DEBUG) { System.out.println("StaticOnly ::= static"); } //$NON-NLS-1$ |
6248 |
case 217 : if (DEBUG) { System.out.println("StaticOnly ::= static"); } //$NON-NLS-1$ |
| 5658 |
consumeStaticOnly(); |
6249 |
consumeStaticOnly(); |
| 5659 |
break; |
6250 |
break; |
| 5660 |
|
6251 |
|
| 5661 |
case 193 : if (DEBUG) { System.out.println("ConstructorDeclaration ::= ConstructorHeader MethodBody"); } //$NON-NLS-1$ |
6252 |
case 218 : if (DEBUG) { System.out.println("ConstructorDeclaration ::= ConstructorHeader MethodBody"); } //$NON-NLS-1$ |
| 5662 |
consumeConstructorDeclaration() ; |
6253 |
consumeConstructorDeclaration() ; |
| 5663 |
break; |
6254 |
break; |
| 5664 |
|
6255 |
|
| 5665 |
case 194 : if (DEBUG) { System.out.println("ConstructorDeclaration ::= ConstructorHeader SEMICOLON"); } //$NON-NLS-1$ |
6256 |
case 219 : if (DEBUG) { System.out.println("ConstructorDeclaration ::= ConstructorHeader SEMICOLON"); } //$NON-NLS-1$ |
| 5666 |
consumeInvalidConstructorDeclaration() ; |
6257 |
consumeInvalidConstructorDeclaration() ; |
| 5667 |
break; |
6258 |
break; |
| 5668 |
|
6259 |
|
| 5669 |
case 195 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= this LPAREN..."); } //$NON-NLS-1$ |
6260 |
case 220 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= this LPAREN..."); } //$NON-NLS-1$ |
| 5670 |
consumeExplicitConstructorInvocation(0, THIS_CALL); |
6261 |
consumeExplicitConstructorInvocation(0, THIS_CALL); |
| 5671 |
break; |
6262 |
break; |
| 5672 |
|
6263 |
|
| 5673 |
case 196 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= OnlyTypeArguments this"); } //$NON-NLS-1$ |
6264 |
case 221 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= OnlyTypeArguments this"); } //$NON-NLS-1$ |
| 5674 |
consumeExplicitConstructorInvocationWithTypeArguments(0,THIS_CALL); |
6265 |
consumeExplicitConstructorInvocationWithTypeArguments(0,THIS_CALL); |
| 5675 |
break; |
6266 |
break; |
| 5676 |
|
6267 |
|
| 5677 |
case 197 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= super LPAREN..."); } //$NON-NLS-1$ |
6268 |
case 222 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= super LPAREN..."); } //$NON-NLS-1$ |
| 5678 |
consumeExplicitConstructorInvocation(0,SUPER_CALL); |
6269 |
consumeExplicitConstructorInvocation(0,SUPER_CALL); |
| 5679 |
break; |
6270 |
break; |
| 5680 |
|
6271 |
|
| 5681 |
case 198 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= OnlyTypeArguments..."); } //$NON-NLS-1$ |
6272 |
case 223 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= OnlyTypeArguments..."); } //$NON-NLS-1$ |
| 5682 |
consumeExplicitConstructorInvocationWithTypeArguments(0,SUPER_CALL); |
6273 |
consumeExplicitConstructorInvocationWithTypeArguments(0,SUPER_CALL); |
| 5683 |
break; |
6274 |
break; |
| 5684 |
|
6275 |
|
| 5685 |
case 199 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Primary DOT super..."); } //$NON-NLS-1$ |
6276 |
case 224 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Primary DOT super..."); } //$NON-NLS-1$ |
| 5686 |
consumeExplicitConstructorInvocation(1, SUPER_CALL); |
6277 |
consumeExplicitConstructorInvocation(1, SUPER_CALL); |
| 5687 |
break; |
6278 |
break; |
| 5688 |
|
6279 |
|
| 5689 |
case 200 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Primary DOT..."); } //$NON-NLS-1$ |
6280 |
case 225 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Primary DOT..."); } //$NON-NLS-1$ |
| 5690 |
consumeExplicitConstructorInvocationWithTypeArguments(1, SUPER_CALL); |
6281 |
consumeExplicitConstructorInvocationWithTypeArguments(1, SUPER_CALL); |
| 5691 |
break; |
6282 |
break; |
| 5692 |
|
6283 |
|
| 5693 |
case 201 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Name DOT super LPAREN"); } //$NON-NLS-1$ |
6284 |
case 226 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Name DOT super LPAREN"); } //$NON-NLS-1$ |
| 5694 |
consumeExplicitConstructorInvocation(2, SUPER_CALL); |
6285 |
consumeExplicitConstructorInvocation(2, SUPER_CALL); |
| 5695 |
break; |
6286 |
break; |
| 5696 |
|
6287 |
|
| 5697 |
case 202 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Name DOT..."); } //$NON-NLS-1$ |
6288 |
case 227 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Name DOT..."); } //$NON-NLS-1$ |
| 5698 |
consumeExplicitConstructorInvocationWithTypeArguments(2, SUPER_CALL); |
6289 |
consumeExplicitConstructorInvocationWithTypeArguments(2, SUPER_CALL); |
| 5699 |
break; |
6290 |
break; |
| 5700 |
|
6291 |
|
| 5701 |
case 203 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Primary DOT this..."); } //$NON-NLS-1$ |
6292 |
case 228 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Primary DOT this..."); } //$NON-NLS-1$ |
| 5702 |
consumeExplicitConstructorInvocation(1, THIS_CALL); |
6293 |
consumeExplicitConstructorInvocation(1, THIS_CALL); |
| 5703 |
break; |
6294 |
break; |
| 5704 |
|
6295 |
|
| 5705 |
case 204 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Primary DOT..."); } //$NON-NLS-1$ |
6296 |
case 229 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Primary DOT..."); } //$NON-NLS-1$ |
| 5706 |
consumeExplicitConstructorInvocationWithTypeArguments(1, THIS_CALL); |
6297 |
consumeExplicitConstructorInvocationWithTypeArguments(1, THIS_CALL); |
| 5707 |
break; |
6298 |
break; |
| 5708 |
|
6299 |
|
| 5709 |
case 205 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Name DOT this LPAREN"); } //$NON-NLS-1$ |
6300 |
case 230 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Name DOT this LPAREN"); } //$NON-NLS-1$ |
| 5710 |
consumeExplicitConstructorInvocation(2, THIS_CALL); |
6301 |
consumeExplicitConstructorInvocation(2, THIS_CALL); |
| 5711 |
break; |
6302 |
break; |
| 5712 |
|
6303 |
|
| 5713 |
case 206 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Name DOT..."); } //$NON-NLS-1$ |
6304 |
case 231 : if (DEBUG) { System.out.println("ExplicitConstructorInvocation ::= Name DOT..."); } //$NON-NLS-1$ |
| 5714 |
consumeExplicitConstructorInvocationWithTypeArguments(2, THIS_CALL); |
6305 |
consumeExplicitConstructorInvocationWithTypeArguments(2, THIS_CALL); |
| 5715 |
break; |
6306 |
break; |
| 5716 |
|
6307 |
|
| 5717 |
case 207 : if (DEBUG) { System.out.println("InterfaceDeclaration ::= InterfaceHeader InterfaceBody"); } //$NON-NLS-1$ |
6308 |
case 232 : if (DEBUG) { System.out.println("InterfaceDeclaration ::= InterfaceHeader InterfaceBody"); } //$NON-NLS-1$ |
| 5718 |
consumeInterfaceDeclaration(); |
6309 |
consumeInterfaceDeclaration(); |
| 5719 |
break; |
6310 |
break; |
| 5720 |
|
6311 |
|
| 5721 |
case 208 : if (DEBUG) { System.out.println("InterfaceHeader ::= InterfaceHeaderName..."); } //$NON-NLS-1$ |
6312 |
case 233 : if (DEBUG) { System.out.println("InterfaceHeader ::= InterfaceHeaderName..."); } //$NON-NLS-1$ |
| 5722 |
consumeInterfaceHeader(); |
6313 |
consumeInterfaceHeader(); |
| 5723 |
break; |
6314 |
break; |
| 5724 |
|
6315 |
|
| 5725 |
case 209 : if (DEBUG) { System.out.println("InterfaceHeaderName ::= InterfaceHeaderName1..."); } //$NON-NLS-1$ |
6316 |
case 234 : if (DEBUG) { System.out.println("InterfaceHeaderName ::= InterfaceHeaderName1..."); } //$NON-NLS-1$ |
| 5726 |
consumeTypeHeaderNameWithTypeParameters(); |
6317 |
consumeTypeHeaderNameWithTypeParameters(); |
| 5727 |
break; |
6318 |
break; |
| 5728 |
|
6319 |
|
| 5729 |
case 211 : if (DEBUG) { System.out.println("InterfaceHeaderName1 ::= Modifiersopt interface..."); } //$NON-NLS-1$ |
6320 |
case 236 : if (DEBUG) { System.out.println("InterfaceHeaderName1 ::= Modifiersopt interface..."); } //$NON-NLS-1$ |
| 5730 |
consumeInterfaceHeaderName1(); |
6321 |
consumeInterfaceHeaderName1(); |
| 5731 |
break; |
6322 |
break; |
| 5732 |
|
6323 |
|
| 5733 |
case 212 : if (DEBUG) { System.out.println("InterfaceHeaderExtends ::= extends InterfaceTypeList"); } //$NON-NLS-1$ |
6324 |
case 237 : if (DEBUG) { System.out.println("InterfaceHeaderExtends ::= extends InterfaceTypeList"); } //$NON-NLS-1$ |
| 5734 |
consumeInterfaceHeaderExtends(); |
6325 |
consumeInterfaceHeaderExtends(); |
| 5735 |
break; |
6326 |
break; |
| 5736 |
|
6327 |
|
| 5737 |
case 215 : if (DEBUG) { System.out.println("InterfaceMemberDeclarations ::=..."); } //$NON-NLS-1$ |
6328 |
case 240 : if (DEBUG) { System.out.println("InterfaceMemberDeclarations ::=..."); } //$NON-NLS-1$ |
| 5738 |
consumeInterfaceMemberDeclarations(); |
6329 |
consumeInterfaceMemberDeclarations(); |
| 5739 |
break; |
6330 |
break; |
| 5740 |
|
6331 |
|
| 5741 |
case 216 : if (DEBUG) { System.out.println("InterfaceMemberDeclaration ::= SEMICOLON"); } //$NON-NLS-1$ |
6332 |
case 241 : if (DEBUG) { System.out.println("InterfaceMemberDeclaration ::= SEMICOLON"); } //$NON-NLS-1$ |
| 5742 |
consumeEmptyTypeDeclaration(); |
6333 |
consumeEmptyTypeDeclaration(); |
| 5743 |
break; |
6334 |
break; |
| 5744 |
|
6335 |
|
| 5745 |
case 217 : if (DEBUG) { System.out.println("PushDefault ::="); } //$NON-NLS-1$ |
6336 |
case 242 : if (DEBUG) { System.out.println("PushDefault ::="); } //$NON-NLS-1$ |
| 5746 |
consumeInterfaceMethodDefault(); |
6337 |
consumeInterfaceMethodDefault(); |
| 5747 |
break; |
6338 |
break; |
| 5748 |
|
6339 |
|
| 5749 |
case 219 : if (DEBUG) { System.out.println("InterfaceMemberDeclaration ::= MethodHeader default..."); } //$NON-NLS-1$ |
6340 |
case 244 : if (DEBUG) { System.out.println("InterfaceMemberDeclaration ::= MethodHeader default..."); } //$NON-NLS-1$ |
| 5750 |
consumeInterfaceMethodDeclaration(true); |
6341 |
consumeInterfaceMethodDeclaration(true); |
| 5751 |
break; |
6342 |
break; |
| 5752 |
|
6343 |
|
| 5753 |
case 220 : if (DEBUG) { System.out.println("InterfaceMemberDeclaration ::= MethodHeader MethodBody"); } //$NON-NLS-1$ |
6344 |
case 245 : if (DEBUG) { System.out.println("InterfaceMemberDeclaration ::= MethodHeader MethodBody"); } //$NON-NLS-1$ |
| 5754 |
consumeInterfaceMethodDeclaration(false); |
6345 |
consumeInterfaceMethodDeclaration(false); |
| 5755 |
break; |
6346 |
break; |
| 5756 |
|
6347 |
|
| 5757 |
case 221 : if (DEBUG) { System.out.println("InvalidConstructorDeclaration ::= ConstructorHeader..."); } //$NON-NLS-1$ |
6348 |
case 246 : if (DEBUG) { System.out.println("InvalidConstructorDeclaration ::= ConstructorHeader..."); } //$NON-NLS-1$ |
| 5758 |
consumeInvalidConstructorDeclaration(true); |
6349 |
consumeInvalidConstructorDeclaration(true); |
| 5759 |
break; |
6350 |
break; |
| 5760 |
|
6351 |
|
| 5761 |
case 222 : if (DEBUG) { System.out.println("InvalidConstructorDeclaration ::= ConstructorHeader..."); } //$NON-NLS-1$ |
6352 |
case 247 : if (DEBUG) { System.out.println("InvalidConstructorDeclaration ::= ConstructorHeader..."); } //$NON-NLS-1$ |
| 5762 |
consumeInvalidConstructorDeclaration(false); |
6353 |
consumeInvalidConstructorDeclaration(false); |
| 5763 |
break; |
6354 |
break; |
| 5764 |
|
6355 |
|
| 5765 |
case 233 : if (DEBUG) { System.out.println("PushLeftBrace ::="); } //$NON-NLS-1$ |
6356 |
case 258 : if (DEBUG) { System.out.println("PushLeftBrace ::="); } //$NON-NLS-1$ |
| 5766 |
consumePushLeftBrace(); |
6357 |
consumePushLeftBrace(); |
| 5767 |
break; |
6358 |
break; |
| 5768 |
|
6359 |
|
| 5769 |
case 234 : if (DEBUG) { System.out.println("ArrayInitializer ::= LBRACE PushLeftBrace ,opt RBRACE"); } //$NON-NLS-1$ |
6360 |
case 259 : if (DEBUG) { System.out.println("ArrayInitializer ::= LBRACE PushLeftBrace ,opt RBRACE"); } //$NON-NLS-1$ |
| 5770 |
consumeEmptyArrayInitializer(); |
6361 |
consumeEmptyArrayInitializer(); |
| 5771 |
break; |
6362 |
break; |
| 5772 |
|
6363 |
|
| 5773 |
case 235 : if (DEBUG) { System.out.println("ArrayInitializer ::= LBRACE PushLeftBrace..."); } //$NON-NLS-1$ |
6364 |
case 260 : if (DEBUG) { System.out.println("ArrayInitializer ::= LBRACE PushLeftBrace..."); } //$NON-NLS-1$ |
| 5774 |
consumeArrayInitializer(); |
6365 |
consumeArrayInitializer(); |
| 5775 |
break; |
6366 |
break; |
| 5776 |
|
6367 |
|
| 5777 |
case 236 : if (DEBUG) { System.out.println("ArrayInitializer ::= LBRACE PushLeftBrace..."); } //$NON-NLS-1$ |
6368 |
case 261 : if (DEBUG) { System.out.println("ArrayInitializer ::= LBRACE PushLeftBrace..."); } //$NON-NLS-1$ |
| 5778 |
consumeArrayInitializer(); |
6369 |
consumeArrayInitializer(); |
| 5779 |
break; |
6370 |
break; |
| 5780 |
|
6371 |
|
| 5781 |
case 238 : if (DEBUG) { System.out.println("VariableInitializers ::= VariableInitializers COMMA..."); } //$NON-NLS-1$ |
6372 |
case 263 : if (DEBUG) { System.out.println("VariableInitializers ::= VariableInitializers COMMA..."); } //$NON-NLS-1$ |
| 5782 |
consumeVariableInitializers(); |
6373 |
consumeVariableInitializers(); |
| 5783 |
break; |
6374 |
break; |
| 5784 |
|
6375 |
|
| 5785 |
case 239 : if (DEBUG) { System.out.println("Block ::= OpenBlock LBRACE BlockStatementsopt RBRACE"); } //$NON-NLS-1$ |
6376 |
case 264 : if (DEBUG) { System.out.println("Block ::= OpenBlock LBRACE BlockStatementsopt RBRACE"); } //$NON-NLS-1$ |
| 5786 |
consumeBlock(); |
6377 |
consumeBlock(); |
| 5787 |
break; |
6378 |
break; |
| 5788 |
|
6379 |
|
| 5789 |
case 240 : if (DEBUG) { System.out.println("OpenBlock ::="); } //$NON-NLS-1$ |
6380 |
case 265 : if (DEBUG) { System.out.println("OpenBlock ::="); } //$NON-NLS-1$ |
| 5790 |
consumeOpenBlock() ; |
6381 |
consumeOpenBlock() ; |
| 5791 |
break; |
6382 |
break; |
| 5792 |
|
6383 |
|
| 5793 |
case 242 : if (DEBUG) { System.out.println("BlockStatements ::= BlockStatements BlockStatement"); } //$NON-NLS-1$ |
6384 |
case 267 : if (DEBUG) { System.out.println("BlockStatements ::= BlockStatements BlockStatement"); } //$NON-NLS-1$ |
| 5794 |
consumeBlockStatements() ; |
6385 |
consumeBlockStatements() ; |
| 5795 |
break; |
6386 |
break; |
| 5796 |
|
6387 |
|
| 5797 |
case 246 : if (DEBUG) { System.out.println("BlockStatement ::= InterfaceDeclaration"); } //$NON-NLS-1$ |
6388 |
case 271 : if (DEBUG) { System.out.println("BlockStatement ::= InterfaceDeclaration"); } //$NON-NLS-1$ |
| 5798 |
consumeInvalidInterfaceDeclaration(); |
6389 |
consumeInvalidInterfaceDeclaration(); |
| 5799 |
break; |
6390 |
break; |
| 5800 |
|
6391 |
|
| 5801 |
case 247 : if (DEBUG) { System.out.println("BlockStatement ::= AnnotationTypeDeclaration"); } //$NON-NLS-1$ |
6392 |
case 272 : if (DEBUG) { System.out.println("BlockStatement ::= AnnotationTypeDeclaration"); } //$NON-NLS-1$ |
| 5802 |
consumeInvalidAnnotationTypeDeclaration(); |
6393 |
consumeInvalidAnnotationTypeDeclaration(); |
| 5803 |
break; |
6394 |
break; |
| 5804 |
|
6395 |
|
| 5805 |
case 248 : if (DEBUG) { System.out.println("BlockStatement ::= EnumDeclaration"); } //$NON-NLS-1$ |
6396 |
case 273 : if (DEBUG) { System.out.println("BlockStatement ::= EnumDeclaration"); } //$NON-NLS-1$ |
| 5806 |
consumeInvalidEnumDeclaration(); |
6397 |
consumeInvalidEnumDeclaration(); |
| 5807 |
break; |
6398 |
break; |
| 5808 |
|
6399 |
|
| 5809 |
case 249 : if (DEBUG) { System.out.println("LocalVariableDeclarationStatement ::=..."); } //$NON-NLS-1$ |
6400 |
case 274 : if (DEBUG) { System.out.println("LocalVariableDeclarationStatement ::=..."); } //$NON-NLS-1$ |
| 5810 |
consumeLocalVariableDeclarationStatement(); |
6401 |
consumeLocalVariableDeclarationStatement(); |
| 5811 |
break; |
6402 |
break; |
| 5812 |
|
6403 |
|
| 5813 |
case 250 : if (DEBUG) { System.out.println("LocalVariableDeclaration ::= Type PushModifiers..."); } //$NON-NLS-1$ |
6404 |
case 275 : if (DEBUG) { System.out.println("LocalVariableDeclaration ::= Type0 PushModifiers..."); } //$NON-NLS-1$ |
| 5814 |
consumeLocalVariableDeclaration(); |
6405 |
consumeLocalVariableDeclaration(); |
| 5815 |
break; |
6406 |
break; |
| 5816 |
|
6407 |
|
| 5817 |
case 251 : if (DEBUG) { System.out.println("LocalVariableDeclaration ::= Modifiers Type..."); } //$NON-NLS-1$ |
6408 |
case 276 : if (DEBUG) { System.out.println("LocalVariableDeclaration ::= Modifiers Type0..."); } //$NON-NLS-1$ |
| 5818 |
consumeLocalVariableDeclaration(); |
6409 |
consumeLocalVariableDeclaration(); |
| 5819 |
break; |
6410 |
break; |
| 5820 |
|
6411 |
|
| 5821 |
case 252 : if (DEBUG) { System.out.println("PushModifiers ::="); } //$NON-NLS-1$ |
6412 |
case 277 : if (DEBUG) { System.out.println("PushModifiers ::="); } //$NON-NLS-1$ |
| 5822 |
consumePushModifiers(); |
6413 |
consumePushModifiers(); |
| 5823 |
break; |
6414 |
break; |
| 5824 |
|
6415 |
|
| 5825 |
case 253 : if (DEBUG) { System.out.println("PushModifiersForHeader ::="); } //$NON-NLS-1$ |
6416 |
case 278 : if (DEBUG) { System.out.println("PushModifiersForHeader ::="); } //$NON-NLS-1$ |
| 5826 |
consumePushModifiersForHeader(); |
6417 |
consumePushModifiersForHeader(); |
| 5827 |
break; |
6418 |
break; |
| 5828 |
|
6419 |
|
| 5829 |
case 254 : if (DEBUG) { System.out.println("PushRealModifiers ::="); } //$NON-NLS-1$ |
6420 |
case 279 : if (DEBUG) { System.out.println("PushRealModifiers ::="); } //$NON-NLS-1$ |
| 5830 |
consumePushRealModifiers(); |
6421 |
consumePushRealModifiers(); |
| 5831 |
break; |
6422 |
break; |
| 5832 |
|
6423 |
|
| 5833 |
case 281 : if (DEBUG) { System.out.println("EmptyStatement ::= SEMICOLON"); } //$NON-NLS-1$ |
6424 |
case 306 : if (DEBUG) { System.out.println("EmptyStatement ::= SEMICOLON"); } //$NON-NLS-1$ |
| 5834 |
consumeEmptyStatement(); |
6425 |
consumeEmptyStatement(); |
| 5835 |
break; |
6426 |
break; |
| 5836 |
|
6427 |
|
| 5837 |
case 282 : if (DEBUG) { System.out.println("LabeledStatement ::= Label COLON Statement"); } //$NON-NLS-1$ |
6428 |
case 307 : if (DEBUG) { System.out.println("LabeledStatement ::= Label COLON Statement"); } //$NON-NLS-1$ |
| 5838 |
consumeStatementLabel() ; |
6429 |
consumeStatementLabel() ; |
| 5839 |
break; |
6430 |
break; |
| 5840 |
|
6431 |
|
| 5841 |
case 283 : if (DEBUG) { System.out.println("LabeledStatementNoShortIf ::= Label COLON..."); } //$NON-NLS-1$ |
6432 |
case 308 : if (DEBUG) { System.out.println("LabeledStatementNoShortIf ::= Label COLON..."); } //$NON-NLS-1$ |
| 5842 |
consumeStatementLabel() ; |
6433 |
consumeStatementLabel() ; |
| 5843 |
break; |
6434 |
break; |
| 5844 |
|
6435 |
|
| 5845 |
case 284 : if (DEBUG) { System.out.println("Label ::= Identifier"); } //$NON-NLS-1$ |
6436 |
case 309 : if (DEBUG) { System.out.println("Label ::= Identifier"); } //$NON-NLS-1$ |
| 5846 |
consumeLabel() ; |
6437 |
consumeLabel(); |
| 5847 |
break; |
6438 |
break; |
| 5848 |
|
6439 |
|
| 5849 |
case 285 : if (DEBUG) { System.out.println("ExpressionStatement ::= StatementExpression SEMICOLON"); } //$NON-NLS-1$ |
6440 |
case 310 : if (DEBUG) { System.out.println("ExpressionStatement ::= StatementExpression SEMICOLON"); } //$NON-NLS-1$ |
| 5850 |
consumeExpressionStatement(); |
6441 |
consumeExpressionStatement(); |
| 5851 |
break; |
6442 |
break; |
| 5852 |
|
6443 |
|
| 5853 |
case 294 : if (DEBUG) { System.out.println("IfThenStatement ::= if LPAREN Expression RPAREN..."); } //$NON-NLS-1$ |
6444 |
case 319 : if (DEBUG) { System.out.println("IfThenStatement ::= if LPAREN Expression RPAREN..."); } //$NON-NLS-1$ |
| 5854 |
consumeStatementIfNoElse(); |
6445 |
consumeStatementIfNoElse(); |
| 5855 |
break; |
6446 |
break; |
| 5856 |
|
6447 |
|
| 5857 |
case 295 : if (DEBUG) { System.out.println("IfThenElseStatement ::= if LPAREN Expression RPAREN..."); } //$NON-NLS-1$ |
6448 |
case 320 : if (DEBUG) { System.out.println("IfThenElseStatement ::= if LPAREN Expression RPAREN..."); } //$NON-NLS-1$ |
| 5858 |
consumeStatementIfWithElse(); |
6449 |
consumeStatementIfWithElse(); |
| 5859 |
break; |
6450 |
break; |
| 5860 |
|
6451 |
|
| 5861 |
case 296 : if (DEBUG) { System.out.println("IfThenElseStatementNoShortIf ::= if LPAREN Expression..."); } //$NON-NLS-1$ |
6452 |
case 321 : if (DEBUG) { System.out.println("IfThenElseStatementNoShortIf ::= if LPAREN Expression..."); } //$NON-NLS-1$ |
| 5862 |
consumeStatementIfWithElse(); |
6453 |
consumeStatementIfWithElse(); |
| 5863 |
break; |
6454 |
break; |
| 5864 |
|
6455 |
|
| 5865 |
case 297 : if (DEBUG) { System.out.println("SwitchStatement ::= switch LPAREN Expression RPAREN..."); } //$NON-NLS-1$ |
6456 |
case 322 : if (DEBUG) { System.out.println("SwitchStatement ::= switch LPAREN Expression RPAREN..."); } //$NON-NLS-1$ |
| 5866 |
consumeStatementSwitch() ; |
6457 |
consumeStatementSwitch() ; |
| 5867 |
break; |
6458 |
break; |
| 5868 |
|
6459 |
|
| 5869 |
case 298 : if (DEBUG) { System.out.println("SwitchBlock ::= LBRACE RBRACE"); } //$NON-NLS-1$ |
6460 |
case 323 : if (DEBUG) { System.out.println("SwitchBlock ::= LBRACE RBRACE"); } //$NON-NLS-1$ |
| 5870 |
consumeEmptySwitchBlock() ; |
6461 |
consumeEmptySwitchBlock() ; |
| 5871 |
break; |
6462 |
break; |
| 5872 |
|
6463 |
|
| 5873 |
case 301 : if (DEBUG) { System.out.println("SwitchBlock ::= LBRACE SwitchBlockStatements..."); } //$NON-NLS-1$ |
6464 |
case 326 : if (DEBUG) { System.out.println("SwitchBlock ::= LBRACE SwitchBlockStatements..."); } //$NON-NLS-1$ |
| 5874 |
consumeSwitchBlock() ; |
6465 |
consumeSwitchBlock() ; |
| 5875 |
break; |
6466 |
break; |
| 5876 |
|
6467 |
|
| 5877 |
case 303 : if (DEBUG) { System.out.println("SwitchBlockStatements ::= SwitchBlockStatements..."); } //$NON-NLS-1$ |
6468 |
case 328 : if (DEBUG) { System.out.println("SwitchBlockStatements ::= SwitchBlockStatements..."); } //$NON-NLS-1$ |
| 5878 |
consumeSwitchBlockStatements() ; |
6469 |
consumeSwitchBlockStatements() ; |
| 5879 |
break; |
6470 |
break; |
| 5880 |
|
6471 |
|
| 5881 |
case 304 : if (DEBUG) { System.out.println("SwitchBlockStatement ::= SwitchLabels BlockStatements"); } //$NON-NLS-1$ |
6472 |
case 329 : if (DEBUG) { System.out.println("SwitchBlockStatement ::= SwitchLabels BlockStatements"); } //$NON-NLS-1$ |
| 5882 |
consumeSwitchBlockStatement() ; |
6473 |
consumeSwitchBlockStatement() ; |
| 5883 |
break; |
6474 |
break; |
| 5884 |
|
6475 |
|
| 5885 |
case 306 : if (DEBUG) { System.out.println("SwitchLabels ::= SwitchLabels SwitchLabel"); } //$NON-NLS-1$ |
6476 |
case 331 : if (DEBUG) { System.out.println("SwitchLabels ::= SwitchLabels SwitchLabel"); } //$NON-NLS-1$ |
| 5886 |
consumeSwitchLabels() ; |
6477 |
consumeSwitchLabels() ; |
| 5887 |
break; |
6478 |
break; |
| 5888 |
|
6479 |
|
| 5889 |
case 307 : if (DEBUG) { System.out.println("SwitchLabel ::= case ConstantExpression COLON"); } //$NON-NLS-1$ |
6480 |
case 332 : if (DEBUG) { System.out.println("SwitchLabel ::= case ConstantExpression COLON"); } //$NON-NLS-1$ |
| 5890 |
consumeCaseLabel(); |
6481 |
consumeCaseLabel(); |
| 5891 |
break; |
6482 |
break; |
| 5892 |
|
6483 |
|
| 5893 |
case 308 : if (DEBUG) { System.out.println("SwitchLabel ::= default COLON"); } //$NON-NLS-1$ |
6484 |
case 333 : if (DEBUG) { System.out.println("SwitchLabel ::= default COLON"); } //$NON-NLS-1$ |
| 5894 |
consumeDefaultLabel(); |
6485 |
consumeDefaultLabel(); |
| 5895 |
break; |
6486 |
break; |
| 5896 |
|
6487 |
|
| 5897 |
case 309 : if (DEBUG) { System.out.println("WhileStatement ::= while LPAREN Expression RPAREN..."); } //$NON-NLS-1$ |
6488 |
case 334 : if (DEBUG) { System.out.println("WhileStatement ::= while LPAREN Expression RPAREN..."); } //$NON-NLS-1$ |
| 5898 |
consumeStatementWhile() ; |
6489 |
consumeStatementWhile() ; |
| 5899 |
break; |
6490 |
break; |
| 5900 |
|
6491 |
|
| 5901 |
case 310 : if (DEBUG) { System.out.println("WhileStatementNoShortIf ::= while LPAREN Expression..."); } //$NON-NLS-1$ |
6492 |
case 335 : if (DEBUG) { System.out.println("WhileStatementNoShortIf ::= while LPAREN Expression..."); } //$NON-NLS-1$ |
| 5902 |
consumeStatementWhile() ; |
6493 |
consumeStatementWhile() ; |
| 5903 |
break; |
6494 |
break; |
| 5904 |
|
6495 |
|
| 5905 |
case 311 : if (DEBUG) { System.out.println("DoStatement ::= do Statement while LPAREN Expression..."); } //$NON-NLS-1$ |
6496 |
case 336 : if (DEBUG) { System.out.println("DoStatement ::= do Statement while LPAREN Expression..."); } //$NON-NLS-1$ |
| 5906 |
consumeStatementDo() ; |
6497 |
consumeStatementDo() ; |
| 5907 |
break; |
6498 |
break; |
| 5908 |
|
6499 |
|
| 5909 |
case 312 : if (DEBUG) { System.out.println("ForStatement ::= for LPAREN ForInitopt SEMICOLON..."); } //$NON-NLS-1$ |
6500 |
case 337 : if (DEBUG) { System.out.println("ForStatement ::= for LPAREN ForInitopt SEMICOLON..."); } //$NON-NLS-1$ |
| 5910 |
consumeStatementFor() ; |
6501 |
consumeStatementFor() ; |
| 5911 |
break; |
6502 |
break; |
| 5912 |
|
6503 |
|
| 5913 |
case 313 : if (DEBUG) { System.out.println("ForStatementNoShortIf ::= for LPAREN ForInitopt..."); } //$NON-NLS-1$ |
6504 |
case 338 : if (DEBUG) { System.out.println("ForStatementNoShortIf ::= for LPAREN ForInitopt..."); } //$NON-NLS-1$ |
| 5914 |
consumeStatementFor() ; |
6505 |
consumeStatementFor() ; |
| 5915 |
break; |
6506 |
break; |
| 5916 |
|
6507 |
|
| 5917 |
case 314 : if (DEBUG) { System.out.println("ForInit ::= StatementExpressionList"); } //$NON-NLS-1$ |
6508 |
case 339 : if (DEBUG) { System.out.println("ForInit ::= StatementExpressionList"); } //$NON-NLS-1$ |
| 5918 |
consumeForInit() ; |
6509 |
consumeForInit() ; |
| 5919 |
break; |
6510 |
break; |
| 5920 |
|
6511 |
|
| 5921 |
case 318 : if (DEBUG) { System.out.println("StatementExpressionList ::= StatementExpressionList..."); } //$NON-NLS-1$ |
6512 |
case 343 : if (DEBUG) { System.out.println("StatementExpressionList ::= StatementExpressionList..."); } //$NON-NLS-1$ |
| 5922 |
consumeStatementExpressionList() ; |
6513 |
consumeStatementExpressionList() ; |
| 5923 |
break; |
6514 |
break; |
| 5924 |
|
6515 |
|
| 5925 |
case 319 : if (DEBUG) { System.out.println("AssertStatement ::= assert Expression SEMICOLON"); } //$NON-NLS-1$ |
6516 |
case 344 : if (DEBUG) { System.out.println("AssertStatement ::= assert Expression SEMICOLON"); } //$NON-NLS-1$ |
| 5926 |
consumeSimpleAssertStatement() ; |
6517 |
consumeSimpleAssertStatement() ; |
| 5927 |
break; |
6518 |
break; |
| 5928 |
|
6519 |
|
| 5929 |
case 320 : if (DEBUG) { System.out.println("AssertStatement ::= assert Expression COLON Expression"); } //$NON-NLS-1$ |
6520 |
case 345 : if (DEBUG) { System.out.println("AssertStatement ::= assert Expression COLON Expression"); } //$NON-NLS-1$ |
| 5930 |
consumeAssertStatement() ; |
6521 |
consumeAssertStatement() ; |
| 5931 |
break; |
6522 |
break; |
| 5932 |
|
6523 |
|
| 5933 |
case 321 : if (DEBUG) { System.out.println("BreakStatement ::= break SEMICOLON"); } //$NON-NLS-1$ |
6524 |
case 346 : if (DEBUG) { System.out.println("BreakStatement ::= break SEMICOLON"); } //$NON-NLS-1$ |
| 5934 |
consumeStatementBreak() ; |
6525 |
consumeStatementBreak() ; |
| 5935 |
break; |
6526 |
break; |
| 5936 |
|
6527 |
|
| 5937 |
case 322 : if (DEBUG) { System.out.println("BreakStatement ::= break Identifier SEMICOLON"); } //$NON-NLS-1$ |
6528 |
case 347 : if (DEBUG) { System.out.println("BreakStatement ::= break Identifier SEMICOLON"); } //$NON-NLS-1$ |
| 5938 |
consumeStatementBreakWithLabel() ; |
6529 |
consumeStatementBreakWithLabel() ; |
| 5939 |
break; |
6530 |
break; |
| 5940 |
|
6531 |
|
| 5941 |
case 323 : if (DEBUG) { System.out.println("ContinueStatement ::= continue SEMICOLON"); } //$NON-NLS-1$ |
6532 |
case 348 : if (DEBUG) { System.out.println("ContinueStatement ::= continue SEMICOLON"); } //$NON-NLS-1$ |
| 5942 |
consumeStatementContinue() ; |
6533 |
consumeStatementContinue() ; |
| 5943 |
break; |
6534 |
break; |
| 5944 |
|
6535 |
|
| 5945 |
case 324 : if (DEBUG) { System.out.println("ContinueStatement ::= continue Identifier SEMICOLON"); } //$NON-NLS-1$ |
6536 |
case 349 : if (DEBUG) { System.out.println("ContinueStatement ::= continue Identifier SEMICOLON"); } //$NON-NLS-1$ |
| 5946 |
consumeStatementContinueWithLabel() ; |
6537 |
consumeStatementContinueWithLabel() ; |
| 5947 |
break; |
6538 |
break; |
| 5948 |
|
6539 |
|
| 5949 |
case 325 : if (DEBUG) { System.out.println("ReturnStatement ::= return Expressionopt SEMICOLON"); } //$NON-NLS-1$ |
6540 |
case 350 : if (DEBUG) { System.out.println("ReturnStatement ::= return Expressionopt SEMICOLON"); } //$NON-NLS-1$ |
| 5950 |
consumeStatementReturn() ; |
6541 |
consumeStatementReturn() ; |
| 5951 |
break; |
6542 |
break; |
| 5952 |
|
6543 |
|
| 5953 |
case 326 : if (DEBUG) { System.out.println("ThrowStatement ::= throw Expression SEMICOLON"); } //$NON-NLS-1$ |
6544 |
case 351 : if (DEBUG) { System.out.println("ThrowStatement ::= throw Expression SEMICOLON"); } //$NON-NLS-1$ |
| 5954 |
consumeStatementThrow(); |
6545 |
consumeStatementThrow(); |
| 5955 |
break; |
6546 |
break; |
| 5956 |
|
6547 |
|
| 5957 |
case 327 : if (DEBUG) { System.out.println("SynchronizedStatement ::= OnlySynchronized LPAREN..."); } //$NON-NLS-1$ |
6548 |
case 352 : if (DEBUG) { System.out.println("SynchronizedStatement ::= OnlySynchronized LPAREN..."); } //$NON-NLS-1$ |
| 5958 |
consumeStatementSynchronized(); |
6549 |
consumeStatementSynchronized(); |
| 5959 |
break; |
6550 |
break; |
| 5960 |
|
6551 |
|
| 5961 |
case 328 : if (DEBUG) { System.out.println("OnlySynchronized ::= synchronized"); } //$NON-NLS-1$ |
6552 |
case 353 : if (DEBUG) { System.out.println("OnlySynchronized ::= synchronized"); } //$NON-NLS-1$ |
| 5962 |
consumeOnlySynchronized(); |
6553 |
consumeOnlySynchronized(); |
| 5963 |
break; |
6554 |
break; |
| 5964 |
|
6555 |
|
| 5965 |
case 329 : if (DEBUG) { System.out.println("TryStatement ::= try TryBlock Catches"); } //$NON-NLS-1$ |
6556 |
case 354 : if (DEBUG) { System.out.println("TryStatement ::= try TryBlock Catches"); } //$NON-NLS-1$ |
| 5966 |
consumeStatementTry(false, false); |
6557 |
consumeStatementTry(false, false); |
| 5967 |
break; |
6558 |
break; |
| 5968 |
|
6559 |
|
| 5969 |
case 330 : if (DEBUG) { System.out.println("TryStatement ::= try TryBlock Catchesopt Finally"); } //$NON-NLS-1$ |
6560 |
case 355 : if (DEBUG) { System.out.println("TryStatement ::= try TryBlock Catchesopt Finally"); } //$NON-NLS-1$ |
| 5970 |
consumeStatementTry(true, false); |
6561 |
consumeStatementTry(true, false); |
| 5971 |
break; |
6562 |
break; |
| 5972 |
|
6563 |
|
| 5973 |
case 331 : if (DEBUG) { System.out.println("TryStatementWithResources ::= try ResourceSpecification"); } //$NON-NLS-1$ |
6564 |
case 356 : if (DEBUG) { System.out.println("TryStatementWithResources ::= try ResourceSpecification"); } //$NON-NLS-1$ |
| 5974 |
consumeStatementTry(false, true); |
6565 |
consumeStatementTry(false, true); |
| 5975 |
break; |
6566 |
break; |
| 5976 |
|
6567 |
|
| 5977 |
case 332 : if (DEBUG) { System.out.println("TryStatementWithResources ::= try ResourceSpecification"); } //$NON-NLS-1$ |
6568 |
case 357 : if (DEBUG) { System.out.println("TryStatementWithResources ::= try ResourceSpecification"); } //$NON-NLS-1$ |
| 5978 |
consumeStatementTry(true, true); |
6569 |
consumeStatementTry(true, true); |
| 5979 |
break; |
6570 |
break; |
| 5980 |
|
6571 |
|
| 5981 |
case 333 : if (DEBUG) { System.out.println("ResourceSpecification ::= LPAREN Resources ;opt RPAREN"); } //$NON-NLS-1$ |
6572 |
case 358 : if (DEBUG) { System.out.println("ResourceSpecification ::= LPAREN Resources ;opt RPAREN"); } //$NON-NLS-1$ |
| 5982 |
consumeResourceSpecification(); |
6573 |
consumeResourceSpecification(); |
| 5983 |
break; |
6574 |
break; |
| 5984 |
|
6575 |
|
| 5985 |
case 334 : if (DEBUG) { System.out.println(";opt ::="); } //$NON-NLS-1$ |
6576 |
case 359 : if (DEBUG) { System.out.println(";opt ::="); } //$NON-NLS-1$ |
| 5986 |
consumeResourceOptionalTrailingSemiColon(false); |
6577 |
consumeResourceOptionalTrailingSemiColon(false); |
| 5987 |
break; |
6578 |
break; |
| 5988 |
|
6579 |
|
| 5989 |
case 335 : if (DEBUG) { System.out.println(";opt ::= SEMICOLON"); } //$NON-NLS-1$ |
6580 |
case 360 : if (DEBUG) { System.out.println(";opt ::= SEMICOLON"); } //$NON-NLS-1$ |
| 5990 |
consumeResourceOptionalTrailingSemiColon(true); |
6581 |
consumeResourceOptionalTrailingSemiColon(true); |
| 5991 |
break; |
6582 |
break; |
| 5992 |
|
6583 |
|
| 5993 |
case 336 : if (DEBUG) { System.out.println("Resources ::= Resource"); } //$NON-NLS-1$ |
6584 |
case 361 : if (DEBUG) { System.out.println("Resources ::= Resource"); } //$NON-NLS-1$ |
| 5994 |
consumeSingleResource(); |
6585 |
consumeSingleResource(); |
| 5995 |
break; |
6586 |
break; |
| 5996 |
|
6587 |
|
| 5997 |
case 337 : if (DEBUG) { System.out.println("Resources ::= Resources TrailingSemiColon Resource"); } //$NON-NLS-1$ |
6588 |
case 362 : if (DEBUG) { System.out.println("Resources ::= Resources TrailingSemiColon Resource"); } //$NON-NLS-1$ |
| 5998 |
consumeMultipleResources(); |
6589 |
consumeMultipleResources(); |
| 5999 |
break; |
6590 |
break; |
| 6000 |
|
6591 |
|
| 6001 |
case 338 : if (DEBUG) { System.out.println("TrailingSemiColon ::= SEMICOLON"); } //$NON-NLS-1$ |
6592 |
case 363 : if (DEBUG) { System.out.println("TrailingSemiColon ::= SEMICOLON"); } //$NON-NLS-1$ |
| 6002 |
consumeResourceOptionalTrailingSemiColon(true); |
6593 |
consumeResourceOptionalTrailingSemiColon(true); |
| 6003 |
break; |
6594 |
break; |
| 6004 |
|
6595 |
|
| 6005 |
case 339 : if (DEBUG) { System.out.println("Resource ::= Type PushModifiers VariableDeclaratorId..."); } //$NON-NLS-1$ |
6596 |
case 364 : if (DEBUG) { System.out.println("Resource ::= TypeInternal PushModifiers..."); } //$NON-NLS-1$ |
| 6006 |
consumeResourceAsLocalVariableDeclaration(); |
6597 |
consumeResourceAsLocalVariableDeclaration(); |
| 6007 |
break; |
6598 |
break; |
| 6008 |
|
6599 |
|
| 6009 |
case 340 : if (DEBUG) { System.out.println("Resource ::= Modifiers Type PushRealModifiers..."); } //$NON-NLS-1$ |
6600 |
case 365 : if (DEBUG) { System.out.println("Resource ::= Modifiers TypeInternal PushRealModifiers..."); } //$NON-NLS-1$ |
| 6010 |
consumeResourceAsLocalVariableDeclaration(); |
6601 |
consumeResourceAsLocalVariableDeclaration(); |
| 6011 |
break; |
6602 |
break; |
| 6012 |
|
6603 |
|
| 6013 |
case 342 : if (DEBUG) { System.out.println("ExitTryBlock ::="); } //$NON-NLS-1$ |
6604 |
case 367 : if (DEBUG) { System.out.println("ExitTryBlock ::="); } //$NON-NLS-1$ |
| 6014 |
consumeExitTryBlock(); |
6605 |
consumeExitTryBlock(); |
| 6015 |
break; |
6606 |
break; |
| 6016 |
|
6607 |
|
| 6017 |
case 344 : if (DEBUG) { System.out.println("Catches ::= Catches CatchClause"); } //$NON-NLS-1$ |
6608 |
case 369 : if (DEBUG) { System.out.println("Catches ::= Catches CatchClause"); } //$NON-NLS-1$ |
| 6018 |
consumeCatches(); |
6609 |
consumeCatches(); |
| 6019 |
break; |
6610 |
break; |
| 6020 |
|
6611 |
|
| 6021 |
case 345 : if (DEBUG) { System.out.println("CatchClause ::= catch LPAREN CatchFormalParameter RPAREN"); } //$NON-NLS-1$ |
6612 |
case 370 : if (DEBUG) { System.out.println("CatchClause ::= catch LPAREN CatchFormalParameter RPAREN"); } //$NON-NLS-1$ |
| 6022 |
consumeStatementCatch() ; |
6613 |
consumeStatementCatch() ; |
| 6023 |
break; |
6614 |
break; |
| 6024 |
|
6615 |
|
| 6025 |
case 347 : if (DEBUG) { System.out.println("PushLPAREN ::= LPAREN"); } //$NON-NLS-1$ |
6616 |
case 372 : if (DEBUG) { System.out.println("PushLPAREN ::= LPAREN"); } //$NON-NLS-1$ |
| 6026 |
consumeLeftParen(); |
6617 |
consumeLeftParen(); |
| 6027 |
break; |
6618 |
break; |
| 6028 |
|
6619 |
|
| 6029 |
case 348 : if (DEBUG) { System.out.println("PushRPAREN ::= RPAREN"); } //$NON-NLS-1$ |
6620 |
case 373 : if (DEBUG) { System.out.println("PushRPARENForUnannotatedTypeCast ::= RPAREN"); } //$NON-NLS-1$ |
|
|
6621 |
consumeRightParenForUnannotatedTypeCast(); |
| 6622 |
break; |
| 6623 |
|
| 6624 |
case 374 : if (DEBUG) { System.out.println("PushRPARENForNameUnannotatedTypeCast ::= RPAREN"); } //$NON-NLS-1$ |
| 6625 |
consumeRightParenForNameUnannotatedTypeCast(); |
| 6626 |
break; |
| 6627 |
|
| 6628 |
case 375 : if (DEBUG) { System.out.println("PushRPAREN ::= RPAREN"); } //$NON-NLS-1$ |
| 6030 |
consumeRightParen(); |
6629 |
consumeRightParen(); |
| 6031 |
break; |
6630 |
break; |
| 6032 |
|
6631 |
|
| 6033 |
case 353 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= this"); } //$NON-NLS-1$ |
6632 |
case 376 : if (DEBUG) { System.out.println("PushRPARENForAnnotatedTypeCast ::= RPAREN"); } //$NON-NLS-1$ |
|
|
6633 |
consumeRightParenForAnnotatedTypeCast(); |
| 6634 |
break; |
| 6635 |
|
| 6636 |
case 377 : if (DEBUG) { System.out.println("PushRPARENForNameAndAnnotatedTypeCast ::= RPAREN"); } //$NON-NLS-1$ |
| 6637 |
consumeRightParenForNameAndAnnotatedTypeCast(); |
| 6638 |
break; |
| 6639 |
|
| 6640 |
case 382 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= this"); } //$NON-NLS-1$ |
| 6034 |
consumePrimaryNoNewArrayThis(); |
6641 |
consumePrimaryNoNewArrayThis(); |
| 6035 |
break; |
6642 |
break; |
| 6036 |
|
6643 |
|
| 6037 |
case 354 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= PushLPAREN Expression_NotName..."); } //$NON-NLS-1$ |
6644 |
case 383 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= PushLPAREN Expression_NotName..."); } //$NON-NLS-1$ |
| 6038 |
consumePrimaryNoNewArray(); |
6645 |
consumePrimaryNoNewArray(); |
| 6039 |
break; |
6646 |
break; |
| 6040 |
|
6647 |
|
| 6041 |
case 355 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= PushLPAREN Name PushRPAREN"); } //$NON-NLS-1$ |
6648 |
case 384 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= PushLPAREN Name PushRPAREN"); } //$NON-NLS-1$ |
| 6042 |
consumePrimaryNoNewArrayWithName(); |
6649 |
consumePrimaryNoNewArrayWithName(); |
| 6043 |
break; |
6650 |
break; |
| 6044 |
|
6651 |
|
| 6045 |
case 358 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= Name DOT this"); } //$NON-NLS-1$ |
6652 |
case 387 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= Name DOT this"); } //$NON-NLS-1$ |
| 6046 |
consumePrimaryNoNewArrayNameThis(); |
6653 |
consumePrimaryNoNewArrayNameThis(); |
| 6047 |
break; |
6654 |
break; |
| 6048 |
|
6655 |
|
| 6049 |
case 359 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= Name DOT super"); } //$NON-NLS-1$ |
6656 |
case 388 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= Name DOT super"); } //$NON-NLS-1$ |
| 6050 |
consumePrimaryNoNewArrayNameSuper(); |
6657 |
consumePrimaryNoNewArrayNameSuper(); |
| 6051 |
break; |
6658 |
break; |
| 6052 |
|
6659 |
|
| 6053 |
case 360 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= Name DOT class"); } //$NON-NLS-1$ |
6660 |
case 389 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= Name DOT class"); } //$NON-NLS-1$ |
| 6054 |
consumePrimaryNoNewArrayName(); |
6661 |
consumePrimaryNoNewArrayName(); |
| 6055 |
break; |
6662 |
break; |
| 6056 |
|
6663 |
|
| 6057 |
case 361 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= Name Dims DOT class"); } //$NON-NLS-1$ |
6664 |
case 390 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= Name Dims DOT class"); } //$NON-NLS-1$ |
| 6058 |
consumePrimaryNoNewArrayArrayType(); |
6665 |
consumePrimaryNoNewArrayArrayType(); |
| 6059 |
break; |
6666 |
break; |
| 6060 |
|
6667 |
|
| 6061 |
case 362 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= PrimitiveType Dims DOT class"); } //$NON-NLS-1$ |
6668 |
case 391 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= PrimitiveType Dims DOT class"); } //$NON-NLS-1$ |
| 6062 |
consumePrimaryNoNewArrayPrimitiveArrayType(); |
6669 |
consumePrimaryNoNewArrayPrimitiveArrayType(); |
| 6063 |
break; |
6670 |
break; |
| 6064 |
|
6671 |
|
| 6065 |
case 363 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= PrimitiveType DOT class"); } //$NON-NLS-1$ |
6672 |
case 392 : if (DEBUG) { System.out.println("PrimaryNoNewArray ::= PrimitiveType DOT class"); } //$NON-NLS-1$ |
| 6066 |
consumePrimaryNoNewArrayPrimitiveType(); |
6673 |
consumePrimaryNoNewArrayPrimitiveType(); |
| 6067 |
break; |
6674 |
break; |
| 6068 |
|
6675 |
|
| 6069 |
case 369 : if (DEBUG) { System.out.println("ReferenceExpression ::= Name COLON_COLON..."); } //$NON-NLS-1$ |
6676 |
case 398 : if (DEBUG) { System.out.println("ReferenceExpression ::= Name COLON_COLON..."); } //$NON-NLS-1$ |
| 6070 |
consumeReferenceExpressionNameForm(); |
6677 |
consumeReferenceExpressionNameForm(); |
| 6071 |
break; |
6678 |
break; |
| 6072 |
|
6679 |
|
| 6073 |
case 370 : if (DEBUG) { System.out.println("ReferenceExpression ::= Name..."); } //$NON-NLS-1$ |
6680 |
case 399 : if (DEBUG) { System.out.println("ReferenceExpression ::= Name..."); } //$NON-NLS-1$ |
| 6074 |
consumeReferenceExpressionTypeForm(false); |
6681 |
consumeReferenceExpressionTypeForm(false); |
| 6075 |
break; |
6682 |
break; |
| 6076 |
|
6683 |
|
| 6077 |
case 371 : if (DEBUG) { System.out.println("ReferenceExpression ::= Name..."); } //$NON-NLS-1$ |
6684 |
case 400 : if (DEBUG) { System.out.println("ReferenceExpression ::= Name..."); } //$NON-NLS-1$ |
| 6078 |
consumeReferenceExpressionTypeForm(true); |
6685 |
consumeReferenceExpressionTypeForm(true); |
| 6079 |
break; |
6686 |
break; |
| 6080 |
|
6687 |
|
| 6081 |
case 372 : if (DEBUG) { System.out.println("ReferenceExpression ::= Primary COLON_COLON..."); } //$NON-NLS-1$ |
6688 |
case 401 : if (DEBUG) { System.out.println("ReferenceExpression ::= Primary COLON_COLON..."); } //$NON-NLS-1$ |
| 6082 |
consumeReferenceExpressionPrimaryForm(); |
6689 |
consumeReferenceExpressionPrimaryForm(); |
| 6083 |
break; |
6690 |
break; |
| 6084 |
|
6691 |
|
| 6085 |
case 373 : if (DEBUG) { System.out.println("ReferenceExpression ::= super COLON_COLON..."); } //$NON-NLS-1$ |
6692 |
case 402 : if (DEBUG) { System.out.println("ReferenceExpression ::= super COLON_COLON..."); } //$NON-NLS-1$ |
| 6086 |
consumeReferenceExpressionSuperForm(); |
6693 |
consumeReferenceExpressionSuperForm(); |
| 6087 |
break; |
6694 |
break; |
| 6088 |
|
6695 |
|
| 6089 |
case 374 : if (DEBUG) { System.out.println("NonWildTypeArgumentsopt ::="); } //$NON-NLS-1$ |
6696 |
case 403 : if (DEBUG) { System.out.println("NonWildTypeArgumentsopt ::="); } //$NON-NLS-1$ |
| 6090 |
consumeEmptyTypeArguments(); |
6697 |
consumeEmptyTypeArguments(); |
| 6091 |
break; |
6698 |
break; |
| 6092 |
|
6699 |
|
| 6093 |
case 376 : if (DEBUG) { System.out.println("IdentifierOrNew ::= Identifier"); } //$NON-NLS-1$ |
6700 |
case 405 : if (DEBUG) { System.out.println("IdentifierOrNew ::= Identifier"); } //$NON-NLS-1$ |
| 6094 |
consumeIdentifierOrNew(false); |
6701 |
consumeIdentifierOrNew(false); |
| 6095 |
break; |
6702 |
break; |
| 6096 |
|
6703 |
|
| 6097 |
case 377 : if (DEBUG) { System.out.println("IdentifierOrNew ::= new"); } //$NON-NLS-1$ |
6704 |
case 406 : if (DEBUG) { System.out.println("IdentifierOrNew ::= new"); } //$NON-NLS-1$ |
| 6098 |
consumeIdentifierOrNew(true); |
6705 |
consumeIdentifierOrNew(true); |
| 6099 |
break; |
6706 |
break; |
| 6100 |
|
6707 |
|
| 6101 |
case 378 : if (DEBUG) { System.out.println("LambdaExpression ::= LambdaParameters ARROW LambdaBody"); } //$NON-NLS-1$ |
6708 |
case 407 : if (DEBUG) { System.out.println("LambdaExpression ::= LambdaParameters ARROW LambdaBody"); } //$NON-NLS-1$ |
| 6102 |
consumeLambdaExpression(); |
6709 |
consumeLambdaExpression(); |
| 6103 |
break; |
6710 |
break; |
| 6104 |
|
6711 |
|
| 6105 |
case 379 : if (DEBUG) { System.out.println("LambdaParameters ::= Identifier"); } //$NON-NLS-1$ |
6712 |
case 408 : if (DEBUG) { System.out.println("LambdaParameters ::= Identifier"); } //$NON-NLS-1$ |
| 6106 |
consumeTypeElidedLambdaParameter(false); |
6713 |
consumeTypeElidedLambdaParameter(false); |
| 6107 |
break; |
6714 |
break; |
| 6108 |
|
6715 |
|
| 6109 |
case 383 : if (DEBUG) { System.out.println("TypeElidedFormalParameterList ::=..."); } //$NON-NLS-1$ |
6716 |
case 412 : if (DEBUG) { System.out.println("TypeElidedFormalParameterList ::=..."); } //$NON-NLS-1$ |
| 6110 |
consumeFormalParameterList(); |
6717 |
consumeFormalParameterList(); |
| 6111 |
break; |
6718 |
break; |
| 6112 |
|
6719 |
|
| 6113 |
case 384 : if (DEBUG) { System.out.println("TypeElidedFormalParameter ::= Modifiersopt Identifier"); } //$NON-NLS-1$ |
6720 |
case 413 : if (DEBUG) { System.out.println("TypeElidedFormalParameter ::= Modifiersopt Identifier"); } //$NON-NLS-1$ |
| 6114 |
consumeTypeElidedLambdaParameter(true); |
6721 |
consumeTypeElidedLambdaParameter(true); |
| 6115 |
break; |
6722 |
break; |
| 6116 |
|
6723 |
|
| 6117 |
case 386 : if (DEBUG) { System.out.println("LambdaBody ::= NestedType NestedMethod LBRACE..."); } //$NON-NLS-1$ |
6724 |
case 415 : if (DEBUG) { System.out.println("LambdaBody ::= NestedType NestedMethod LBRACE..."); } //$NON-NLS-1$ |
| 6118 |
consumeBlock(); |
6725 |
consumeBlock(); |
| 6119 |
break; |
6726 |
break; |
| 6120 |
|
6727 |
|
| 6121 |
case 387 : if (DEBUG) { System.out.println("ElidedLeftBraceAndReturn ::="); } //$NON-NLS-1$ |
6728 |
case 416 : if (DEBUG) { System.out.println("ElidedLeftBraceAndReturn ::="); } //$NON-NLS-1$ |
| 6122 |
consumeElidedLeftBraceAndReturn(); |
6729 |
consumeElidedLeftBraceAndReturn(); |
| 6123 |
break; |
6730 |
break; |
| 6124 |
|
6731 |
|
| 6125 |
case 388 : if (DEBUG) { System.out.println("AllocationHeader ::= new ClassType LPAREN..."); } //$NON-NLS-1$ |
6732 |
case 417 : if (DEBUG) { System.out.println("AllocationHeader ::= new ClassType LPAREN..."); } //$NON-NLS-1$ |
| 6126 |
consumeAllocationHeader(); |
6733 |
consumeAllocationHeader(); |
| 6127 |
break; |
6734 |
break; |
| 6128 |
|
6735 |
|
| 6129 |
case 389 : if (DEBUG) { System.out.println("ClassInstanceCreationExpression ::= new..."); } //$NON-NLS-1$ |
6736 |
case 418 : if (DEBUG) { System.out.println("ClassInstanceCreationExpression ::= new..."); } //$NON-NLS-1$ |
| 6130 |
consumeClassInstanceCreationExpressionWithTypeArguments(); |
6737 |
consumeClassInstanceCreationExpressionWithTypeArguments(); |
| 6131 |
break; |
6738 |
break; |
| 6132 |
|
6739 |
|
| 6133 |
case 390 : if (DEBUG) { System.out.println("ClassInstanceCreationExpression ::= new ClassType..."); } //$NON-NLS-1$ |
6740 |
case 419 : if (DEBUG) { System.out.println("ClassInstanceCreationExpression ::= new ClassType..."); } //$NON-NLS-1$ |
| 6134 |
consumeClassInstanceCreationExpression(); |
6741 |
consumeClassInstanceCreationExpression(); |
| 6135 |
break; |
6742 |
break; |
| 6136 |
|
6743 |
|
| 6137 |
case 391 : if (DEBUG) { System.out.println("ClassInstanceCreationExpression ::= Primary DOT new..."); } //$NON-NLS-1$ |
6744 |
case 420 : if (DEBUG) { System.out.println("ClassInstanceCreationExpression ::= Primary DOT new..."); } //$NON-NLS-1$ |
| 6138 |
consumeClassInstanceCreationExpressionQualifiedWithTypeArguments() ; |
6745 |
consumeClassInstanceCreationExpressionQualifiedWithTypeArguments() ; |
| 6139 |
break; |
6746 |
break; |
| 6140 |
|
6747 |
|
| 6141 |
case 392 : if (DEBUG) { System.out.println("ClassInstanceCreationExpression ::= Primary DOT new..."); } //$NON-NLS-1$ |
6748 |
case 421 : if (DEBUG) { System.out.println("ClassInstanceCreationExpression ::= Primary DOT new..."); } //$NON-NLS-1$ |
| 6142 |
consumeClassInstanceCreationExpressionQualified() ; |
6749 |
consumeClassInstanceCreationExpressionQualified() ; |
| 6143 |
break; |
6750 |
break; |
| 6144 |
|
6751 |
|
| 6145 |
case 393 : if (DEBUG) { System.out.println("ClassInstanceCreationExpression ::=..."); } //$NON-NLS-1$ |
6752 |
case 422 : if (DEBUG) { System.out.println("ClassInstanceCreationExpression ::=..."); } //$NON-NLS-1$ |
| 6146 |
consumeClassInstanceCreationExpressionQualified() ; |
6753 |
consumeClassInstanceCreationExpressionQualified() ; |
| 6147 |
break; |
6754 |
break; |
| 6148 |
|
6755 |
|
| 6149 |
case 394 : if (DEBUG) { System.out.println("ClassInstanceCreationExpression ::=..."); } //$NON-NLS-1$ |
6756 |
case 423 : if (DEBUG) { System.out.println("ClassInstanceCreationExpression ::=..."); } //$NON-NLS-1$ |
| 6150 |
consumeClassInstanceCreationExpressionQualifiedWithTypeArguments() ; |
6757 |
consumeClassInstanceCreationExpressionQualifiedWithTypeArguments() ; |
| 6151 |
break; |
6758 |
break; |
| 6152 |
|
6759 |
|
| 6153 |
case 395 : if (DEBUG) { System.out.println("EnterInstanceCreationArgumentList ::="); } //$NON-NLS-1$ |
6760 |
case 424 : if (DEBUG) { System.out.println("EnterInstanceCreationArgumentList ::="); } //$NON-NLS-1$ |
| 6154 |
consumeEnterInstanceCreationArgumentList(); |
6761 |
consumeEnterInstanceCreationArgumentList(); |
| 6155 |
break; |
6762 |
break; |
| 6156 |
|
6763 |
|
| 6157 |
case 396 : if (DEBUG) { System.out.println("ClassInstanceCreationExpressionName ::= Name DOT"); } //$NON-NLS-1$ |
6764 |
case 425 : if (DEBUG) { System.out.println("ClassInstanceCreationExpressionName ::= Name DOT"); } //$NON-NLS-1$ |
| 6158 |
consumeClassInstanceCreationExpressionName() ; |
6765 |
consumeClassInstanceCreationExpressionName() ; |
| 6159 |
break; |
6766 |
break; |
| 6160 |
|
6767 |
|
| 6161 |
case 397 : if (DEBUG) { System.out.println("UnqualifiedClassBodyopt ::="); } //$NON-NLS-1$ |
6768 |
case 426 : if (DEBUG) { System.out.println("UnqualifiedClassBodyopt ::="); } //$NON-NLS-1$ |
| 6162 |
consumeClassBodyopt(); |
6769 |
consumeClassBodyopt(); |
| 6163 |
break; |
6770 |
break; |
| 6164 |
|
6771 |
|
| 6165 |
case 399 : if (DEBUG) { System.out.println("UnqualifiedEnterAnonymousClassBody ::="); } //$NON-NLS-1$ |
6772 |
case 428 : if (DEBUG) { System.out.println("UnqualifiedEnterAnonymousClassBody ::="); } //$NON-NLS-1$ |
| 6166 |
consumeEnterAnonymousClassBody(false); |
6773 |
consumeEnterAnonymousClassBody(false); |
| 6167 |
break; |
6774 |
break; |
| 6168 |
|
6775 |
|
| 6169 |
case 400 : if (DEBUG) { System.out.println("QualifiedClassBodyopt ::="); } //$NON-NLS-1$ |
6776 |
case 429 : if (DEBUG) { System.out.println("QualifiedClassBodyopt ::="); } //$NON-NLS-1$ |
| 6170 |
consumeClassBodyopt(); |
6777 |
consumeClassBodyopt(); |
| 6171 |
break; |
6778 |
break; |
| 6172 |
|
6779 |
|
| 6173 |
case 402 : if (DEBUG) { System.out.println("QualifiedEnterAnonymousClassBody ::="); } //$NON-NLS-1$ |
6780 |
case 431 : if (DEBUG) { System.out.println("QualifiedEnterAnonymousClassBody ::="); } //$NON-NLS-1$ |
| 6174 |
consumeEnterAnonymousClassBody(true); |
6781 |
consumeEnterAnonymousClassBody(true); |
| 6175 |
break; |
6782 |
break; |
| 6176 |
|
6783 |
|
| 6177 |
case 404 : if (DEBUG) { System.out.println("ArgumentList ::= ArgumentList COMMA Expression"); } //$NON-NLS-1$ |
6784 |
case 433 : if (DEBUG) { System.out.println("ArgumentList ::= ArgumentList COMMA Expression"); } //$NON-NLS-1$ |
| 6178 |
consumeArgumentList(); |
6785 |
consumeArgumentList(); |
| 6179 |
break; |
6786 |
break; |
| 6180 |
|
6787 |
|
| 6181 |
case 405 : if (DEBUG) { System.out.println("ArrayCreationHeader ::= new PrimitiveType..."); } //$NON-NLS-1$ |
6788 |
case 434 : if (DEBUG) { System.out.println("ArrayCreationHeader ::= new Annotationsopt PrimitiveType"); } //$NON-NLS-1$ |
| 6182 |
consumeArrayCreationHeader(); |
6789 |
consumeArrayCreationHeader(); |
| 6183 |
break; |
6790 |
break; |
| 6184 |
|
6791 |
|
| 6185 |
case 406 : if (DEBUG) { System.out.println("ArrayCreationHeader ::= new ClassOrInterfaceType..."); } //$NON-NLS-1$ |
6792 |
case 435 : if (DEBUG) { System.out.println("ArrayCreationHeader ::= new ClassOrInterfaceType..."); } //$NON-NLS-1$ |
| 6186 |
consumeArrayCreationHeader(); |
6793 |
consumeArrayCreationHeader(); |
| 6187 |
break; |
6794 |
break; |
| 6188 |
|
6795 |
|
| 6189 |
case 407 : if (DEBUG) { System.out.println("ArrayCreationWithoutArrayInitializer ::= new..."); } //$NON-NLS-1$ |
6796 |
case 436 : if (DEBUG) { System.out.println("ArrayCreationWithoutArrayInitializer ::= new..."); } //$NON-NLS-1$ |
| 6190 |
consumeArrayCreationExpressionWithoutInitializer(); |
6797 |
consumeArrayCreationExpressionWithoutInitializer(); |
| 6191 |
break; |
6798 |
break; |
| 6192 |
|
6799 |
|
| 6193 |
case 408 : if (DEBUG) { System.out.println("ArrayCreationWithArrayInitializer ::= new PrimitiveType"); } //$NON-NLS-1$ |
6800 |
case 437 : if (DEBUG) { System.out.println("ArrayCreationWithArrayInitializer ::= new Annotationsopt"); } //$NON-NLS-1$ |
| 6194 |
consumeArrayCreationExpressionWithInitializer(); |
6801 |
consumeArrayCreationExpressionWithInitializer(); |
| 6195 |
break; |
6802 |
break; |
| 6196 |
|
6803 |
|
| 6197 |
case 409 : if (DEBUG) { System.out.println("ArrayCreationWithoutArrayInitializer ::= new..."); } //$NON-NLS-1$ |
6804 |
case 438 : if (DEBUG) { System.out.println("ArrayCreationWithoutArrayInitializer ::= new..."); } //$NON-NLS-1$ |
| 6198 |
consumeArrayCreationExpressionWithoutInitializer(); |
6805 |
consumeArrayCreationExpressionWithoutInitializer(); |
| 6199 |
break; |
6806 |
break; |
| 6200 |
|
6807 |
|
| 6201 |
case 410 : if (DEBUG) { System.out.println("ArrayCreationWithArrayInitializer ::= new..."); } //$NON-NLS-1$ |
6808 |
case 439 : if (DEBUG) { System.out.println("ArrayCreationWithArrayInitializer ::= new..."); } //$NON-NLS-1$ |
| 6202 |
consumeArrayCreationExpressionWithInitializer(); |
6809 |
consumeArrayCreationExpressionWithInitializer(); |
| 6203 |
break; |
6810 |
break; |
| 6204 |
|
6811 |
|
| 6205 |
case 412 : if (DEBUG) { System.out.println("DimWithOrWithOutExprs ::= DimWithOrWithOutExprs..."); } //$NON-NLS-1$ |
6812 |
case 441 : if (DEBUG) { System.out.println("DimWithOrWithOutExprs ::= DimWithOrWithOutExprs..."); } //$NON-NLS-1$ |
| 6206 |
consumeDimWithOrWithOutExprs(); |
6813 |
consumeDimWithOrWithOutExprs(); |
| 6207 |
break; |
6814 |
break; |
| 6208 |
|
6815 |
|
| 6209 |
case 414 : if (DEBUG) { System.out.println("DimWithOrWithOutExpr ::= LBRACKET RBRACKET"); } //$NON-NLS-1$ |
6816 |
case 444 : if (DEBUG) { System.out.println("DimWithOrWithOutExpr ::= LBRACKET..."); } //$NON-NLS-1$ |
| 6210 |
consumeDimWithOrWithOutExpr(); |
6817 |
consumeDimWithOrWithOutExpr(); |
| 6211 |
break; |
6818 |
break; |
| 6212 |
|
6819 |
|
| 6213 |
case 415 : if (DEBUG) { System.out.println("Dims ::= DimsLoop"); } //$NON-NLS-1$ |
6820 |
case 445 : if (DEBUG) { System.out.println("DimWithOrWithOutExpr ::= TypeAnnotations LBRACKET..."); } //$NON-NLS-1$ |
|
|
6821 |
consumeDimWithOrWithOutExpr(); |
| 6822 |
break; |
| 6823 |
|
| 6824 |
case 446 : if (DEBUG) { System.out.println("DimsoptAnnotsopt ::="); } //$NON-NLS-1$ |
| 6825 |
consumeEmptyDimsoptAnnotsopt(); |
| 6826 |
break; |
| 6827 |
|
| 6828 |
case 447 : if (DEBUG) { System.out.println("DimsoptAnnotsopt -> DimsAnnotLoop"); } //$NON-NLS-1$ |
| 6829 |
consumeDimsWithTrailingAnnotsopt(); |
| 6830 |
break; |
| 6831 |
|
| 6832 |
case 450 : if (DEBUG) { System.out.println("OneDimOrAnnot ::= Annotation"); } //$NON-NLS-1$ |
| 6833 |
consumeTypeAnnotation(true); |
| 6834 |
break; |
| 6835 |
|
| 6836 |
case 451 : if (DEBUG) { System.out.println("OneDimOrAnnot ::= LBRACKET RBRACKET"); } //$NON-NLS-1$ |
| 6837 |
consumeOneDimLoop(true); |
| 6838 |
break; |
| 6839 |
|
| 6840 |
case 452 : if (DEBUG) { System.out.println("TypeAnnotations ::= Annotation"); } //$NON-NLS-1$ |
| 6841 |
consumeTypeAnnotation(false); |
| 6842 |
break; |
| 6843 |
|
| 6844 |
case 453 : if (DEBUG) { System.out.println("TypeAnnotations ::= TypeAnnotations Annotation"); } //$NON-NLS-1$ |
| 6845 |
consumeOneMoreTypeAnnotation(); |
| 6846 |
break; |
| 6847 |
|
| 6848 |
case 454 : if (DEBUG) { System.out.println("Dims ::= DimsLoop"); } //$NON-NLS-1$ |
| 6214 |
consumeDims(); |
6849 |
consumeDims(); |
| 6215 |
break; |
6850 |
break; |
| 6216 |
|
6851 |
|
| 6217 |
case 418 : if (DEBUG) { System.out.println("OneDimLoop ::= LBRACKET RBRACKET"); } //$NON-NLS-1$ |
6852 |
case 457 : if (DEBUG) { System.out.println("OneDimLoop ::= LBRACKET RBRACKET"); } //$NON-NLS-1$ |
| 6218 |
consumeOneDimLoop(); |
6853 |
consumeOneDimLoop(false); |
| 6219 |
break; |
6854 |
break; |
| 6220 |
|
6855 |
|
| 6221 |
case 419 : if (DEBUG) { System.out.println("FieldAccess ::= Primary DOT Identifier"); } //$NON-NLS-1$ |
6856 |
case 458 : if (DEBUG) { System.out.println("OneDimLoop ::= TypeAnnotations LBRACKET RBRACKET"); } //$NON-NLS-1$ |
|
|
6857 |
consumeOneDimLoopWithAnnotations(); |
| 6858 |
break; |
| 6859 |
|
| 6860 |
case 459 : if (DEBUG) { System.out.println("FieldAccess ::= Primary DOT Identifier"); } //$NON-NLS-1$ |
| 6222 |
consumeFieldAccess(false); |
6861 |
consumeFieldAccess(false); |
| 6223 |
break; |
6862 |
break; |
| 6224 |
|
6863 |
|
| 6225 |
case 420 : if (DEBUG) { System.out.println("FieldAccess ::= super DOT Identifier"); } //$NON-NLS-1$ |
6864 |
case 460 : if (DEBUG) { System.out.println("FieldAccess ::= super DOT Identifier"); } //$NON-NLS-1$ |
| 6226 |
consumeFieldAccess(true); |
6865 |
consumeFieldAccess(true); |
| 6227 |
break; |
6866 |
break; |
| 6228 |
|
6867 |
|
| 6229 |
case 421 : if (DEBUG) { System.out.println("MethodInvocation ::= Name LPAREN ArgumentListopt RPAREN"); } //$NON-NLS-1$ |
6868 |
case 461 : if (DEBUG) { System.out.println("MethodInvocation ::= Name LPAREN ArgumentListopt RPAREN"); } //$NON-NLS-1$ |
| 6230 |
consumeMethodInvocationName(); |
6869 |
consumeMethodInvocationName(); |
| 6231 |
break; |
6870 |
break; |
| 6232 |
|
6871 |
|
| 6233 |
case 422 : if (DEBUG) { System.out.println("MethodInvocation ::= Name DOT OnlyTypeArguments..."); } //$NON-NLS-1$ |
6872 |
case 462 : if (DEBUG) { System.out.println("MethodInvocation ::= Name DOT OnlyTypeArguments..."); } //$NON-NLS-1$ |
| 6234 |
consumeMethodInvocationNameWithTypeArguments(); |
6873 |
consumeMethodInvocationNameWithTypeArguments(); |
| 6235 |
break; |
6874 |
break; |
| 6236 |
|
6875 |
|
| 6237 |
case 423 : if (DEBUG) { System.out.println("MethodInvocation ::= Primary DOT OnlyTypeArguments..."); } //$NON-NLS-1$ |
6876 |
case 463 : if (DEBUG) { System.out.println("MethodInvocation ::= Primary DOT OnlyTypeArguments..."); } //$NON-NLS-1$ |
| 6238 |
consumeMethodInvocationPrimaryWithTypeArguments(); |
6877 |
consumeMethodInvocationPrimaryWithTypeArguments(); |
| 6239 |
break; |
6878 |
break; |
| 6240 |
|
6879 |
|
| 6241 |
case 424 : if (DEBUG) { System.out.println("MethodInvocation ::= Primary DOT Identifier LPAREN..."); } //$NON-NLS-1$ |
6880 |
case 464 : if (DEBUG) { System.out.println("MethodInvocation ::= Primary DOT Identifier LPAREN..."); } //$NON-NLS-1$ |
| 6242 |
consumeMethodInvocationPrimary(); |
6881 |
consumeMethodInvocationPrimary(); |
| 6243 |
break; |
6882 |
break; |
| 6244 |
|
6883 |
|
| 6245 |
case 425 : if (DEBUG) { System.out.println("MethodInvocation ::= super DOT OnlyTypeArguments..."); } //$NON-NLS-1$ |
6884 |
case 465 : if (DEBUG) { System.out.println("MethodInvocation ::= super DOT OnlyTypeArguments..."); } //$NON-NLS-1$ |
| 6246 |
consumeMethodInvocationSuperWithTypeArguments(); |
6885 |
consumeMethodInvocationSuperWithTypeArguments(); |
| 6247 |
break; |
6886 |
break; |
| 6248 |
|
6887 |
|
| 6249 |
case 426 : if (DEBUG) { System.out.println("MethodInvocation ::= super DOT Identifier LPAREN..."); } //$NON-NLS-1$ |
6888 |
case 466 : if (DEBUG) { System.out.println("MethodInvocation ::= super DOT Identifier LPAREN..."); } //$NON-NLS-1$ |
| 6250 |
consumeMethodInvocationSuper(); |
6889 |
consumeMethodInvocationSuper(); |
| 6251 |
break; |
6890 |
break; |
| 6252 |
|
6891 |
|
| 6253 |
case 427 : if (DEBUG) { System.out.println("ArrayAccess ::= Name LBRACKET Expression RBRACKET"); } //$NON-NLS-1$ |
6892 |
case 467 : if (DEBUG) { System.out.println("ArrayAccess ::= Name LBRACKET Expression RBRACKET"); } //$NON-NLS-1$ |
| 6254 |
consumeArrayAccess(true); |
6893 |
consumeArrayAccess(true); |
| 6255 |
break; |
6894 |
break; |
| 6256 |
|
6895 |
|
| 6257 |
case 428 : if (DEBUG) { System.out.println("ArrayAccess ::= PrimaryNoNewArray LBRACKET Expression..."); } //$NON-NLS-1$ |
6896 |
case 468 : if (DEBUG) { System.out.println("ArrayAccess ::= PrimaryNoNewArray LBRACKET Expression..."); } //$NON-NLS-1$ |
| 6258 |
consumeArrayAccess(false); |
6897 |
consumeArrayAccess(false); |
| 6259 |
break; |
6898 |
break; |
| 6260 |
|
6899 |
|
| 6261 |
case 429 : if (DEBUG) { System.out.println("ArrayAccess ::= ArrayCreationWithArrayInitializer..."); } //$NON-NLS-1$ |
6900 |
case 469 : if (DEBUG) { System.out.println("ArrayAccess ::= ArrayCreationWithArrayInitializer..."); } //$NON-NLS-1$ |
| 6262 |
consumeArrayAccess(false); |
6901 |
consumeArrayAccess(false); |
| 6263 |
break; |
6902 |
break; |
| 6264 |
|
6903 |
|
| 6265 |
case 431 : if (DEBUG) { System.out.println("PostfixExpression ::= Name"); } //$NON-NLS-1$ |
6904 |
case 471 : if (DEBUG) { System.out.println("PostfixExpression ::= Name"); } //$NON-NLS-1$ |
| 6266 |
consumePostfixExpression(); |
6905 |
consumePostfixExpression(); |
| 6267 |
break; |
6906 |
break; |
| 6268 |
|
6907 |
|
| 6269 |
case 434 : if (DEBUG) { System.out.println("PostIncrementExpression ::= PostfixExpression PLUS_PLUS"); } //$NON-NLS-1$ |
6908 |
case 474 : if (DEBUG) { System.out.println("PostIncrementExpression ::= PostfixExpression PLUS_PLUS"); } //$NON-NLS-1$ |
| 6270 |
consumeUnaryExpression(OperatorIds.PLUS,true); |
6909 |
consumeUnaryExpression(OperatorIds.PLUS,true); |
| 6271 |
break; |
6910 |
break; |
| 6272 |
|
6911 |
|
| 6273 |
case 435 : if (DEBUG) { System.out.println("PostDecrementExpression ::= PostfixExpression..."); } //$NON-NLS-1$ |
6912 |
case 475 : if (DEBUG) { System.out.println("PostDecrementExpression ::= PostfixExpression..."); } //$NON-NLS-1$ |
| 6274 |
consumeUnaryExpression(OperatorIds.MINUS,true); |
6913 |
consumeUnaryExpression(OperatorIds.MINUS,true); |
| 6275 |
break; |
6914 |
break; |
| 6276 |
|
6915 |
|
| 6277 |
case 436 : if (DEBUG) { System.out.println("PushPosition ::="); } //$NON-NLS-1$ |
6916 |
case 476 : if (DEBUG) { System.out.println("PushPosition ::="); } //$NON-NLS-1$ |
| 6278 |
consumePushPosition(); |
6917 |
consumePushPosition(); |
| 6279 |
break; |
6918 |
break; |
| 6280 |
|
6919 |
|
| 6281 |
case 439 : if (DEBUG) { System.out.println("UnaryExpression ::= PLUS PushPosition UnaryExpression"); } //$NON-NLS-1$ |
6920 |
case 479 : if (DEBUG) { System.out.println("UnaryExpression ::= PLUS PushPosition UnaryExpression"); } //$NON-NLS-1$ |
| 6282 |
consumeUnaryExpression(OperatorIds.PLUS); |
6921 |
consumeUnaryExpression(OperatorIds.PLUS); |
| 6283 |
break; |
6922 |
break; |
| 6284 |
|
6923 |
|
| 6285 |
case 440 : if (DEBUG) { System.out.println("UnaryExpression ::= MINUS PushPosition UnaryExpression"); } //$NON-NLS-1$ |
6924 |
case 480 : if (DEBUG) { System.out.println("UnaryExpression ::= MINUS PushPosition UnaryExpression"); } //$NON-NLS-1$ |
| 6286 |
consumeUnaryExpression(OperatorIds.MINUS); |
6925 |
consumeUnaryExpression(OperatorIds.MINUS); |
| 6287 |
break; |
6926 |
break; |
| 6288 |
|
6927 |
|
| 6289 |
case 442 : if (DEBUG) { System.out.println("PreIncrementExpression ::= PLUS_PLUS PushPosition..."); } //$NON-NLS-1$ |
6928 |
case 482 : if (DEBUG) { System.out.println("PreIncrementExpression ::= PLUS_PLUS PushPosition..."); } //$NON-NLS-1$ |
| 6290 |
consumeUnaryExpression(OperatorIds.PLUS,false); |
6929 |
consumeUnaryExpression(OperatorIds.PLUS,false); |
| 6291 |
break; |
6930 |
break; |
| 6292 |
|
6931 |
|
| 6293 |
case 443 : if (DEBUG) { System.out.println("PreDecrementExpression ::= MINUS_MINUS PushPosition..."); } //$NON-NLS-1$ |
6932 |
case 483 : if (DEBUG) { System.out.println("PreDecrementExpression ::= MINUS_MINUS PushPosition..."); } //$NON-NLS-1$ |
| 6294 |
consumeUnaryExpression(OperatorIds.MINUS,false); |
6933 |
consumeUnaryExpression(OperatorIds.MINUS,false); |
| 6295 |
break; |
6934 |
break; |
| 6296 |
|
6935 |
|
| 6297 |
case 445 : if (DEBUG) { System.out.println("UnaryExpressionNotPlusMinus ::= TWIDDLE PushPosition..."); } //$NON-NLS-1$ |
6936 |
case 485 : if (DEBUG) { System.out.println("UnaryExpressionNotPlusMinus ::= TWIDDLE PushPosition..."); } //$NON-NLS-1$ |
| 6298 |
consumeUnaryExpression(OperatorIds.TWIDDLE); |
6937 |
consumeUnaryExpression(OperatorIds.TWIDDLE); |
| 6299 |
break; |
6938 |
break; |
| 6300 |
|
6939 |
|
| 6301 |
case 446 : if (DEBUG) { System.out.println("UnaryExpressionNotPlusMinus ::= NOT PushPosition..."); } //$NON-NLS-1$ |
6940 |
case 486 : if (DEBUG) { System.out.println("UnaryExpressionNotPlusMinus ::= NOT PushPosition..."); } //$NON-NLS-1$ |
| 6302 |
consumeUnaryExpression(OperatorIds.NOT); |
6941 |
consumeUnaryExpression(OperatorIds.NOT); |
| 6303 |
break; |
6942 |
break; |
| 6304 |
|
6943 |
|
| 6305 |
case 448 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN PrimitiveType Dimsopt..."); } //$NON-NLS-1$ |
6944 |
case 488 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN PrimitiveType Dimsopt..."); } //$NON-NLS-1$ |
| 6306 |
consumeCastExpressionWithPrimitiveType(); |
6945 |
consumeCastExpressionWithPrimitiveType(); |
| 6307 |
break; |
6946 |
break; |
| 6308 |
|
6947 |
|
| 6309 |
case 449 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Name..."); } //$NON-NLS-1$ |
6948 |
case 489 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Modifiers PrimitiveType..."); } //$NON-NLS-1$ |
|
|
6949 |
consumeCastExpressionWithPrimitiveTypeWithTypeAnnotations(); |
| 6950 |
break; |
| 6951 |
|
| 6952 |
case 490 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Name..."); } //$NON-NLS-1$ |
| 6310 |
consumeCastExpressionWithGenericsArray(); |
6953 |
consumeCastExpressionWithGenericsArray(); |
| 6311 |
break; |
6954 |
break; |
| 6312 |
|
6955 |
|
| 6313 |
case 450 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Name..."); } //$NON-NLS-1$ |
6956 |
case 491 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Modifiers Name..."); } //$NON-NLS-1$ |
|
|
6957 |
consumeCastExpressionWithGenericsArrayWithTypeAnnotations(); |
| 6958 |
break; |
| 6959 |
|
| 6960 |
case 492 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Name..."); } //$NON-NLS-1$ |
| 6314 |
consumeCastExpressionWithQualifiedGenericsArray(); |
6961 |
consumeCastExpressionWithQualifiedGenericsArray(); |
| 6315 |
break; |
6962 |
break; |
| 6316 |
|
6963 |
|
| 6317 |
case 451 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Name PushRPAREN..."); } //$NON-NLS-1$ |
6964 |
case 493 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Modifiers Name..."); } //$NON-NLS-1$ |
|
|
6965 |
consumeCastExpressionWithQualifiedGenericsArrayWithTypeAnnotations(); |
| 6966 |
break; |
| 6967 |
|
| 6968 |
case 494 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Name..."); } //$NON-NLS-1$ |
| 6318 |
consumeCastExpressionLL1(); |
6969 |
consumeCastExpressionLL1(); |
| 6319 |
break; |
6970 |
break; |
| 6320 |
|
6971 |
|
| 6321 |
case 452 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Name Dims PushRPAREN..."); } //$NON-NLS-1$ |
6972 |
case 495 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Modifiers Name..."); } //$NON-NLS-1$ |
|
|
6973 |
consumeCastExpressionLL1WithTypeAnnotations(); |
| 6974 |
break; |
| 6975 |
|
| 6976 |
case 496 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Name Dims..."); } //$NON-NLS-1$ |
| 6322 |
consumeCastExpressionWithNameArray(); |
6977 |
consumeCastExpressionWithNameArray(); |
| 6323 |
break; |
6978 |
break; |
| 6324 |
|
6979 |
|
| 6325 |
case 453 : if (DEBUG) { System.out.println("OnlyTypeArgumentsForCastExpression ::= OnlyTypeArguments"); } //$NON-NLS-1$ |
6980 |
case 497 : if (DEBUG) { System.out.println("CastExpression ::= PushLPAREN Modifiers Name Dims..."); } //$NON-NLS-1$ |
|
|
6981 |
consumeCastExpressionWithNameArrayWithTypeAnnotations(); |
| 6982 |
break; |
| 6983 |
|
| 6984 |
case 498 : if (DEBUG) { System.out.println("OnlyTypeArgumentsForCastExpression ::= OnlyTypeArguments"); } //$NON-NLS-1$ |
| 6326 |
consumeOnlyTypeArgumentsForCastExpression(); |
6985 |
consumeOnlyTypeArgumentsForCastExpression(); |
| 6327 |
break; |
6986 |
break; |
| 6328 |
|
6987 |
|
| 6329 |
case 454 : if (DEBUG) { System.out.println("InsideCastExpression ::="); } //$NON-NLS-1$ |
6988 |
case 499 : if (DEBUG) { System.out.println("InsideCastExpression ::="); } //$NON-NLS-1$ |
| 6330 |
consumeInsideCastExpression(); |
6989 |
consumeInsideCastExpression(); |
| 6331 |
break; |
6990 |
break; |
| 6332 |
|
6991 |
|
| 6333 |
case 455 : if (DEBUG) { System.out.println("InsideCastExpressionLL1 ::="); } //$NON-NLS-1$ |
6992 |
case 500 : if (DEBUG) { System.out.println("InsideCastExpressionLL1 ::="); } //$NON-NLS-1$ |
| 6334 |
consumeInsideCastExpressionLL1(); |
6993 |
consumeInsideCastExpressionLL1(); |
| 6335 |
break; |
6994 |
break; |
| 6336 |
|
6995 |
|
| 6337 |
case 456 : if (DEBUG) { System.out.println("InsideCastExpressionWithQualifiedGenerics ::="); } //$NON-NLS-1$ |
6996 |
case 501 : if (DEBUG) { System.out.println("InsideCastExpressionWithQualifiedGenerics ::="); } //$NON-NLS-1$ |
| 6338 |
consumeInsideCastExpressionWithQualifiedGenerics(); |
6997 |
consumeInsideCastExpressionWithQualifiedGenerics(); |
| 6339 |
break; |
6998 |
break; |
| 6340 |
|
6999 |
|
| 6341 |
case 458 : if (DEBUG) { System.out.println("MultiplicativeExpression ::= MultiplicativeExpression..."); } //$NON-NLS-1$ |
7000 |
case 502 : if (DEBUG) { System.out.println("InsideCastExpressionWithAnnotatedQualifiedGenerics ::="); } //$NON-NLS-1$ |
|
|
7001 |
consumeInsideCastExpressionWithAnnotatedQualifiedGenerics(); |
| 7002 |
break; |
| 7003 |
|
| 7004 |
case 504 : if (DEBUG) { System.out.println("MultiplicativeExpression ::= MultiplicativeExpression..."); } //$NON-NLS-1$ |
| 6342 |
consumeBinaryExpression(OperatorIds.MULTIPLY); |
7005 |
consumeBinaryExpression(OperatorIds.MULTIPLY); |
| 6343 |
break; |
7006 |
break; |
| 6344 |
|
7007 |
|
| 6345 |
case 459 : if (DEBUG) { System.out.println("MultiplicativeExpression ::= MultiplicativeExpression..."); } //$NON-NLS-1$ |
7008 |
case 505 : if (DEBUG) { System.out.println("MultiplicativeExpression ::= MultiplicativeExpression..."); } //$NON-NLS-1$ |
| 6346 |
consumeBinaryExpression(OperatorIds.DIVIDE); |
7009 |
consumeBinaryExpression(OperatorIds.DIVIDE); |
| 6347 |
break; |
7010 |
break; |
| 6348 |
|
7011 |
|
| 6349 |
case 460 : if (DEBUG) { System.out.println("MultiplicativeExpression ::= MultiplicativeExpression..."); } //$NON-NLS-1$ |
7012 |
case 506 : if (DEBUG) { System.out.println("MultiplicativeExpression ::= MultiplicativeExpression..."); } //$NON-NLS-1$ |
| 6350 |
consumeBinaryExpression(OperatorIds.REMAINDER); |
7013 |
consumeBinaryExpression(OperatorIds.REMAINDER); |
| 6351 |
break; |
7014 |
break; |
| 6352 |
|
7015 |
|
| 6353 |
case 462 : if (DEBUG) { System.out.println("AdditiveExpression ::= AdditiveExpression PLUS..."); } //$NON-NLS-1$ |
7016 |
case 508 : if (DEBUG) { System.out.println("AdditiveExpression ::= AdditiveExpression PLUS..."); } //$NON-NLS-1$ |
| 6354 |
consumeBinaryExpression(OperatorIds.PLUS); |
7017 |
consumeBinaryExpression(OperatorIds.PLUS); |
| 6355 |
break; |
7018 |
break; |
| 6356 |
|
7019 |
|
| 6357 |
case 463 : if (DEBUG) { System.out.println("AdditiveExpression ::= AdditiveExpression MINUS..."); } //$NON-NLS-1$ |
7020 |
case 509 : if (DEBUG) { System.out.println("AdditiveExpression ::= AdditiveExpression MINUS..."); } //$NON-NLS-1$ |
| 6358 |
consumeBinaryExpression(OperatorIds.MINUS); |
7021 |
consumeBinaryExpression(OperatorIds.MINUS); |
| 6359 |
break; |
7022 |
break; |
| 6360 |
|
7023 |
|
| 6361 |
case 465 : if (DEBUG) { System.out.println("ShiftExpression ::= ShiftExpression LEFT_SHIFT..."); } //$NON-NLS-1$ |
7024 |
case 511 : if (DEBUG) { System.out.println("ShiftExpression ::= ShiftExpression LEFT_SHIFT..."); } //$NON-NLS-1$ |
| 6362 |
consumeBinaryExpression(OperatorIds.LEFT_SHIFT); |
7025 |
consumeBinaryExpression(OperatorIds.LEFT_SHIFT); |
| 6363 |
break; |
7026 |
break; |
| 6364 |
|
7027 |
|
| 6365 |
case 466 : if (DEBUG) { System.out.println("ShiftExpression ::= ShiftExpression RIGHT_SHIFT..."); } //$NON-NLS-1$ |
7028 |
case 512 : if (DEBUG) { System.out.println("ShiftExpression ::= ShiftExpression RIGHT_SHIFT..."); } //$NON-NLS-1$ |
| 6366 |
consumeBinaryExpression(OperatorIds.RIGHT_SHIFT); |
7029 |
consumeBinaryExpression(OperatorIds.RIGHT_SHIFT); |
| 6367 |
break; |
7030 |
break; |
| 6368 |
|
7031 |
|
| 6369 |
case 467 : if (DEBUG) { System.out.println("ShiftExpression ::= ShiftExpression UNSIGNED_RIGHT_SHIFT"); } //$NON-NLS-1$ |
7032 |
case 513 : if (DEBUG) { System.out.println("ShiftExpression ::= ShiftExpression UNSIGNED_RIGHT_SHIFT"); } //$NON-NLS-1$ |
| 6370 |
consumeBinaryExpression(OperatorIds.UNSIGNED_RIGHT_SHIFT); |
7033 |
consumeBinaryExpression(OperatorIds.UNSIGNED_RIGHT_SHIFT); |
| 6371 |
break; |
7034 |
break; |
| 6372 |
|
7035 |
|
| 6373 |
case 469 : if (DEBUG) { System.out.println("RelationalExpression ::= RelationalExpression LESS..."); } //$NON-NLS-1$ |
7036 |
case 515 : if (DEBUG) { System.out.println("RelationalExpression ::= RelationalExpression LESS..."); } //$NON-NLS-1$ |
| 6374 |
consumeBinaryExpression(OperatorIds.LESS); |
7037 |
consumeBinaryExpression(OperatorIds.LESS); |
| 6375 |
break; |
7038 |
break; |
| 6376 |
|
7039 |
|
| 6377 |
case 470 : if (DEBUG) { System.out.println("RelationalExpression ::= RelationalExpression GREATER..."); } //$NON-NLS-1$ |
7040 |
case 516 : if (DEBUG) { System.out.println("RelationalExpression ::= RelationalExpression GREATER..."); } //$NON-NLS-1$ |
| 6378 |
consumeBinaryExpression(OperatorIds.GREATER); |
7041 |
consumeBinaryExpression(OperatorIds.GREATER); |
| 6379 |
break; |
7042 |
break; |
| 6380 |
|
7043 |
|
| 6381 |
case 471 : if (DEBUG) { System.out.println("RelationalExpression ::= RelationalExpression LESS_EQUAL"); } //$NON-NLS-1$ |
7044 |
case 517 : if (DEBUG) { System.out.println("RelationalExpression ::= RelationalExpression LESS_EQUAL"); } //$NON-NLS-1$ |
| 6382 |
consumeBinaryExpression(OperatorIds.LESS_EQUAL); |
7045 |
consumeBinaryExpression(OperatorIds.LESS_EQUAL); |
| 6383 |
break; |
7046 |
break; |
| 6384 |
|
7047 |
|
| 6385 |
case 472 : if (DEBUG) { System.out.println("RelationalExpression ::= RelationalExpression..."); } //$NON-NLS-1$ |
7048 |
case 518 : if (DEBUG) { System.out.println("RelationalExpression ::= RelationalExpression..."); } //$NON-NLS-1$ |
| 6386 |
consumeBinaryExpression(OperatorIds.GREATER_EQUAL); |
7049 |
consumeBinaryExpression(OperatorIds.GREATER_EQUAL); |
| 6387 |
break; |
7050 |
break; |
| 6388 |
|
7051 |
|
| 6389 |
case 474 : if (DEBUG) { System.out.println("InstanceofExpression ::= InstanceofExpression instanceof"); } //$NON-NLS-1$ |
7052 |
case 520 : if (DEBUG) { System.out.println("InstanceofExpression ::= InstanceofExpression instanceof"); } //$NON-NLS-1$ |
| 6390 |
consumeInstanceOfExpression(); |
7053 |
consumeInstanceOfExpression(); |
| 6391 |
break; |
7054 |
break; |
| 6392 |
|
7055 |
|
| 6393 |
case 476 : if (DEBUG) { System.out.println("EqualityExpression ::= EqualityExpression EQUAL_EQUAL..."); } //$NON-NLS-1$ |
7056 |
case 522 : if (DEBUG) { System.out.println("EqualityExpression ::= EqualityExpression EQUAL_EQUAL..."); } //$NON-NLS-1$ |
| 6394 |
consumeEqualityExpression(OperatorIds.EQUAL_EQUAL); |
7057 |
consumeEqualityExpression(OperatorIds.EQUAL_EQUAL); |
| 6395 |
break; |
7058 |
break; |
| 6396 |
|
7059 |
|
| 6397 |
case 477 : if (DEBUG) { System.out.println("EqualityExpression ::= EqualityExpression NOT_EQUAL..."); } //$NON-NLS-1$ |
7060 |
case 523 : if (DEBUG) { System.out.println("EqualityExpression ::= EqualityExpression NOT_EQUAL..."); } //$NON-NLS-1$ |
| 6398 |
consumeEqualityExpression(OperatorIds.NOT_EQUAL); |
7061 |
consumeEqualityExpression(OperatorIds.NOT_EQUAL); |
| 6399 |
break; |
7062 |
break; |
| 6400 |
|
7063 |
|
| 6401 |
case 479 : if (DEBUG) { System.out.println("AndExpression ::= AndExpression AND EqualityExpression"); } //$NON-NLS-1$ |
7064 |
case 525 : if (DEBUG) { System.out.println("AndExpression ::= AndExpression AND EqualityExpression"); } //$NON-NLS-1$ |
| 6402 |
consumeBinaryExpression(OperatorIds.AND); |
7065 |
consumeBinaryExpression(OperatorIds.AND); |
| 6403 |
break; |
7066 |
break; |
| 6404 |
|
7067 |
|
| 6405 |
case 481 : if (DEBUG) { System.out.println("ExclusiveOrExpression ::= ExclusiveOrExpression XOR..."); } //$NON-NLS-1$ |
7068 |
case 527 : if (DEBUG) { System.out.println("ExclusiveOrExpression ::= ExclusiveOrExpression XOR..."); } //$NON-NLS-1$ |
| 6406 |
consumeBinaryExpression(OperatorIds.XOR); |
7069 |
consumeBinaryExpression(OperatorIds.XOR); |
| 6407 |
break; |
7070 |
break; |
| 6408 |
|
7071 |
|
| 6409 |
case 483 : if (DEBUG) { System.out.println("InclusiveOrExpression ::= InclusiveOrExpression OR..."); } //$NON-NLS-1$ |
7072 |
case 529 : if (DEBUG) { System.out.println("InclusiveOrExpression ::= InclusiveOrExpression OR..."); } //$NON-NLS-1$ |
| 6410 |
consumeBinaryExpression(OperatorIds.OR); |
7073 |
consumeBinaryExpression(OperatorIds.OR); |
| 6411 |
break; |
7074 |
break; |
| 6412 |
|
7075 |
|
| 6413 |
case 485 : if (DEBUG) { System.out.println("ConditionalAndExpression ::= ConditionalAndExpression..."); } //$NON-NLS-1$ |
7076 |
case 531 : if (DEBUG) { System.out.println("ConditionalAndExpression ::= ConditionalAndExpression..."); } //$NON-NLS-1$ |
| 6414 |
consumeBinaryExpression(OperatorIds.AND_AND); |
7077 |
consumeBinaryExpression(OperatorIds.AND_AND); |
| 6415 |
break; |
7078 |
break; |
| 6416 |
|
7079 |
|
| 6417 |
case 487 : if (DEBUG) { System.out.println("ConditionalOrExpression ::= ConditionalOrExpression..."); } //$NON-NLS-1$ |
7080 |
case 533 : if (DEBUG) { System.out.println("ConditionalOrExpression ::= ConditionalOrExpression..."); } //$NON-NLS-1$ |
| 6418 |
consumeBinaryExpression(OperatorIds.OR_OR); |
7081 |
consumeBinaryExpression(OperatorIds.OR_OR); |
| 6419 |
break; |
7082 |
break; |
| 6420 |
|
7083 |
|
| 6421 |
case 489 : if (DEBUG) { System.out.println("ConditionalExpression ::= ConditionalOrExpression..."); } //$NON-NLS-1$ |
7084 |
case 535 : if (DEBUG) { System.out.println("ConditionalExpression ::= ConditionalOrExpression..."); } //$NON-NLS-1$ |
| 6422 |
consumeConditionalExpression(OperatorIds.QUESTIONCOLON) ; |
7085 |
consumeConditionalExpression(OperatorIds.QUESTIONCOLON) ; |
| 6423 |
break; |
7086 |
break; |
| 6424 |
|
7087 |
|
| 6425 |
case 492 : if (DEBUG) { System.out.println("Assignment ::= PostfixExpression AssignmentOperator..."); } //$NON-NLS-1$ |
7088 |
case 538 : if (DEBUG) { System.out.println("Assignment ::= PostfixExpression AssignmentOperator..."); } //$NON-NLS-1$ |
| 6426 |
consumeAssignment(); |
7089 |
consumeAssignment(); |
| 6427 |
break; |
7090 |
break; |
| 6428 |
|
7091 |
|
| 6429 |
case 494 : if (DEBUG) { System.out.println("Assignment ::= InvalidArrayInitializerAssignement"); } //$NON-NLS-1$ |
7092 |
case 540 : if (DEBUG) { System.out.println("Assignment ::= InvalidArrayInitializerAssignement"); } //$NON-NLS-1$ |
| 6430 |
ignoreExpressionAssignment(); |
7093 |
ignoreExpressionAssignment(); |
| 6431 |
break; |
7094 |
break; |
| 6432 |
|
7095 |
|
| 6433 |
case 495 : if (DEBUG) { System.out.println("AssignmentOperator ::= EQUAL"); } //$NON-NLS-1$ |
7096 |
case 541 : if (DEBUG) { System.out.println("AssignmentOperator ::= EQUAL"); } //$NON-NLS-1$ |
| 6434 |
consumeAssignmentOperator(EQUAL); |
7097 |
consumeAssignmentOperator(EQUAL); |
| 6435 |
break; |
7098 |
break; |
| 6436 |
|
7099 |
|
| 6437 |
case 496 : if (DEBUG) { System.out.println("AssignmentOperator ::= MULTIPLY_EQUAL"); } //$NON-NLS-1$ |
7100 |
case 542 : if (DEBUG) { System.out.println("AssignmentOperator ::= MULTIPLY_EQUAL"); } //$NON-NLS-1$ |
| 6438 |
consumeAssignmentOperator(MULTIPLY); |
7101 |
consumeAssignmentOperator(MULTIPLY); |
| 6439 |
break; |
7102 |
break; |
| 6440 |
|
7103 |
|
| 6441 |
case 497 : if (DEBUG) { System.out.println("AssignmentOperator ::= DIVIDE_EQUAL"); } //$NON-NLS-1$ |
7104 |
case 543 : if (DEBUG) { System.out.println("AssignmentOperator ::= DIVIDE_EQUAL"); } //$NON-NLS-1$ |
| 6442 |
consumeAssignmentOperator(DIVIDE); |
7105 |
consumeAssignmentOperator(DIVIDE); |
| 6443 |
break; |
7106 |
break; |
| 6444 |
|
7107 |
|
| 6445 |
case 498 : if (DEBUG) { System.out.println("AssignmentOperator ::= REMAINDER_EQUAL"); } //$NON-NLS-1$ |
7108 |
case 544 : if (DEBUG) { System.out.println("AssignmentOperator ::= REMAINDER_EQUAL"); } //$NON-NLS-1$ |
| 6446 |
consumeAssignmentOperator(REMAINDER); |
7109 |
consumeAssignmentOperator(REMAINDER); |
| 6447 |
break; |
7110 |
break; |
| 6448 |
|
7111 |
|
| 6449 |
case 499 : if (DEBUG) { System.out.println("AssignmentOperator ::= PLUS_EQUAL"); } //$NON-NLS-1$ |
7112 |
case 545 : if (DEBUG) { System.out.println("AssignmentOperator ::= PLUS_EQUAL"); } //$NON-NLS-1$ |
| 6450 |
consumeAssignmentOperator(PLUS); |
7113 |
consumeAssignmentOperator(PLUS); |
| 6451 |
break; |
7114 |
break; |
| 6452 |
|
7115 |
|
| 6453 |
case 500 : if (DEBUG) { System.out.println("AssignmentOperator ::= MINUS_EQUAL"); } //$NON-NLS-1$ |
7116 |
case 546 : if (DEBUG) { System.out.println("AssignmentOperator ::= MINUS_EQUAL"); } //$NON-NLS-1$ |
| 6454 |
consumeAssignmentOperator(MINUS); |
7117 |
consumeAssignmentOperator(MINUS); |
| 6455 |
break; |
7118 |
break; |
| 6456 |
|
7119 |
|
| 6457 |
case 501 : if (DEBUG) { System.out.println("AssignmentOperator ::= LEFT_SHIFT_EQUAL"); } //$NON-NLS-1$ |
7120 |
case 547 : if (DEBUG) { System.out.println("AssignmentOperator ::= LEFT_SHIFT_EQUAL"); } //$NON-NLS-1$ |
| 6458 |
consumeAssignmentOperator(LEFT_SHIFT); |
7121 |
consumeAssignmentOperator(LEFT_SHIFT); |
| 6459 |
break; |
7122 |
break; |
| 6460 |
|
7123 |
|
| 6461 |
case 502 : if (DEBUG) { System.out.println("AssignmentOperator ::= RIGHT_SHIFT_EQUAL"); } //$NON-NLS-1$ |
7124 |
case 548 : if (DEBUG) { System.out.println("AssignmentOperator ::= RIGHT_SHIFT_EQUAL"); } //$NON-NLS-1$ |
| 6462 |
consumeAssignmentOperator(RIGHT_SHIFT); |
7125 |
consumeAssignmentOperator(RIGHT_SHIFT); |
| 6463 |
break; |
7126 |
break; |
| 6464 |
|
7127 |
|
| 6465 |
case 503 : if (DEBUG) { System.out.println("AssignmentOperator ::= UNSIGNED_RIGHT_SHIFT_EQUAL"); } //$NON-NLS-1$ |
7128 |
case 549 : if (DEBUG) { System.out.println("AssignmentOperator ::= UNSIGNED_RIGHT_SHIFT_EQUAL"); } //$NON-NLS-1$ |
| 6466 |
consumeAssignmentOperator(UNSIGNED_RIGHT_SHIFT); |
7129 |
consumeAssignmentOperator(UNSIGNED_RIGHT_SHIFT); |
| 6467 |
break; |
7130 |
break; |
| 6468 |
|
7131 |
|
| 6469 |
case 504 : if (DEBUG) { System.out.println("AssignmentOperator ::= AND_EQUAL"); } //$NON-NLS-1$ |
7132 |
case 550 : if (DEBUG) { System.out.println("AssignmentOperator ::= AND_EQUAL"); } //$NON-NLS-1$ |
| 6470 |
consumeAssignmentOperator(AND); |
7133 |
consumeAssignmentOperator(AND); |
| 6471 |
break; |
7134 |
break; |
| 6472 |
|
7135 |
|
| 6473 |
case 505 : if (DEBUG) { System.out.println("AssignmentOperator ::= XOR_EQUAL"); } //$NON-NLS-1$ |
7136 |
case 551 : if (DEBUG) { System.out.println("AssignmentOperator ::= XOR_EQUAL"); } //$NON-NLS-1$ |
| 6474 |
consumeAssignmentOperator(XOR); |
7137 |
consumeAssignmentOperator(XOR); |
| 6475 |
break; |
7138 |
break; |
| 6476 |
|
7139 |
|
| 6477 |
case 506 : if (DEBUG) { System.out.println("AssignmentOperator ::= OR_EQUAL"); } //$NON-NLS-1$ |
7140 |
case 552 : if (DEBUG) { System.out.println("AssignmentOperator ::= OR_EQUAL"); } //$NON-NLS-1$ |
| 6478 |
consumeAssignmentOperator(OR); |
7141 |
consumeAssignmentOperator(OR); |
| 6479 |
break; |
7142 |
break; |
| 6480 |
|
7143 |
|
| 6481 |
case 507 : if (DEBUG) { System.out.println("Expression ::= AssignmentExpression"); } //$NON-NLS-1$ |
7144 |
case 553 : if (DEBUG) { System.out.println("Expression ::= AssignmentExpression"); } //$NON-NLS-1$ |
| 6482 |
consumeExpression(); |
7145 |
consumeExpression(); |
| 6483 |
break; |
7146 |
break; |
| 6484 |
|
7147 |
|
| 6485 |
case 510 : if (DEBUG) { System.out.println("Expressionopt ::="); } //$NON-NLS-1$ |
7148 |
case 556 : if (DEBUG) { System.out.println("Expressionopt ::="); } //$NON-NLS-1$ |
| 6486 |
consumeEmptyExpression(); |
7149 |
consumeEmptyExpression(); |
| 6487 |
break; |
7150 |
break; |
| 6488 |
|
7151 |
|
| 6489 |
case 515 : if (DEBUG) { System.out.println("ClassBodyDeclarationsopt ::="); } //$NON-NLS-1$ |
7152 |
case 561 : if (DEBUG) { System.out.println("ClassBodyDeclarationsopt ::="); } //$NON-NLS-1$ |
| 6490 |
consumeEmptyClassBodyDeclarationsopt(); |
7153 |
consumeEmptyClassBodyDeclarationsopt(); |
| 6491 |
break; |
7154 |
break; |
| 6492 |
|
7155 |
|
| 6493 |
case 516 : if (DEBUG) { System.out.println("ClassBodyDeclarationsopt ::= NestedType..."); } //$NON-NLS-1$ |
7156 |
case 562 : if (DEBUG) { System.out.println("ClassBodyDeclarationsopt ::= NestedType..."); } //$NON-NLS-1$ |
| 6494 |
consumeClassBodyDeclarationsopt(); |
7157 |
consumeClassBodyDeclarationsopt(); |
| 6495 |
break; |
7158 |
break; |
| 6496 |
|
7159 |
|
| 6497 |
case 517 : if (DEBUG) { System.out.println("Modifiersopt ::="); } //$NON-NLS-1$ |
7160 |
case 563 : if (DEBUG) { System.out.println("Modifiersopt ::="); } //$NON-NLS-1$ |
| 6498 |
consumeDefaultModifiers(); |
7161 |
consumeDefaultModifiers(); |
| 6499 |
break; |
7162 |
break; |
| 6500 |
|
7163 |
|
| 6501 |
case 518 : if (DEBUG) { System.out.println("Modifiersopt ::= Modifiers"); } //$NON-NLS-1$ |
7164 |
case 564 : if (DEBUG) { System.out.println("Modifiersopt ::= Modifiers"); } //$NON-NLS-1$ |
| 6502 |
consumeModifiers(); |
7165 |
consumeModifiers(); |
| 6503 |
break; |
7166 |
break; |
| 6504 |
|
7167 |
|
| 6505 |
case 519 : if (DEBUG) { System.out.println("BlockStatementsopt ::="); } //$NON-NLS-1$ |
7168 |
case 565 : if (DEBUG) { System.out.println("BlockStatementsopt ::="); } //$NON-NLS-1$ |
| 6506 |
consumeEmptyBlockStatementsopt(); |
7169 |
consumeEmptyBlockStatementsopt(); |
| 6507 |
break; |
7170 |
break; |
| 6508 |
|
7171 |
|
| 6509 |
case 521 : if (DEBUG) { System.out.println("Dimsopt ::="); } //$NON-NLS-1$ |
7172 |
case 567 : if (DEBUG) { System.out.println("Dimsopt ::="); } //$NON-NLS-1$ |
| 6510 |
consumeEmptyDimsopt(); |
7173 |
consumeEmptyDimsopt(); |
| 6511 |
break; |
7174 |
break; |
| 6512 |
|
7175 |
|
| 6513 |
case 523 : if (DEBUG) { System.out.println("ArgumentListopt ::="); } //$NON-NLS-1$ |
7176 |
case 569 : if (DEBUG) { System.out.println("ArgumentListopt ::="); } //$NON-NLS-1$ |
| 6514 |
consumeEmptyArgumentListopt(); |
7177 |
consumeEmptyArgumentListopt(); |
| 6515 |
break; |
7178 |
break; |
| 6516 |
|
7179 |
|
| 6517 |
case 527 : if (DEBUG) { System.out.println("FormalParameterListopt ::="); } //$NON-NLS-1$ |
7180 |
case 573 : if (DEBUG) { System.out.println("FormalParameterListopt ::="); } //$NON-NLS-1$ |
| 6518 |
consumeFormalParameterListopt(); |
7181 |
consumeFormalParameterListopt(); |
| 6519 |
break; |
7182 |
break; |
| 6520 |
|
7183 |
|
| 6521 |
case 531 : if (DEBUG) { System.out.println("InterfaceMemberDeclarationsopt ::="); } //$NON-NLS-1$ |
7184 |
case 577 : if (DEBUG) { System.out.println("InterfaceMemberDeclarationsopt ::="); } //$NON-NLS-1$ |
| 6522 |
consumeEmptyInterfaceMemberDeclarationsopt(); |
7185 |
consumeEmptyInterfaceMemberDeclarationsopt(); |
| 6523 |
break; |
7186 |
break; |
| 6524 |
|
7187 |
|
| 6525 |
case 532 : if (DEBUG) { System.out.println("InterfaceMemberDeclarationsopt ::= NestedType..."); } //$NON-NLS-1$ |
7188 |
case 578 : if (DEBUG) { System.out.println("InterfaceMemberDeclarationsopt ::= NestedType..."); } //$NON-NLS-1$ |
| 6526 |
consumeInterfaceMemberDeclarationsopt(); |
7189 |
consumeInterfaceMemberDeclarationsopt(); |
| 6527 |
break; |
7190 |
break; |
| 6528 |
|
7191 |
|
| 6529 |
case 533 : if (DEBUG) { System.out.println("NestedType ::="); } //$NON-NLS-1$ |
7192 |
case 579 : if (DEBUG) { System.out.println("NestedType ::="); } //$NON-NLS-1$ |
| 6530 |
consumeNestedType(); |
7193 |
consumeNestedType(); |
| 6531 |
break; |
7194 |
break; |
| 6532 |
|
7195 |
|
| 6533 |
case 534 : if (DEBUG) { System.out.println("ForInitopt ::="); } //$NON-NLS-1$ |
7196 |
case 580 : if (DEBUG) { System.out.println("ForInitopt ::="); } //$NON-NLS-1$ |
| 6534 |
consumeEmptyForInitopt(); |
7197 |
consumeEmptyForInitopt(); |
| 6535 |
break; |
7198 |
break; |
| 6536 |
|
7199 |
|
| 6537 |
case 536 : if (DEBUG) { System.out.println("ForUpdateopt ::="); } //$NON-NLS-1$ |
7200 |
case 582 : if (DEBUG) { System.out.println("ForUpdateopt ::="); } //$NON-NLS-1$ |
| 6538 |
consumeEmptyForUpdateopt(); |
7201 |
consumeEmptyForUpdateopt(); |
| 6539 |
break; |
7202 |
break; |
| 6540 |
|
7203 |
|
| 6541 |
case 540 : if (DEBUG) { System.out.println("Catchesopt ::="); } //$NON-NLS-1$ |
7204 |
case 586 : if (DEBUG) { System.out.println("Catchesopt ::="); } //$NON-NLS-1$ |
| 6542 |
consumeEmptyCatchesopt(); |
7205 |
consumeEmptyCatchesopt(); |
| 6543 |
break; |
7206 |
break; |
| 6544 |
|
7207 |
|
| 6545 |
case 542 : if (DEBUG) { System.out.println("EnumDeclaration ::= EnumHeader EnumBody"); } //$NON-NLS-1$ |
7208 |
case 588 : if (DEBUG) { System.out.println("EnumDeclaration ::= EnumHeader EnumBody"); } //$NON-NLS-1$ |
| 6546 |
consumeEnumDeclaration(); |
7209 |
consumeEnumDeclaration(); |
| 6547 |
break; |
7210 |
break; |
| 6548 |
|
7211 |
|
| 6549 |
case 543 : if (DEBUG) { System.out.println("EnumHeader ::= EnumHeaderName ClassHeaderImplementsopt"); } //$NON-NLS-1$ |
7212 |
case 589 : if (DEBUG) { System.out.println("EnumHeader ::= EnumHeaderName ClassHeaderImplementsopt"); } //$NON-NLS-1$ |
| 6550 |
consumeEnumHeader(); |
7213 |
consumeEnumHeader(); |
| 6551 |
break; |
7214 |
break; |
| 6552 |
|
7215 |
|
| 6553 |
case 544 : if (DEBUG) { System.out.println("EnumHeaderName ::= Modifiersopt enum Identifier"); } //$NON-NLS-1$ |
7216 |
case 590 : if (DEBUG) { System.out.println("EnumHeaderName ::= Modifiersopt enum Identifier"); } //$NON-NLS-1$ |
| 6554 |
consumeEnumHeaderName(); |
7217 |
consumeEnumHeaderName(); |
| 6555 |
break; |
7218 |
break; |
| 6556 |
|
7219 |
|
| 6557 |
case 545 : if (DEBUG) { System.out.println("EnumHeaderName ::= Modifiersopt enum Identifier..."); } //$NON-NLS-1$ |
7220 |
case 591 : if (DEBUG) { System.out.println("EnumHeaderName ::= Modifiersopt enum Identifier..."); } //$NON-NLS-1$ |
| 6558 |
consumeEnumHeaderNameWithTypeParameters(); |
7221 |
consumeEnumHeaderNameWithTypeParameters(); |
| 6559 |
break; |
7222 |
break; |
| 6560 |
|
7223 |
|
| 6561 |
case 546 : if (DEBUG) { System.out.println("EnumBody ::= LBRACE EnumBodyDeclarationsopt RBRACE"); } //$NON-NLS-1$ |
7224 |
case 592 : if (DEBUG) { System.out.println("EnumBody ::= LBRACE EnumBodyDeclarationsopt RBRACE"); } //$NON-NLS-1$ |
| 6562 |
consumeEnumBodyNoConstants(); |
7225 |
consumeEnumBodyNoConstants(); |
| 6563 |
break; |
7226 |
break; |
| 6564 |
|
7227 |
|
| 6565 |
case 547 : if (DEBUG) { System.out.println("EnumBody ::= LBRACE COMMA EnumBodyDeclarationsopt..."); } //$NON-NLS-1$ |
7228 |
case 593 : if (DEBUG) { System.out.println("EnumBody ::= LBRACE COMMA EnumBodyDeclarationsopt..."); } //$NON-NLS-1$ |
| 6566 |
consumeEnumBodyNoConstants(); |
7229 |
consumeEnumBodyNoConstants(); |
| 6567 |
break; |
7230 |
break; |
| 6568 |
|
7231 |
|
| 6569 |
case 548 : if (DEBUG) { System.out.println("EnumBody ::= LBRACE EnumConstants COMMA..."); } //$NON-NLS-1$ |
7232 |
case 594 : if (DEBUG) { System.out.println("EnumBody ::= LBRACE EnumConstants COMMA..."); } //$NON-NLS-1$ |
| 6570 |
consumeEnumBodyWithConstants(); |
7233 |
consumeEnumBodyWithConstants(); |
| 6571 |
break; |
7234 |
break; |
| 6572 |
|
7235 |
|
| 6573 |
case 549 : if (DEBUG) { System.out.println("EnumBody ::= LBRACE EnumConstants..."); } //$NON-NLS-1$ |
7236 |
case 595 : if (DEBUG) { System.out.println("EnumBody ::= LBRACE EnumConstants..."); } //$NON-NLS-1$ |
| 6574 |
consumeEnumBodyWithConstants(); |
7237 |
consumeEnumBodyWithConstants(); |
| 6575 |
break; |
7238 |
break; |
| 6576 |
|
7239 |
|
| 6577 |
case 551 : if (DEBUG) { System.out.println("EnumConstants ::= EnumConstants COMMA EnumConstant"); } //$NON-NLS-1$ |
7240 |
case 597 : if (DEBUG) { System.out.println("EnumConstants ::= EnumConstants COMMA EnumConstant"); } //$NON-NLS-1$ |
| 6578 |
consumeEnumConstants(); |
7241 |
consumeEnumConstants(); |
| 6579 |
break; |
7242 |
break; |
| 6580 |
|
7243 |
|
| 6581 |
case 552 : if (DEBUG) { System.out.println("EnumConstantHeaderName ::= Modifiersopt Identifier"); } //$NON-NLS-1$ |
7244 |
case 598 : if (DEBUG) { System.out.println("EnumConstantHeaderName ::= Modifiersopt Identifier"); } //$NON-NLS-1$ |
| 6582 |
consumeEnumConstantHeaderName(); |
7245 |
consumeEnumConstantHeaderName(); |
| 6583 |
break; |
7246 |
break; |
| 6584 |
|
7247 |
|
| 6585 |
case 553 : if (DEBUG) { System.out.println("EnumConstantHeader ::= EnumConstantHeaderName..."); } //$NON-NLS-1$ |
7248 |
case 599 : if (DEBUG) { System.out.println("EnumConstantHeader ::= EnumConstantHeaderName..."); } //$NON-NLS-1$ |
| 6586 |
consumeEnumConstantHeader(); |
7249 |
consumeEnumConstantHeader(); |
| 6587 |
break; |
7250 |
break; |
| 6588 |
|
7251 |
|
| 6589 |
case 554 : if (DEBUG) { System.out.println("EnumConstant ::= EnumConstantHeader ForceNoDiet..."); } //$NON-NLS-1$ |
7252 |
case 600 : if (DEBUG) { System.out.println("EnumConstant ::= EnumConstantHeader ForceNoDiet..."); } //$NON-NLS-1$ |
| 6590 |
consumeEnumConstantWithClassBody(); |
7253 |
consumeEnumConstantWithClassBody(); |
| 6591 |
break; |
7254 |
break; |
| 6592 |
|
7255 |
|
| 6593 |
case 555 : if (DEBUG) { System.out.println("EnumConstant ::= EnumConstantHeader"); } //$NON-NLS-1$ |
7256 |
case 601 : if (DEBUG) { System.out.println("EnumConstant ::= EnumConstantHeader"); } //$NON-NLS-1$ |
| 6594 |
consumeEnumConstantNoClassBody(); |
7257 |
consumeEnumConstantNoClassBody(); |
| 6595 |
break; |
7258 |
break; |
| 6596 |
|
7259 |
|
| 6597 |
case 556 : if (DEBUG) { System.out.println("Arguments ::= LPAREN ArgumentListopt RPAREN"); } //$NON-NLS-1$ |
7260 |
case 602 : if (DEBUG) { System.out.println("Arguments ::= LPAREN ArgumentListopt RPAREN"); } //$NON-NLS-1$ |
| 6598 |
consumeArguments(); |
7261 |
consumeArguments(); |
| 6599 |
break; |
7262 |
break; |
| 6600 |
|
7263 |
|
| 6601 |
case 557 : if (DEBUG) { System.out.println("Argumentsopt ::="); } //$NON-NLS-1$ |
7264 |
case 603 : if (DEBUG) { System.out.println("Argumentsopt ::="); } //$NON-NLS-1$ |
| 6602 |
consumeEmptyArguments(); |
7265 |
consumeEmptyArguments(); |
| 6603 |
break; |
7266 |
break; |
| 6604 |
|
7267 |
|
| 6605 |
case 559 : if (DEBUG) { System.out.println("EnumDeclarations ::= SEMICOLON ClassBodyDeclarationsopt"); } //$NON-NLS-1$ |
7268 |
case 605 : if (DEBUG) { System.out.println("EnumDeclarations ::= SEMICOLON ClassBodyDeclarationsopt"); } //$NON-NLS-1$ |
| 6606 |
consumeEnumDeclarations(); |
7269 |
consumeEnumDeclarations(); |
| 6607 |
break; |
7270 |
break; |
| 6608 |
|
7271 |
|
| 6609 |
case 560 : if (DEBUG) { System.out.println("EnumBodyDeclarationsopt ::="); } //$NON-NLS-1$ |
7272 |
case 606 : if (DEBUG) { System.out.println("EnumBodyDeclarationsopt ::="); } //$NON-NLS-1$ |
| 6610 |
consumeEmptyEnumDeclarations(); |
7273 |
consumeEmptyEnumDeclarations(); |
| 6611 |
break; |
7274 |
break; |
| 6612 |
|
7275 |
|
| 6613 |
case 562 : if (DEBUG) { System.out.println("EnhancedForStatement ::= EnhancedForStatementHeader..."); } //$NON-NLS-1$ |
7276 |
case 608 : if (DEBUG) { System.out.println("EnhancedForStatement ::= EnhancedForStatementHeader..."); } //$NON-NLS-1$ |
| 6614 |
consumeEnhancedForStatement(); |
7277 |
consumeEnhancedForStatement(); |
| 6615 |
break; |
7278 |
break; |
| 6616 |
|
7279 |
|
| 6617 |
case 563 : if (DEBUG) { System.out.println("EnhancedForStatementNoShortIf ::=..."); } //$NON-NLS-1$ |
7280 |
case 609 : if (DEBUG) { System.out.println("EnhancedForStatementNoShortIf ::=..."); } //$NON-NLS-1$ |
| 6618 |
consumeEnhancedForStatement(); |
7281 |
consumeEnhancedForStatement(); |
| 6619 |
break; |
7282 |
break; |
| 6620 |
|
7283 |
|
| 6621 |
case 564 : if (DEBUG) { System.out.println("EnhancedForStatementHeaderInit ::= for LPAREN Type..."); } //$NON-NLS-1$ |
7284 |
case 610 : if (DEBUG) { System.out.println("EnhancedForStatementHeaderInit ::= for LPAREN Type0..."); } //$NON-NLS-1$ |
| 6622 |
consumeEnhancedForStatementHeaderInit(false); |
7285 |
consumeEnhancedForStatementHeaderInit(false); |
| 6623 |
break; |
7286 |
break; |
| 6624 |
|
7287 |
|
| 6625 |
case 565 : if (DEBUG) { System.out.println("EnhancedForStatementHeaderInit ::= for LPAREN Modifiers"); } //$NON-NLS-1$ |
7288 |
case 611 : if (DEBUG) { System.out.println("EnhancedForStatementHeaderInit ::= for LPAREN Modifiers"); } //$NON-NLS-1$ |
| 6626 |
consumeEnhancedForStatementHeaderInit(true); |
7289 |
consumeEnhancedForStatementHeaderInit(true); |
| 6627 |
break; |
7290 |
break; |
| 6628 |
|
7291 |
|
| 6629 |
case 566 : if (DEBUG) { System.out.println("EnhancedForStatementHeader ::=..."); } //$NON-NLS-1$ |
7292 |
case 612 : if (DEBUG) { System.out.println("EnhancedForStatementHeader ::=..."); } //$NON-NLS-1$ |
| 6630 |
consumeEnhancedForStatementHeader(); |
7293 |
consumeEnhancedForStatementHeader(); |
| 6631 |
break; |
7294 |
break; |
| 6632 |
|
7295 |
|
| 6633 |
case 567 : if (DEBUG) { System.out.println("SingleStaticImportDeclaration ::=..."); } //$NON-NLS-1$ |
7296 |
case 613 : if (DEBUG) { System.out.println("SingleStaticImportDeclaration ::=..."); } //$NON-NLS-1$ |
| 6634 |
consumeImportDeclaration(); |
7297 |
consumeImportDeclaration(); |
| 6635 |
break; |
7298 |
break; |
| 6636 |
|
7299 |
|
| 6637 |
case 568 : if (DEBUG) { System.out.println("SingleStaticImportDeclarationName ::= import static Name"); } //$NON-NLS-1$ |
7300 |
case 614 : if (DEBUG) { System.out.println("SingleStaticImportDeclarationName ::= import static Name"); } //$NON-NLS-1$ |
| 6638 |
consumeSingleStaticImportDeclarationName(); |
7301 |
consumeSingleStaticImportDeclarationName(); |
| 6639 |
break; |
7302 |
break; |
| 6640 |
|
7303 |
|
| 6641 |
case 569 : if (DEBUG) { System.out.println("StaticImportOnDemandDeclaration ::=..."); } //$NON-NLS-1$ |
7304 |
case 615 : if (DEBUG) { System.out.println("StaticImportOnDemandDeclaration ::=..."); } //$NON-NLS-1$ |
| 6642 |
consumeImportDeclaration(); |
7305 |
consumeImportDeclaration(); |
| 6643 |
break; |
7306 |
break; |
| 6644 |
|
7307 |
|
| 6645 |
case 570 : if (DEBUG) { System.out.println("StaticImportOnDemandDeclarationName ::= import static..."); } //$NON-NLS-1$ |
7308 |
case 616 : if (DEBUG) { System.out.println("StaticImportOnDemandDeclarationName ::= import static..."); } //$NON-NLS-1$ |
| 6646 |
consumeStaticImportOnDemandDeclarationName(); |
7309 |
consumeStaticImportOnDemandDeclarationName(); |
| 6647 |
break; |
7310 |
break; |
| 6648 |
|
7311 |
|
| 6649 |
case 571 : if (DEBUG) { System.out.println("TypeArguments ::= LESS TypeArgumentList1"); } //$NON-NLS-1$ |
7312 |
case 617 : if (DEBUG) { System.out.println("TypeArguments ::= LESS TypeArgumentList1"); } //$NON-NLS-1$ |
| 6650 |
consumeTypeArguments(); |
7313 |
consumeTypeArguments(); |
| 6651 |
break; |
7314 |
break; |
| 6652 |
|
7315 |
|
| 6653 |
case 572 : if (DEBUG) { System.out.println("OnlyTypeArguments ::= LESS TypeArgumentList1"); } //$NON-NLS-1$ |
7316 |
case 618 : if (DEBUG) { System.out.println("OnlyTypeArguments ::= LESS TypeArgumentList1"); } //$NON-NLS-1$ |
| 6654 |
consumeOnlyTypeArguments(); |
7317 |
consumeOnlyTypeArguments(); |
| 6655 |
break; |
7318 |
break; |
| 6656 |
|
7319 |
|
| 6657 |
case 574 : if (DEBUG) { System.out.println("TypeArgumentList1 ::= TypeArgumentList COMMA..."); } //$NON-NLS-1$ |
7320 |
case 620 : if (DEBUG) { System.out.println("TypeArgumentList1 ::= TypeArgumentList COMMA..."); } //$NON-NLS-1$ |
| 6658 |
consumeTypeArgumentList1(); |
7321 |
consumeTypeArgumentList1(); |
| 6659 |
break; |
7322 |
break; |
| 6660 |
|
7323 |
|
| 6661 |
case 576 : if (DEBUG) { System.out.println("TypeArgumentList ::= TypeArgumentList COMMA TypeArgument"); } //$NON-NLS-1$ |
7324 |
case 622 : if (DEBUG) { System.out.println("TypeArgumentList ::= TypeArgumentList COMMA TypeArgument"); } //$NON-NLS-1$ |
| 6662 |
consumeTypeArgumentList(); |
7325 |
consumeTypeArgumentList(); |
| 6663 |
break; |
7326 |
break; |
| 6664 |
|
7327 |
|
| 6665 |
case 577 : if (DEBUG) { System.out.println("TypeArgument ::= ReferenceType"); } //$NON-NLS-1$ |
7328 |
case 623 : if (DEBUG) { System.out.println("TypeArgument ::= ReferenceType"); } //$NON-NLS-1$ |
| 6666 |
consumeTypeArgument(); |
7329 |
consumeTypeArgument(); |
| 6667 |
break; |
7330 |
break; |
| 6668 |
|
7331 |
|
| 6669 |
case 581 : if (DEBUG) { System.out.println("ReferenceType1 ::= ReferenceType GREATER"); } //$NON-NLS-1$ |
7332 |
case 627 : if (DEBUG) { System.out.println("ReferenceType1 ::= ReferenceType GREATER"); } //$NON-NLS-1$ |
| 6670 |
consumeReferenceType1(); |
7333 |
consumeReferenceType1(); |
| 6671 |
break; |
7334 |
break; |
| 6672 |
|
7335 |
|
| 6673 |
case 582 : if (DEBUG) { System.out.println("ReferenceType1 ::= ClassOrInterface LESS..."); } //$NON-NLS-1$ |
7336 |
case 628 : if (DEBUG) { System.out.println("ReferenceType1 ::= ClassOrInterface LESS..."); } //$NON-NLS-1$ |
| 6674 |
consumeTypeArgumentReferenceType1(); |
7337 |
consumeTypeArgumentReferenceType1(); |
| 6675 |
break; |
7338 |
break; |
| 6676 |
|
7339 |
|
| 6677 |
case 584 : if (DEBUG) { System.out.println("TypeArgumentList2 ::= TypeArgumentList COMMA..."); } //$NON-NLS-1$ |
7340 |
case 629 : if (DEBUG) { System.out.println("ReferenceType1 ::= Modifiers ClassOrInterface LESS..."); } //$NON-NLS-1$ |
|
|
7341 |
consumeTypeArgumentReferenceType1WithTypeAnnotations(); |
| 7342 |
break; |
| 7343 |
|
| 7344 |
case 631 : if (DEBUG) { System.out.println("TypeArgumentList2 ::= TypeArgumentList COMMA..."); } //$NON-NLS-1$ |
| 6678 |
consumeTypeArgumentList2(); |
7345 |
consumeTypeArgumentList2(); |
| 6679 |
break; |
7346 |
break; |
| 6680 |
|
7347 |
|
| 6681 |
case 587 : if (DEBUG) { System.out.println("ReferenceType2 ::= ReferenceType RIGHT_SHIFT"); } //$NON-NLS-1$ |
7348 |
case 634 : if (DEBUG) { System.out.println("ReferenceType2 ::= ReferenceType RIGHT_SHIFT"); } //$NON-NLS-1$ |
| 6682 |
consumeReferenceType2(); |
7349 |
consumeReferenceType2(); |
| 6683 |
break; |
7350 |
break; |
| 6684 |
|
7351 |
|
| 6685 |
case 588 : if (DEBUG) { System.out.println("ReferenceType2 ::= ClassOrInterface LESS..."); } //$NON-NLS-1$ |
7352 |
case 635 : if (DEBUG) { System.out.println("ReferenceType2 ::= ClassOrInterface LESS..."); } //$NON-NLS-1$ |
| 6686 |
consumeTypeArgumentReferenceType2(); |
7353 |
consumeTypeArgumentReferenceType2(); |
| 6687 |
break; |
7354 |
break; |
| 6688 |
|
7355 |
|
| 6689 |
case 590 : if (DEBUG) { System.out.println("TypeArgumentList3 ::= TypeArgumentList COMMA..."); } //$NON-NLS-1$ |
7356 |
case 636 : if (DEBUG) { System.out.println("ReferenceType2 ::= Modifiers ClassOrInterface LESS..."); } //$NON-NLS-1$ |
|
|
7357 |
consumeTypeArgumentReferenceType2WithTypeAnnotations(); |
| 7358 |
break; |
| 7359 |
|
| 7360 |
case 638 : if (DEBUG) { System.out.println("TypeArgumentList3 ::= TypeArgumentList COMMA..."); } //$NON-NLS-1$ |
| 6690 |
consumeTypeArgumentList3(); |
7361 |
consumeTypeArgumentList3(); |
| 6691 |
break; |
7362 |
break; |
| 6692 |
|
7363 |
|
| 6693 |
case 593 : if (DEBUG) { System.out.println("ReferenceType3 ::= ReferenceType UNSIGNED_RIGHT_SHIFT"); } //$NON-NLS-1$ |
7364 |
case 641 : if (DEBUG) { System.out.println("ReferenceType3 ::= ReferenceType UNSIGNED_RIGHT_SHIFT"); } //$NON-NLS-1$ |
| 6694 |
consumeReferenceType3(); |
7365 |
consumeReferenceType3(); |
| 6695 |
break; |
7366 |
break; |
| 6696 |
|
7367 |
|
| 6697 |
case 594 : if (DEBUG) { System.out.println("Wildcard ::= QUESTION"); } //$NON-NLS-1$ |
7368 |
case 642 : if (DEBUG) { System.out.println("Wildcard ::= QUESTION"); } //$NON-NLS-1$ |
| 6698 |
consumeWildcard(); |
7369 |
consumeWildcard(); |
| 6699 |
break; |
7370 |
break; |
| 6700 |
|
7371 |
|
| 6701 |
case 595 : if (DEBUG) { System.out.println("Wildcard ::= QUESTION WildcardBounds"); } //$NON-NLS-1$ |
7372 |
case 643 : if (DEBUG) { System.out.println("Wildcard ::= QUESTION WildcardBounds"); } //$NON-NLS-1$ |
| 6702 |
consumeWildcardWithBounds(); |
7373 |
consumeWildcardWithBounds(); |
| 6703 |
break; |
7374 |
break; |
| 6704 |
|
7375 |
|
| 6705 |
case 596 : if (DEBUG) { System.out.println("WildcardBounds ::= extends ReferenceType"); } //$NON-NLS-1$ |
7376 |
case 644 : if (DEBUG) { System.out.println("WildcardBounds ::= extends ReferenceType"); } //$NON-NLS-1$ |
| 6706 |
consumeWildcardBoundsExtends(); |
7377 |
consumeWildcardBoundsExtends(); |
| 6707 |
break; |
7378 |
break; |
| 6708 |
|
7379 |
|
| 6709 |
case 597 : if (DEBUG) { System.out.println("WildcardBounds ::= super ReferenceType"); } //$NON-NLS-1$ |
7380 |
case 645 : if (DEBUG) { System.out.println("WildcardBounds ::= super ReferenceType"); } //$NON-NLS-1$ |
| 6710 |
consumeWildcardBoundsSuper(); |
7381 |
consumeWildcardBoundsSuper(); |
| 6711 |
break; |
7382 |
break; |
| 6712 |
|
7383 |
|
| 6713 |
case 598 : if (DEBUG) { System.out.println("Wildcard1 ::= QUESTION GREATER"); } //$NON-NLS-1$ |
7384 |
case 646 : if (DEBUG) { System.out.println("Wildcard1 ::= QUESTION GREATER"); } //$NON-NLS-1$ |
| 6714 |
consumeWildcard1(); |
7385 |
consumeWildcard1(); |
| 6715 |
break; |
7386 |
break; |
| 6716 |
|
7387 |
|
| 6717 |
case 599 : if (DEBUG) { System.out.println("Wildcard1 ::= QUESTION WildcardBounds1"); } //$NON-NLS-1$ |
7388 |
case 647 : if (DEBUG) { System.out.println("Wildcard1 ::= QUESTION WildcardBounds1"); } //$NON-NLS-1$ |
| 6718 |
consumeWildcard1WithBounds(); |
7389 |
consumeWildcard1WithBounds(); |
| 6719 |
break; |
7390 |
break; |
| 6720 |
|
7391 |
|
| 6721 |
case 600 : if (DEBUG) { System.out.println("WildcardBounds1 ::= extends ReferenceType1"); } //$NON-NLS-1$ |
7392 |
case 648 : if (DEBUG) { System.out.println("WildcardBounds1 ::= extends ReferenceType1"); } //$NON-NLS-1$ |
| 6722 |
consumeWildcardBounds1Extends(); |
7393 |
consumeWildcardBounds1Extends(); |
| 6723 |
break; |
7394 |
break; |
| 6724 |
|
7395 |
|
| 6725 |
case 601 : if (DEBUG) { System.out.println("WildcardBounds1 ::= super ReferenceType1"); } //$NON-NLS-1$ |
7396 |
case 649 : if (DEBUG) { System.out.println("WildcardBounds1 ::= super ReferenceType1"); } //$NON-NLS-1$ |
| 6726 |
consumeWildcardBounds1Super(); |
7397 |
consumeWildcardBounds1Super(); |
| 6727 |
break; |
7398 |
break; |
| 6728 |
|
7399 |
|
| 6729 |
case 602 : if (DEBUG) { System.out.println("Wildcard2 ::= QUESTION RIGHT_SHIFT"); } //$NON-NLS-1$ |
7400 |
case 650 : if (DEBUG) { System.out.println("Wildcard2 ::= QUESTION RIGHT_SHIFT"); } //$NON-NLS-1$ |
| 6730 |
consumeWildcard2(); |
7401 |
consumeWildcard2(); |
| 6731 |
break; |
7402 |
break; |
| 6732 |
|
7403 |
|
| 6733 |
case 603 : if (DEBUG) { System.out.println("Wildcard2 ::= QUESTION WildcardBounds2"); } //$NON-NLS-1$ |
7404 |
case 651 : if (DEBUG) { System.out.println("Wildcard2 ::= QUESTION WildcardBounds2"); } //$NON-NLS-1$ |
| 6734 |
consumeWildcard2WithBounds(); |
7405 |
consumeWildcard2WithBounds(); |
| 6735 |
break; |
7406 |
break; |
| 6736 |
|
7407 |
|
| 6737 |
case 604 : if (DEBUG) { System.out.println("WildcardBounds2 ::= extends ReferenceType2"); } //$NON-NLS-1$ |
7408 |
case 652 : if (DEBUG) { System.out.println("WildcardBounds2 ::= extends ReferenceType2"); } //$NON-NLS-1$ |
| 6738 |
consumeWildcardBounds2Extends(); |
7409 |
consumeWildcardBounds2Extends(); |
| 6739 |
break; |
7410 |
break; |
| 6740 |
|
7411 |
|
| 6741 |
case 605 : if (DEBUG) { System.out.println("WildcardBounds2 ::= super ReferenceType2"); } //$NON-NLS-1$ |
7412 |
case 653 : if (DEBUG) { System.out.println("WildcardBounds2 ::= super ReferenceType2"); } //$NON-NLS-1$ |
| 6742 |
consumeWildcardBounds2Super(); |
7413 |
consumeWildcardBounds2Super(); |
| 6743 |
break; |
7414 |
break; |
| 6744 |
|
7415 |
|
| 6745 |
case 606 : if (DEBUG) { System.out.println("Wildcard3 ::= QUESTION UNSIGNED_RIGHT_SHIFT"); } //$NON-NLS-1$ |
7416 |
case 654 : if (DEBUG) { System.out.println("Wildcard3 ::= QUESTION UNSIGNED_RIGHT_SHIFT"); } //$NON-NLS-1$ |
| 6746 |
consumeWildcard3(); |
7417 |
consumeWildcard3(); |
| 6747 |
break; |
7418 |
break; |
| 6748 |
|
7419 |
|
| 6749 |
case 607 : if (DEBUG) { System.out.println("Wildcard3 ::= QUESTION WildcardBounds3"); } //$NON-NLS-1$ |
7420 |
case 655 : if (DEBUG) { System.out.println("Wildcard3 ::= QUESTION WildcardBounds3"); } //$NON-NLS-1$ |
| 6750 |
consumeWildcard3WithBounds(); |
7421 |
consumeWildcard3WithBounds(); |
| 6751 |
break; |
7422 |
break; |
| 6752 |
|
7423 |
|
| 6753 |
case 608 : if (DEBUG) { System.out.println("WildcardBounds3 ::= extends ReferenceType3"); } //$NON-NLS-1$ |
7424 |
case 656 : if (DEBUG) { System.out.println("WildcardBounds3 ::= extends ReferenceType3"); } //$NON-NLS-1$ |
| 6754 |
consumeWildcardBounds3Extends(); |
7425 |
consumeWildcardBounds3Extends(); |
| 6755 |
break; |
7426 |
break; |
| 6756 |
|
7427 |
|
| 6757 |
case 609 : if (DEBUG) { System.out.println("WildcardBounds3 ::= super ReferenceType3"); } //$NON-NLS-1$ |
7428 |
case 657 : if (DEBUG) { System.out.println("WildcardBounds3 ::= super ReferenceType3"); } //$NON-NLS-1$ |
| 6758 |
consumeWildcardBounds3Super(); |
7429 |
consumeWildcardBounds3Super(); |
| 6759 |
break; |
7430 |
break; |
| 6760 |
|
7431 |
|
| 6761 |
case 610 : if (DEBUG) { System.out.println("TypeParameterHeader ::= Identifier"); } //$NON-NLS-1$ |
7432 |
case 658 : if (DEBUG) { System.out.println("PushZeroTypeAnnotations ::="); } //$NON-NLS-1$ |
|
|
7433 |
consumeZeroTypeAnnotations(true); |
| 7434 |
break; |
| 7435 |
|
| 7436 |
case 659 : if (DEBUG) { System.out.println("TypeParameterHeader ::= PushZeroTypeAnnotations..."); } //$NON-NLS-1$ |
| 6762 |
consumeTypeParameterHeader(); |
7437 |
consumeTypeParameterHeader(); |
| 6763 |
break; |
7438 |
break; |
| 6764 |
|
7439 |
|
| 6765 |
case 611 : if (DEBUG) { System.out.println("TypeParameters ::= LESS TypeParameterList1"); } //$NON-NLS-1$ |
7440 |
case 660 : if (DEBUG) { System.out.println("TypeParameterHeader ::= TypeAnnotations Identifier"); } //$NON-NLS-1$ |
|
|
7441 |
consumeTypeParameterHeader(); |
| 7442 |
break; |
| 7443 |
|
| 7444 |
case 661 : if (DEBUG) { System.out.println("TypeParameters ::= LESS TypeParameterList1"); } //$NON-NLS-1$ |
| 6766 |
consumeTypeParameters(); |
7445 |
consumeTypeParameters(); |
| 6767 |
break; |
7446 |
break; |
| 6768 |
|
7447 |
|
| 6769 |
case 613 : if (DEBUG) { System.out.println("TypeParameterList ::= TypeParameterList COMMA..."); } //$NON-NLS-1$ |
7448 |
case 663 : if (DEBUG) { System.out.println("TypeParameterList ::= TypeParameterList COMMA..."); } //$NON-NLS-1$ |
| 6770 |
consumeTypeParameterList(); |
7449 |
consumeTypeParameterList(); |
| 6771 |
break; |
7450 |
break; |
| 6772 |
|
7451 |
|
| 6773 |
case 615 : if (DEBUG) { System.out.println("TypeParameter ::= TypeParameterHeader extends..."); } //$NON-NLS-1$ |
7452 |
case 665 : if (DEBUG) { System.out.println("TypeParameter ::= TypeParameterHeader extends..."); } //$NON-NLS-1$ |
| 6774 |
consumeTypeParameterWithExtends(); |
7453 |
consumeTypeParameterWithExtends(); |
| 6775 |
break; |
7454 |
break; |
| 6776 |
|
7455 |
|
| 6777 |
case 616 : if (DEBUG) { System.out.println("TypeParameter ::= TypeParameterHeader extends..."); } //$NON-NLS-1$ |
7456 |
case 666 : if (DEBUG) { System.out.println("TypeParameter ::= TypeParameterHeader extends..."); } //$NON-NLS-1$ |
| 6778 |
consumeTypeParameterWithExtendsAndBounds(); |
7457 |
consumeTypeParameterWithExtendsAndBounds(); |
| 6779 |
break; |
7458 |
break; |
| 6780 |
|
7459 |
|
| 6781 |
case 618 : if (DEBUG) { System.out.println("AdditionalBoundList ::= AdditionalBoundList..."); } //$NON-NLS-1$ |
7460 |
case 668 : if (DEBUG) { System.out.println("AdditionalBoundList ::= AdditionalBoundList..."); } //$NON-NLS-1$ |
| 6782 |
consumeAdditionalBoundList(); |
7461 |
consumeAdditionalBoundList(); |
| 6783 |
break; |
7462 |
break; |
| 6784 |
|
7463 |
|
| 6785 |
case 619 : if (DEBUG) { System.out.println("AdditionalBound ::= AND ReferenceType"); } //$NON-NLS-1$ |
7464 |
case 669 : if (DEBUG) { System.out.println("AdditionalBound ::= AND ReferenceType"); } //$NON-NLS-1$ |
| 6786 |
consumeAdditionalBound(); |
7465 |
consumeAdditionalBound(); |
| 6787 |
break; |
7466 |
break; |
| 6788 |
|
7467 |
|
| 6789 |
case 621 : if (DEBUG) { System.out.println("TypeParameterList1 ::= TypeParameterList COMMA..."); } //$NON-NLS-1$ |
7468 |
case 671 : if (DEBUG) { System.out.println("TypeParameterList1 ::= TypeParameterList COMMA..."); } //$NON-NLS-1$ |
| 6790 |
consumeTypeParameterList1(); |
7469 |
consumeTypeParameterList1(); |
| 6791 |
break; |
7470 |
break; |
| 6792 |
|
7471 |
|
| 6793 |
case 622 : if (DEBUG) { System.out.println("TypeParameter1 ::= TypeParameterHeader GREATER"); } //$NON-NLS-1$ |
7472 |
case 672 : if (DEBUG) { System.out.println("TypeParameter1 ::= TypeParameterHeader GREATER"); } //$NON-NLS-1$ |
| 6794 |
consumeTypeParameter1(); |
7473 |
consumeTypeParameter1(); |
| 6795 |
break; |
7474 |
break; |
| 6796 |
|
7475 |
|
| 6797 |
case 623 : if (DEBUG) { System.out.println("TypeParameter1 ::= TypeParameterHeader extends..."); } //$NON-NLS-1$ |
7476 |
case 673 : if (DEBUG) { System.out.println("TypeParameter1 ::= TypeParameterHeader extends..."); } //$NON-NLS-1$ |
| 6798 |
consumeTypeParameter1WithExtends(); |
7477 |
consumeTypeParameter1WithExtends(); |
| 6799 |
break; |
7478 |
break; |
| 6800 |
|
7479 |
|
| 6801 |
case 624 : if (DEBUG) { System.out.println("TypeParameter1 ::= TypeParameterHeader extends..."); } //$NON-NLS-1$ |
7480 |
case 674 : if (DEBUG) { System.out.println("TypeParameter1 ::= TypeParameterHeader extends..."); } //$NON-NLS-1$ |
| 6802 |
consumeTypeParameter1WithExtendsAndBounds(); |
7481 |
consumeTypeParameter1WithExtendsAndBounds(); |
| 6803 |
break; |
7482 |
break; |
| 6804 |
|
7483 |
|
| 6805 |
case 626 : if (DEBUG) { System.out.println("AdditionalBoundList1 ::= AdditionalBoundList..."); } //$NON-NLS-1$ |
7484 |
case 676 : if (DEBUG) { System.out.println("AdditionalBoundList1 ::= AdditionalBoundList..."); } //$NON-NLS-1$ |
| 6806 |
consumeAdditionalBoundList1(); |
7485 |
consumeAdditionalBoundList1(); |
| 6807 |
break; |
7486 |
break; |
| 6808 |
|
7487 |
|
| 6809 |
case 627 : if (DEBUG) { System.out.println("AdditionalBound1 ::= AND ReferenceType1"); } //$NON-NLS-1$ |
7488 |
case 677 : if (DEBUG) { System.out.println("AdditionalBound1 ::= AND ReferenceType1"); } //$NON-NLS-1$ |
| 6810 |
consumeAdditionalBound1(); |
7489 |
consumeAdditionalBound1(); |
| 6811 |
break; |
7490 |
break; |
| 6812 |
|
7491 |
|
| 6813 |
case 633 : if (DEBUG) { System.out.println("UnaryExpression_NotName ::= PLUS PushPosition..."); } //$NON-NLS-1$ |
7492 |
case 683 : if (DEBUG) { System.out.println("UnaryExpression_NotName ::= PLUS PushPosition..."); } //$NON-NLS-1$ |
| 6814 |
consumeUnaryExpression(OperatorIds.PLUS); |
7493 |
consumeUnaryExpression(OperatorIds.PLUS); |
| 6815 |
break; |
7494 |
break; |
| 6816 |
|
7495 |
|
| 6817 |
case 634 : if (DEBUG) { System.out.println("UnaryExpression_NotName ::= MINUS PushPosition..."); } //$NON-NLS-1$ |
7496 |
case 684 : if (DEBUG) { System.out.println("UnaryExpression_NotName ::= MINUS PushPosition..."); } //$NON-NLS-1$ |
| 6818 |
consumeUnaryExpression(OperatorIds.MINUS); |
7497 |
consumeUnaryExpression(OperatorIds.MINUS); |
| 6819 |
break; |
7498 |
break; |
| 6820 |
|
7499 |
|
| 6821 |
case 637 : if (DEBUG) { System.out.println("UnaryExpressionNotPlusMinus_NotName ::= TWIDDLE..."); } //$NON-NLS-1$ |
7500 |
case 687 : if (DEBUG) { System.out.println("UnaryExpressionNotPlusMinus_NotName ::= TWIDDLE..."); } //$NON-NLS-1$ |
| 6822 |
consumeUnaryExpression(OperatorIds.TWIDDLE); |
7501 |
consumeUnaryExpression(OperatorIds.TWIDDLE); |
| 6823 |
break; |
7502 |
break; |
| 6824 |
|
7503 |
|
| 6825 |
case 638 : if (DEBUG) { System.out.println("UnaryExpressionNotPlusMinus_NotName ::= NOT PushPosition"); } //$NON-NLS-1$ |
7504 |
case 688 : if (DEBUG) { System.out.println("UnaryExpressionNotPlusMinus_NotName ::= NOT PushPosition"); } //$NON-NLS-1$ |
| 6826 |
consumeUnaryExpression(OperatorIds.NOT); |
7505 |
consumeUnaryExpression(OperatorIds.NOT); |
| 6827 |
break; |
7506 |
break; |
| 6828 |
|
7507 |
|
| 6829 |
case 641 : if (DEBUG) { System.out.println("MultiplicativeExpression_NotName ::=..."); } //$NON-NLS-1$ |
7508 |
case 691 : if (DEBUG) { System.out.println("MultiplicativeExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6830 |
consumeBinaryExpression(OperatorIds.MULTIPLY); |
7509 |
consumeBinaryExpression(OperatorIds.MULTIPLY); |
| 6831 |
break; |
7510 |
break; |
| 6832 |
|
7511 |
|
| 6833 |
case 642 : if (DEBUG) { System.out.println("MultiplicativeExpression_NotName ::= Name MULTIPLY..."); } //$NON-NLS-1$ |
7512 |
case 692 : if (DEBUG) { System.out.println("MultiplicativeExpression_NotName ::= Name MULTIPLY..."); } //$NON-NLS-1$ |
| 6834 |
consumeBinaryExpressionWithName(OperatorIds.MULTIPLY); |
7513 |
consumeBinaryExpressionWithName(OperatorIds.MULTIPLY); |
| 6835 |
break; |
7514 |
break; |
| 6836 |
|
7515 |
|
| 6837 |
case 643 : if (DEBUG) { System.out.println("MultiplicativeExpression_NotName ::=..."); } //$NON-NLS-1$ |
7516 |
case 693 : if (DEBUG) { System.out.println("MultiplicativeExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6838 |
consumeBinaryExpression(OperatorIds.DIVIDE); |
7517 |
consumeBinaryExpression(OperatorIds.DIVIDE); |
| 6839 |
break; |
7518 |
break; |
| 6840 |
|
7519 |
|
| 6841 |
case 644 : if (DEBUG) { System.out.println("MultiplicativeExpression_NotName ::= Name DIVIDE..."); } //$NON-NLS-1$ |
7520 |
case 694 : if (DEBUG) { System.out.println("MultiplicativeExpression_NotName ::= Name DIVIDE..."); } //$NON-NLS-1$ |
| 6842 |
consumeBinaryExpressionWithName(OperatorIds.DIVIDE); |
7521 |
consumeBinaryExpressionWithName(OperatorIds.DIVIDE); |
| 6843 |
break; |
7522 |
break; |
| 6844 |
|
7523 |
|
| 6845 |
case 645 : if (DEBUG) { System.out.println("MultiplicativeExpression_NotName ::=..."); } //$NON-NLS-1$ |
7524 |
case 695 : if (DEBUG) { System.out.println("MultiplicativeExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6846 |
consumeBinaryExpression(OperatorIds.REMAINDER); |
7525 |
consumeBinaryExpression(OperatorIds.REMAINDER); |
| 6847 |
break; |
7526 |
break; |
| 6848 |
|
7527 |
|
| 6849 |
case 646 : if (DEBUG) { System.out.println("MultiplicativeExpression_NotName ::= Name REMAINDER..."); } //$NON-NLS-1$ |
7528 |
case 696 : if (DEBUG) { System.out.println("MultiplicativeExpression_NotName ::= Name REMAINDER..."); } //$NON-NLS-1$ |
| 6850 |
consumeBinaryExpressionWithName(OperatorIds.REMAINDER); |
7529 |
consumeBinaryExpressionWithName(OperatorIds.REMAINDER); |
| 6851 |
break; |
7530 |
break; |
| 6852 |
|
7531 |
|
| 6853 |
case 648 : if (DEBUG) { System.out.println("AdditiveExpression_NotName ::=..."); } //$NON-NLS-1$ |
7532 |
case 698 : if (DEBUG) { System.out.println("AdditiveExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6854 |
consumeBinaryExpression(OperatorIds.PLUS); |
7533 |
consumeBinaryExpression(OperatorIds.PLUS); |
| 6855 |
break; |
7534 |
break; |
| 6856 |
|
7535 |
|
| 6857 |
case 649 : if (DEBUG) { System.out.println("AdditiveExpression_NotName ::= Name PLUS..."); } //$NON-NLS-1$ |
7536 |
case 699 : if (DEBUG) { System.out.println("AdditiveExpression_NotName ::= Name PLUS..."); } //$NON-NLS-1$ |
| 6858 |
consumeBinaryExpressionWithName(OperatorIds.PLUS); |
7537 |
consumeBinaryExpressionWithName(OperatorIds.PLUS); |
| 6859 |
break; |
7538 |
break; |
| 6860 |
|
7539 |
|
| 6861 |
case 650 : if (DEBUG) { System.out.println("AdditiveExpression_NotName ::=..."); } //$NON-NLS-1$ |
7540 |
case 700 : if (DEBUG) { System.out.println("AdditiveExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6862 |
consumeBinaryExpression(OperatorIds.MINUS); |
7541 |
consumeBinaryExpression(OperatorIds.MINUS); |
| 6863 |
break; |
7542 |
break; |
| 6864 |
|
7543 |
|
| 6865 |
case 651 : if (DEBUG) { System.out.println("AdditiveExpression_NotName ::= Name MINUS..."); } //$NON-NLS-1$ |
7544 |
case 701 : if (DEBUG) { System.out.println("AdditiveExpression_NotName ::= Name MINUS..."); } //$NON-NLS-1$ |
| 6866 |
consumeBinaryExpressionWithName(OperatorIds.MINUS); |
7545 |
consumeBinaryExpressionWithName(OperatorIds.MINUS); |
| 6867 |
break; |
7546 |
break; |
| 6868 |
|
7547 |
|
| 6869 |
case 653 : if (DEBUG) { System.out.println("ShiftExpression_NotName ::= ShiftExpression_NotName..."); } //$NON-NLS-1$ |
7548 |
case 703 : if (DEBUG) { System.out.println("ShiftExpression_NotName ::= ShiftExpression_NotName..."); } //$NON-NLS-1$ |
| 6870 |
consumeBinaryExpression(OperatorIds.LEFT_SHIFT); |
7549 |
consumeBinaryExpression(OperatorIds.LEFT_SHIFT); |
| 6871 |
break; |
7550 |
break; |
| 6872 |
|
7551 |
|
| 6873 |
case 654 : if (DEBUG) { System.out.println("ShiftExpression_NotName ::= Name LEFT_SHIFT..."); } //$NON-NLS-1$ |
7552 |
case 704 : if (DEBUG) { System.out.println("ShiftExpression_NotName ::= Name LEFT_SHIFT..."); } //$NON-NLS-1$ |
| 6874 |
consumeBinaryExpressionWithName(OperatorIds.LEFT_SHIFT); |
7553 |
consumeBinaryExpressionWithName(OperatorIds.LEFT_SHIFT); |
| 6875 |
break; |
7554 |
break; |
| 6876 |
|
7555 |
|
| 6877 |
case 655 : if (DEBUG) { System.out.println("ShiftExpression_NotName ::= ShiftExpression_NotName..."); } //$NON-NLS-1$ |
7556 |
case 705 : if (DEBUG) { System.out.println("ShiftExpression_NotName ::= ShiftExpression_NotName..."); } //$NON-NLS-1$ |
| 6878 |
consumeBinaryExpression(OperatorIds.RIGHT_SHIFT); |
7557 |
consumeBinaryExpression(OperatorIds.RIGHT_SHIFT); |
| 6879 |
break; |
7558 |
break; |
| 6880 |
|
7559 |
|
| 6881 |
case 656 : if (DEBUG) { System.out.println("ShiftExpression_NotName ::= Name RIGHT_SHIFT..."); } //$NON-NLS-1$ |
7560 |
case 706 : if (DEBUG) { System.out.println("ShiftExpression_NotName ::= Name RIGHT_SHIFT..."); } //$NON-NLS-1$ |
| 6882 |
consumeBinaryExpressionWithName(OperatorIds.RIGHT_SHIFT); |
7561 |
consumeBinaryExpressionWithName(OperatorIds.RIGHT_SHIFT); |
| 6883 |
break; |
7562 |
break; |
| 6884 |
|
7563 |
|
| 6885 |
case 657 : if (DEBUG) { System.out.println("ShiftExpression_NotName ::= ShiftExpression_NotName..."); } //$NON-NLS-1$ |
7564 |
case 707 : if (DEBUG) { System.out.println("ShiftExpression_NotName ::= ShiftExpression_NotName..."); } //$NON-NLS-1$ |
| 6886 |
consumeBinaryExpression(OperatorIds.UNSIGNED_RIGHT_SHIFT); |
7565 |
consumeBinaryExpression(OperatorIds.UNSIGNED_RIGHT_SHIFT); |
| 6887 |
break; |
7566 |
break; |
| 6888 |
|
7567 |
|
| 6889 |
case 658 : if (DEBUG) { System.out.println("ShiftExpression_NotName ::= Name UNSIGNED_RIGHT_SHIFT..."); } //$NON-NLS-1$ |
7568 |
case 708 : if (DEBUG) { System.out.println("ShiftExpression_NotName ::= Name UNSIGNED_RIGHT_SHIFT..."); } //$NON-NLS-1$ |
| 6890 |
consumeBinaryExpressionWithName(OperatorIds.UNSIGNED_RIGHT_SHIFT); |
7569 |
consumeBinaryExpressionWithName(OperatorIds.UNSIGNED_RIGHT_SHIFT); |
| 6891 |
break; |
7570 |
break; |
| 6892 |
|
7571 |
|
| 6893 |
case 660 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::= ShiftExpression_NotName"); } //$NON-NLS-1$ |
7572 |
case 710 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::= ShiftExpression_NotName"); } //$NON-NLS-1$ |
| 6894 |
consumeBinaryExpression(OperatorIds.LESS); |
7573 |
consumeBinaryExpression(OperatorIds.LESS); |
| 6895 |
break; |
7574 |
break; |
| 6896 |
|
7575 |
|
| 6897 |
case 661 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::= Name LESS..."); } //$NON-NLS-1$ |
7576 |
case 711 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::= Name LESS..."); } //$NON-NLS-1$ |
| 6898 |
consumeBinaryExpressionWithName(OperatorIds.LESS); |
7577 |
consumeBinaryExpressionWithName(OperatorIds.LESS); |
| 6899 |
break; |
7578 |
break; |
| 6900 |
|
7579 |
|
| 6901 |
case 662 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::= ShiftExpression_NotName"); } //$NON-NLS-1$ |
7580 |
case 712 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::= ShiftExpression_NotName"); } //$NON-NLS-1$ |
| 6902 |
consumeBinaryExpression(OperatorIds.GREATER); |
7581 |
consumeBinaryExpression(OperatorIds.GREATER); |
| 6903 |
break; |
7582 |
break; |
| 6904 |
|
7583 |
|
| 6905 |
case 663 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::= Name GREATER..."); } //$NON-NLS-1$ |
7584 |
case 713 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::= Name GREATER..."); } //$NON-NLS-1$ |
| 6906 |
consumeBinaryExpressionWithName(OperatorIds.GREATER); |
7585 |
consumeBinaryExpressionWithName(OperatorIds.GREATER); |
| 6907 |
break; |
7586 |
break; |
| 6908 |
|
7587 |
|
| 6909 |
case 664 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::=..."); } //$NON-NLS-1$ |
7588 |
case 714 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6910 |
consumeBinaryExpression(OperatorIds.LESS_EQUAL); |
7589 |
consumeBinaryExpression(OperatorIds.LESS_EQUAL); |
| 6911 |
break; |
7590 |
break; |
| 6912 |
|
7591 |
|
| 6913 |
case 665 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::= Name LESS_EQUAL..."); } //$NON-NLS-1$ |
7592 |
case 715 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::= Name LESS_EQUAL..."); } //$NON-NLS-1$ |
| 6914 |
consumeBinaryExpressionWithName(OperatorIds.LESS_EQUAL); |
7593 |
consumeBinaryExpressionWithName(OperatorIds.LESS_EQUAL); |
| 6915 |
break; |
7594 |
break; |
| 6916 |
|
7595 |
|
| 6917 |
case 666 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::=..."); } //$NON-NLS-1$ |
7596 |
case 716 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6918 |
consumeBinaryExpression(OperatorIds.GREATER_EQUAL); |
7597 |
consumeBinaryExpression(OperatorIds.GREATER_EQUAL); |
| 6919 |
break; |
7598 |
break; |
| 6920 |
|
7599 |
|
| 6921 |
case 667 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::= Name GREATER_EQUAL..."); } //$NON-NLS-1$ |
7600 |
case 717 : if (DEBUG) { System.out.println("RelationalExpression_NotName ::= Name GREATER_EQUAL..."); } //$NON-NLS-1$ |
| 6922 |
consumeBinaryExpressionWithName(OperatorIds.GREATER_EQUAL); |
7601 |
consumeBinaryExpressionWithName(OperatorIds.GREATER_EQUAL); |
| 6923 |
break; |
7602 |
break; |
| 6924 |
|
7603 |
|
| 6925 |
case 669 : if (DEBUG) { System.out.println("InstanceofExpression_NotName ::= Name instanceof..."); } //$NON-NLS-1$ |
7604 |
case 719 : if (DEBUG) { System.out.println("InstanceofExpression_NotName ::= Name instanceof..."); } //$NON-NLS-1$ |
| 6926 |
consumeInstanceOfExpressionWithName(); |
7605 |
consumeInstanceOfExpressionWithName(); |
| 6927 |
break; |
7606 |
break; |
| 6928 |
|
7607 |
|
| 6929 |
case 670 : if (DEBUG) { System.out.println("InstanceofExpression_NotName ::=..."); } //$NON-NLS-1$ |
7608 |
case 720 : if (DEBUG) { System.out.println("InstanceofExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6930 |
consumeInstanceOfExpression(); |
7609 |
consumeInstanceOfExpression(); |
| 6931 |
break; |
7610 |
break; |
| 6932 |
|
7611 |
|
| 6933 |
case 672 : if (DEBUG) { System.out.println("EqualityExpression_NotName ::=..."); } //$NON-NLS-1$ |
7612 |
case 722 : if (DEBUG) { System.out.println("EqualityExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6934 |
consumeEqualityExpression(OperatorIds.EQUAL_EQUAL); |
7613 |
consumeEqualityExpression(OperatorIds.EQUAL_EQUAL); |
| 6935 |
break; |
7614 |
break; |
| 6936 |
|
7615 |
|
| 6937 |
case 673 : if (DEBUG) { System.out.println("EqualityExpression_NotName ::= Name EQUAL_EQUAL..."); } //$NON-NLS-1$ |
7616 |
case 723 : if (DEBUG) { System.out.println("EqualityExpression_NotName ::= Name EQUAL_EQUAL..."); } //$NON-NLS-1$ |
| 6938 |
consumeEqualityExpressionWithName(OperatorIds.EQUAL_EQUAL); |
7617 |
consumeEqualityExpressionWithName(OperatorIds.EQUAL_EQUAL); |
| 6939 |
break; |
7618 |
break; |
| 6940 |
|
7619 |
|
| 6941 |
case 674 : if (DEBUG) { System.out.println("EqualityExpression_NotName ::=..."); } //$NON-NLS-1$ |
7620 |
case 724 : if (DEBUG) { System.out.println("EqualityExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6942 |
consumeEqualityExpression(OperatorIds.NOT_EQUAL); |
7621 |
consumeEqualityExpression(OperatorIds.NOT_EQUAL); |
| 6943 |
break; |
7622 |
break; |
| 6944 |
|
7623 |
|
| 6945 |
case 675 : if (DEBUG) { System.out.println("EqualityExpression_NotName ::= Name NOT_EQUAL..."); } //$NON-NLS-1$ |
7624 |
case 725 : if (DEBUG) { System.out.println("EqualityExpression_NotName ::= Name NOT_EQUAL..."); } //$NON-NLS-1$ |
| 6946 |
consumeEqualityExpressionWithName(OperatorIds.NOT_EQUAL); |
7625 |
consumeEqualityExpressionWithName(OperatorIds.NOT_EQUAL); |
| 6947 |
break; |
7626 |
break; |
| 6948 |
|
7627 |
|
| 6949 |
case 677 : if (DEBUG) { System.out.println("AndExpression_NotName ::= AndExpression_NotName AND..."); } //$NON-NLS-1$ |
7628 |
case 727 : if (DEBUG) { System.out.println("AndExpression_NotName ::= AndExpression_NotName AND..."); } //$NON-NLS-1$ |
| 6950 |
consumeBinaryExpression(OperatorIds.AND); |
7629 |
consumeBinaryExpression(OperatorIds.AND); |
| 6951 |
break; |
7630 |
break; |
| 6952 |
|
7631 |
|
| 6953 |
case 678 : if (DEBUG) { System.out.println("AndExpression_NotName ::= Name AND EqualityExpression"); } //$NON-NLS-1$ |
7632 |
case 728 : if (DEBUG) { System.out.println("AndExpression_NotName ::= Name AND EqualityExpression"); } //$NON-NLS-1$ |
| 6954 |
consumeBinaryExpressionWithName(OperatorIds.AND); |
7633 |
consumeBinaryExpressionWithName(OperatorIds.AND); |
| 6955 |
break; |
7634 |
break; |
| 6956 |
|
7635 |
|
| 6957 |
case 680 : if (DEBUG) { System.out.println("ExclusiveOrExpression_NotName ::=..."); } //$NON-NLS-1$ |
7636 |
case 730 : if (DEBUG) { System.out.println("ExclusiveOrExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6958 |
consumeBinaryExpression(OperatorIds.XOR); |
7637 |
consumeBinaryExpression(OperatorIds.XOR); |
| 6959 |
break; |
7638 |
break; |
| 6960 |
|
7639 |
|
| 6961 |
case 681 : if (DEBUG) { System.out.println("ExclusiveOrExpression_NotName ::= Name XOR AndExpression"); } //$NON-NLS-1$ |
7640 |
case 731 : if (DEBUG) { System.out.println("ExclusiveOrExpression_NotName ::= Name XOR AndExpression"); } //$NON-NLS-1$ |
| 6962 |
consumeBinaryExpressionWithName(OperatorIds.XOR); |
7641 |
consumeBinaryExpressionWithName(OperatorIds.XOR); |
| 6963 |
break; |
7642 |
break; |
| 6964 |
|
7643 |
|
| 6965 |
case 683 : if (DEBUG) { System.out.println("InclusiveOrExpression_NotName ::=..."); } //$NON-NLS-1$ |
7644 |
case 733 : if (DEBUG) { System.out.println("InclusiveOrExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6966 |
consumeBinaryExpression(OperatorIds.OR); |
7645 |
consumeBinaryExpression(OperatorIds.OR); |
| 6967 |
break; |
7646 |
break; |
| 6968 |
|
7647 |
|
| 6969 |
case 684 : if (DEBUG) { System.out.println("InclusiveOrExpression_NotName ::= Name OR..."); } //$NON-NLS-1$ |
7648 |
case 734 : if (DEBUG) { System.out.println("InclusiveOrExpression_NotName ::= Name OR..."); } //$NON-NLS-1$ |
| 6970 |
consumeBinaryExpressionWithName(OperatorIds.OR); |
7649 |
consumeBinaryExpressionWithName(OperatorIds.OR); |
| 6971 |
break; |
7650 |
break; |
| 6972 |
|
7651 |
|
| 6973 |
case 686 : if (DEBUG) { System.out.println("ConditionalAndExpression_NotName ::=..."); } //$NON-NLS-1$ |
7652 |
case 736 : if (DEBUG) { System.out.println("ConditionalAndExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6974 |
consumeBinaryExpression(OperatorIds.AND_AND); |
7653 |
consumeBinaryExpression(OperatorIds.AND_AND); |
| 6975 |
break; |
7654 |
break; |
| 6976 |
|
7655 |
|
| 6977 |
case 687 : if (DEBUG) { System.out.println("ConditionalAndExpression_NotName ::= Name AND_AND..."); } //$NON-NLS-1$ |
7656 |
case 737 : if (DEBUG) { System.out.println("ConditionalAndExpression_NotName ::= Name AND_AND..."); } //$NON-NLS-1$ |
| 6978 |
consumeBinaryExpressionWithName(OperatorIds.AND_AND); |
7657 |
consumeBinaryExpressionWithName(OperatorIds.AND_AND); |
| 6979 |
break; |
7658 |
break; |
| 6980 |
|
7659 |
|
| 6981 |
case 689 : if (DEBUG) { System.out.println("ConditionalOrExpression_NotName ::=..."); } //$NON-NLS-1$ |
7660 |
case 739 : if (DEBUG) { System.out.println("ConditionalOrExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6982 |
consumeBinaryExpression(OperatorIds.OR_OR); |
7661 |
consumeBinaryExpression(OperatorIds.OR_OR); |
| 6983 |
break; |
7662 |
break; |
| 6984 |
|
7663 |
|
| 6985 |
case 690 : if (DEBUG) { System.out.println("ConditionalOrExpression_NotName ::= Name OR_OR..."); } //$NON-NLS-1$ |
7664 |
case 740 : if (DEBUG) { System.out.println("ConditionalOrExpression_NotName ::= Name OR_OR..."); } //$NON-NLS-1$ |
| 6986 |
consumeBinaryExpressionWithName(OperatorIds.OR_OR); |
7665 |
consumeBinaryExpressionWithName(OperatorIds.OR_OR); |
| 6987 |
break; |
7666 |
break; |
| 6988 |
|
7667 |
|
| 6989 |
case 692 : if (DEBUG) { System.out.println("ConditionalExpression_NotName ::=..."); } //$NON-NLS-1$ |
7668 |
case 742 : if (DEBUG) { System.out.println("ConditionalExpression_NotName ::=..."); } //$NON-NLS-1$ |
| 6990 |
consumeConditionalExpression(OperatorIds.QUESTIONCOLON) ; |
7669 |
consumeConditionalExpression(OperatorIds.QUESTIONCOLON) ; |
| 6991 |
break; |
7670 |
break; |
| 6992 |
|
7671 |
|
| 6993 |
case 693 : if (DEBUG) { System.out.println("ConditionalExpression_NotName ::= Name QUESTION..."); } //$NON-NLS-1$ |
7672 |
case 743 : if (DEBUG) { System.out.println("ConditionalExpression_NotName ::= Name QUESTION..."); } //$NON-NLS-1$ |
| 6994 |
consumeConditionalExpressionWithName(OperatorIds.QUESTIONCOLON) ; |
7673 |
consumeConditionalExpressionWithName(OperatorIds.QUESTIONCOLON) ; |
| 6995 |
break; |
7674 |
break; |
| 6996 |
|
7675 |
|
| 6997 |
case 697 : if (DEBUG) { System.out.println("AnnotationTypeDeclarationHeaderName ::= Modifiers AT..."); } //$NON-NLS-1$ |
7676 |
case 747 : if (DEBUG) { System.out.println("AnnotationTypeDeclarationHeaderName ::= Modifiers AT..."); } //$NON-NLS-1$ |
| 6998 |
consumeAnnotationTypeDeclarationHeaderName() ; |
7677 |
consumeAnnotationTypeDeclarationHeaderName() ; |
| 6999 |
break; |
7678 |
break; |
| 7000 |
|
7679 |
|
| 7001 |
case 698 : if (DEBUG) { System.out.println("AnnotationTypeDeclarationHeaderName ::= Modifiers AT..."); } //$NON-NLS-1$ |
7680 |
case 748 : if (DEBUG) { System.out.println("AnnotationTypeDeclarationHeaderName ::= Modifiers AT..."); } //$NON-NLS-1$ |
| 7002 |
consumeAnnotationTypeDeclarationHeaderNameWithTypeParameters() ; |
7681 |
consumeAnnotationTypeDeclarationHeaderNameWithTypeParameters() ; |
| 7003 |
break; |
7682 |
break; |
| 7004 |
|
7683 |
|
| 7005 |
case 699 : if (DEBUG) { System.out.println("AnnotationTypeDeclarationHeaderName ::= AT..."); } //$NON-NLS-1$ |
7684 |
case 749 : if (DEBUG) { System.out.println("AnnotationTypeDeclarationHeaderName ::= AT..."); } //$NON-NLS-1$ |
| 7006 |
consumeAnnotationTypeDeclarationHeaderNameWithTypeParameters() ; |
7685 |
consumeAnnotationTypeDeclarationHeaderNameWithTypeParameters() ; |
| 7007 |
break; |
7686 |
break; |
| 7008 |
|
7687 |
|
| 7009 |
case 700 : if (DEBUG) { System.out.println("AnnotationTypeDeclarationHeaderName ::= AT..."); } //$NON-NLS-1$ |
7688 |
case 750 : if (DEBUG) { System.out.println("AnnotationTypeDeclarationHeaderName ::= AT..."); } //$NON-NLS-1$ |
| 7010 |
consumeAnnotationTypeDeclarationHeaderName() ; |
7689 |
consumeAnnotationTypeDeclarationHeaderName() ; |
| 7011 |
break; |
7690 |
break; |
| 7012 |
|
7691 |
|
| 7013 |
case 701 : if (DEBUG) { System.out.println("AnnotationTypeDeclarationHeader ::=..."); } //$NON-NLS-1$ |
7692 |
case 751 : if (DEBUG) { System.out.println("AnnotationTypeDeclarationHeader ::=..."); } //$NON-NLS-1$ |
| 7014 |
consumeAnnotationTypeDeclarationHeader() ; |
7693 |
consumeAnnotationTypeDeclarationHeader() ; |
| 7015 |
break; |
7694 |
break; |
| 7016 |
|
7695 |
|
| 7017 |
case 702 : if (DEBUG) { System.out.println("AnnotationTypeDeclaration ::=..."); } //$NON-NLS-1$ |
7696 |
case 752 : if (DEBUG) { System.out.println("AnnotationTypeDeclaration ::=..."); } //$NON-NLS-1$ |
| 7018 |
consumeAnnotationTypeDeclaration() ; |
7697 |
consumeAnnotationTypeDeclaration() ; |
| 7019 |
break; |
7698 |
break; |
| 7020 |
|
7699 |
|
| 7021 |
case 704 : if (DEBUG) { System.out.println("AnnotationTypeMemberDeclarationsopt ::="); } //$NON-NLS-1$ |
7700 |
case 754 : if (DEBUG) { System.out.println("AnnotationTypeMemberDeclarationsopt ::="); } //$NON-NLS-1$ |
| 7022 |
consumeEmptyAnnotationTypeMemberDeclarationsopt() ; |
7701 |
consumeEmptyAnnotationTypeMemberDeclarationsopt() ; |
| 7023 |
break; |
7702 |
break; |
| 7024 |
|
7703 |
|
| 7025 |
case 705 : if (DEBUG) { System.out.println("AnnotationTypeMemberDeclarationsopt ::= NestedType..."); } //$NON-NLS-1$ |
7704 |
case 755 : if (DEBUG) { System.out.println("AnnotationTypeMemberDeclarationsopt ::= NestedType..."); } //$NON-NLS-1$ |
| 7026 |
consumeAnnotationTypeMemberDeclarationsopt() ; |
7705 |
consumeAnnotationTypeMemberDeclarationsopt() ; |
| 7027 |
break; |
7706 |
break; |
| 7028 |
|
7707 |
|
| 7029 |
case 707 : if (DEBUG) { System.out.println("AnnotationTypeMemberDeclarations ::=..."); } //$NON-NLS-1$ |
7708 |
case 757 : if (DEBUG) { System.out.println("AnnotationTypeMemberDeclarations ::=..."); } //$NON-NLS-1$ |
| 7030 |
consumeAnnotationTypeMemberDeclarations() ; |
7709 |
consumeAnnotationTypeMemberDeclarations() ; |
| 7031 |
break; |
7710 |
break; |
| 7032 |
|
7711 |
|
| 7033 |
case 708 : if (DEBUG) { System.out.println("AnnotationMethodHeaderName ::= Modifiersopt..."); } //$NON-NLS-1$ |
7712 |
case 758 : if (DEBUG) { System.out.println("AnnotationMethodHeaderName ::= Modifiersopt..."); } //$NON-NLS-1$ |
| 7034 |
consumeMethodHeaderNameWithTypeParameters(true); |
7713 |
consumeMethodHeaderNameWithTypeParameters(true); |
| 7035 |
break; |
7714 |
break; |
| 7036 |
|
7715 |
|
| 7037 |
case 709 : if (DEBUG) { System.out.println("AnnotationMethodHeaderName ::= Modifiersopt Type..."); } //$NON-NLS-1$ |
7716 |
case 759 : if (DEBUG) { System.out.println("AnnotationMethodHeaderName ::= Modifiersopt Type0..."); } //$NON-NLS-1$ |
| 7038 |
consumeMethodHeaderName(true); |
7717 |
consumeMethodHeaderName(true); |
| 7039 |
break; |
7718 |
break; |
| 7040 |
|
7719 |
|
| 7041 |
case 710 : if (DEBUG) { System.out.println("AnnotationMethodHeaderDefaultValueopt ::="); } //$NON-NLS-1$ |
7720 |
case 760 : if (DEBUG) { System.out.println("AnnotationMethodHeaderDefaultValueopt ::="); } //$NON-NLS-1$ |
| 7042 |
consumeEmptyMethodHeaderDefaultValue() ; |
7721 |
consumeEmptyMethodHeaderDefaultValue() ; |
| 7043 |
break; |
7722 |
break; |
| 7044 |
|
7723 |
|
| 7045 |
case 711 : if (DEBUG) { System.out.println("AnnotationMethodHeaderDefaultValueopt ::= DefaultValue"); } //$NON-NLS-1$ |
7724 |
case 761 : if (DEBUG) { System.out.println("AnnotationMethodHeaderDefaultValueopt ::= DefaultValue"); } //$NON-NLS-1$ |
| 7046 |
consumeMethodHeaderDefaultValue(); |
7725 |
consumeMethodHeaderDefaultValue(); |
| 7047 |
break; |
7726 |
break; |
| 7048 |
|
7727 |
|
| 7049 |
case 712 : if (DEBUG) { System.out.println("AnnotationMethodHeader ::= AnnotationMethodHeaderName..."); } //$NON-NLS-1$ |
7728 |
case 762 : if (DEBUG) { System.out.println("AnnotationMethodHeader ::= AnnotationMethodHeaderName..."); } //$NON-NLS-1$ |
| 7050 |
consumeMethodHeader(); |
7729 |
consumeMethodHeader(); |
| 7051 |
break; |
7730 |
break; |
| 7052 |
|
7731 |
|
| 7053 |
case 713 : if (DEBUG) { System.out.println("AnnotationTypeMemberDeclaration ::=..."); } //$NON-NLS-1$ |
7732 |
case 763 : if (DEBUG) { System.out.println("AnnotationTypeMemberDeclaration ::=..."); } //$NON-NLS-1$ |
| 7054 |
consumeAnnotationTypeMemberDeclaration() ; |
7733 |
consumeAnnotationTypeMemberDeclaration() ; |
| 7055 |
break; |
7734 |
break; |
| 7056 |
|
7735 |
|
| 7057 |
case 721 : if (DEBUG) { System.out.println("AnnotationName ::= AT Name"); } //$NON-NLS-1$ |
7736 |
case 771 : if (DEBUG) { System.out.println("AnnotationName ::= AT Name"); } //$NON-NLS-1$ |
| 7058 |
consumeAnnotationName() ; |
7737 |
consumeAnnotationName() ; |
| 7059 |
break; |
7738 |
break; |
| 7060 |
|
7739 |
|
| 7061 |
case 722 : if (DEBUG) { System.out.println("NormalAnnotation ::= AnnotationName LPAREN..."); } //$NON-NLS-1$ |
7740 |
case 772 : if (DEBUG) { System.out.println("NormalAnnotation ::= AnnotationName LPAREN..."); } //$NON-NLS-1$ |
| 7062 |
consumeNormalAnnotation() ; |
7741 |
consumeNormalAnnotation() ; |
| 7063 |
break; |
7742 |
break; |
| 7064 |
|
7743 |
|
| 7065 |
case 723 : if (DEBUG) { System.out.println("MemberValuePairsopt ::="); } //$NON-NLS-1$ |
7744 |
case 773 : if (DEBUG) { System.out.println("MemberValuePairsopt ::="); } //$NON-NLS-1$ |
| 7066 |
consumeEmptyMemberValuePairsopt() ; |
7745 |
consumeEmptyMemberValuePairsopt() ; |
| 7067 |
break; |
7746 |
break; |
| 7068 |
|
7747 |
|
| 7069 |
case 726 : if (DEBUG) { System.out.println("MemberValuePairs ::= MemberValuePairs COMMA..."); } //$NON-NLS-1$ |
7748 |
case 776 : if (DEBUG) { System.out.println("MemberValuePairs ::= MemberValuePairs COMMA..."); } //$NON-NLS-1$ |
| 7070 |
consumeMemberValuePairs() ; |
7749 |
consumeMemberValuePairs() ; |
| 7071 |
break; |
7750 |
break; |
| 7072 |
|
7751 |
|
| 7073 |
case 727 : if (DEBUG) { System.out.println("MemberValuePair ::= SimpleName EQUAL EnterMemberValue..."); } //$NON-NLS-1$ |
7752 |
case 777 : if (DEBUG) { System.out.println("MemberValuePair ::= SimpleName EQUAL EnterMemberValue..."); } //$NON-NLS-1$ |
| 7074 |
consumeMemberValuePair() ; |
7753 |
consumeMemberValuePair() ; |
| 7075 |
break; |
7754 |
break; |
| 7076 |
|
7755 |
|
| 7077 |
case 728 : if (DEBUG) { System.out.println("EnterMemberValue ::="); } //$NON-NLS-1$ |
7756 |
case 778 : if (DEBUG) { System.out.println("EnterMemberValue ::="); } //$NON-NLS-1$ |
| 7078 |
consumeEnterMemberValue() ; |
7757 |
consumeEnterMemberValue() ; |
| 7079 |
break; |
7758 |
break; |
| 7080 |
|
7759 |
|
| 7081 |
case 729 : if (DEBUG) { System.out.println("ExitMemberValue ::="); } //$NON-NLS-1$ |
7760 |
case 779 : if (DEBUG) { System.out.println("ExitMemberValue ::="); } //$NON-NLS-1$ |
| 7082 |
consumeExitMemberValue() ; |
7761 |
consumeExitMemberValue() ; |
| 7083 |
break; |
7762 |
break; |
| 7084 |
|
7763 |
|
| 7085 |
case 731 : if (DEBUG) { System.out.println("MemberValue ::= Name"); } //$NON-NLS-1$ |
7764 |
case 781 : if (DEBUG) { System.out.println("MemberValue ::= Name"); } //$NON-NLS-1$ |
| 7086 |
consumeMemberValueAsName() ; |
7765 |
consumeMemberValueAsName() ; |
| 7087 |
break; |
7766 |
break; |
| 7088 |
|
7767 |
|
| 7089 |
case 734 : if (DEBUG) { System.out.println("MemberValueArrayInitializer ::=..."); } //$NON-NLS-1$ |
7768 |
case 784 : if (DEBUG) { System.out.println("MemberValueArrayInitializer ::=..."); } //$NON-NLS-1$ |
| 7090 |
consumeMemberValueArrayInitializer() ; |
7769 |
consumeMemberValueArrayInitializer() ; |
| 7091 |
break; |
7770 |
break; |
| 7092 |
|
7771 |
|
| 7093 |
case 735 : if (DEBUG) { System.out.println("MemberValueArrayInitializer ::=..."); } //$NON-NLS-1$ |
7772 |
case 785 : if (DEBUG) { System.out.println("MemberValueArrayInitializer ::=..."); } //$NON-NLS-1$ |
| 7094 |
consumeMemberValueArrayInitializer() ; |
7773 |
consumeMemberValueArrayInitializer() ; |
| 7095 |
break; |
7774 |
break; |
| 7096 |
|
7775 |
|
| 7097 |
case 736 : if (DEBUG) { System.out.println("MemberValueArrayInitializer ::=..."); } //$NON-NLS-1$ |
7776 |
case 786 : if (DEBUG) { System.out.println("MemberValueArrayInitializer ::=..."); } //$NON-NLS-1$ |
| 7098 |
consumeEmptyMemberValueArrayInitializer() ; |
7777 |
consumeEmptyMemberValueArrayInitializer() ; |
| 7099 |
break; |
7778 |
break; |
| 7100 |
|
7779 |
|
| 7101 |
case 737 : if (DEBUG) { System.out.println("MemberValueArrayInitializer ::=..."); } //$NON-NLS-1$ |
7780 |
case 787 : if (DEBUG) { System.out.println("MemberValueArrayInitializer ::=..."); } //$NON-NLS-1$ |
| 7102 |
consumeEmptyMemberValueArrayInitializer() ; |
7781 |
consumeEmptyMemberValueArrayInitializer() ; |
| 7103 |
break; |
7782 |
break; |
| 7104 |
|
7783 |
|
| 7105 |
case 738 : if (DEBUG) { System.out.println("EnterMemberValueArrayInitializer ::="); } //$NON-NLS-1$ |
7784 |
case 788 : if (DEBUG) { System.out.println("EnterMemberValueArrayInitializer ::="); } //$NON-NLS-1$ |
| 7106 |
consumeEnterMemberValueArrayInitializer() ; |
7785 |
consumeEnterMemberValueArrayInitializer() ; |
| 7107 |
break; |
7786 |
break; |
| 7108 |
|
7787 |
|
| 7109 |
case 740 : if (DEBUG) { System.out.println("MemberValues ::= MemberValues COMMA MemberValue"); } //$NON-NLS-1$ |
7788 |
case 790 : if (DEBUG) { System.out.println("MemberValues ::= MemberValues COMMA MemberValue"); } //$NON-NLS-1$ |
| 7110 |
consumeMemberValues() ; |
7789 |
consumeMemberValues() ; |
| 7111 |
break; |
7790 |
break; |
| 7112 |
|
7791 |
|
| 7113 |
case 741 : if (DEBUG) { System.out.println("MarkerAnnotation ::= AnnotationName"); } //$NON-NLS-1$ |
7792 |
case 791 : if (DEBUG) { System.out.println("MarkerAnnotation ::= AnnotationName"); } //$NON-NLS-1$ |
| 7114 |
consumeMarkerAnnotation() ; |
7793 |
consumeMarkerAnnotation() ; |
| 7115 |
break; |
7794 |
break; |
| 7116 |
|
7795 |
|
| 7117 |
case 742 : if (DEBUG) { System.out.println("SingleMemberAnnotationMemberValue ::= MemberValue"); } //$NON-NLS-1$ |
7796 |
case 792 : if (DEBUG) { System.out.println("SingleMemberAnnotationMemberValue ::= MemberValue"); } //$NON-NLS-1$ |
| 7118 |
consumeSingleMemberAnnotationMemberValue() ; |
7797 |
consumeSingleMemberAnnotationMemberValue() ; |
| 7119 |
break; |
7798 |
break; |
| 7120 |
|
7799 |
|
| 7121 |
case 743 : if (DEBUG) { System.out.println("SingleMemberAnnotation ::= AnnotationName LPAREN..."); } //$NON-NLS-1$ |
7800 |
case 793 : if (DEBUG) { System.out.println("SingleMemberAnnotation ::= AnnotationName LPAREN..."); } //$NON-NLS-1$ |
| 7122 |
consumeSingleMemberAnnotation() ; |
7801 |
consumeSingleMemberAnnotation() ; |
| 7123 |
break; |
7802 |
break; |
| 7124 |
|
7803 |
|
| 7125 |
case 744 : if (DEBUG) { System.out.println("RecoveryMethodHeaderName ::= Modifiersopt TypeParameters"); } //$NON-NLS-1$ |
7804 |
case 794 : if (DEBUG) { System.out.println("RecoveryMethodHeaderName ::= Modifiersopt TypeParameters"); } //$NON-NLS-1$ |
| 7126 |
consumeRecoveryMethodHeaderNameWithTypeParameters(); |
7805 |
consumeRecoveryMethodHeaderNameWithTypeParameters(); |
| 7127 |
break; |
7806 |
break; |
| 7128 |
|
7807 |
|
| 7129 |
case 745 : if (DEBUG) { System.out.println("RecoveryMethodHeaderName ::= Modifiersopt Type..."); } //$NON-NLS-1$ |
7808 |
case 795 : if (DEBUG) { System.out.println("RecoveryMethodHeaderName ::= Modifiersopt Type0..."); } //$NON-NLS-1$ |
| 7130 |
consumeRecoveryMethodHeaderName(); |
7809 |
consumeRecoveryMethodHeaderName(); |
| 7131 |
break; |
7810 |
break; |
| 7132 |
|
7811 |
|
| 7133 |
case 746 : if (DEBUG) { System.out.println("RecoveryMethodHeader ::= RecoveryMethodHeaderName..."); } //$NON-NLS-1$ |
7812 |
case 796 : if (DEBUG) { System.out.println("RecoveryMethodHeader ::= RecoveryMethodHeaderName..."); } //$NON-NLS-1$ |
| 7134 |
consumeMethodHeader(); |
7813 |
consumeMethodHeader(); |
| 7135 |
break; |
7814 |
break; |
| 7136 |
|
7815 |
|
| 7137 |
case 747 : if (DEBUG) { System.out.println("RecoveryMethodHeader ::= RecoveryMethodHeaderName..."); } //$NON-NLS-1$ |
7816 |
case 797 : if (DEBUG) { System.out.println("RecoveryMethodHeader ::= RecoveryMethodHeaderName..."); } //$NON-NLS-1$ |
| 7138 |
consumeMethodHeader(); |
7817 |
consumeMethodHeader(); |
| 7139 |
break; |
7818 |
break; |
| 7140 |
|
7819 |
|
| 7141 |
} |
7820 |
} |
|
|
7821 |
} |
| 7822 |
protected void consumeExplicitThisParameter() { |
| 7823 |
// VariableDeclaratorIdOrThis ::= 'this' |
| 7824 |
|
| 7825 |
int stackLength = this.identifierStack.length; |
| 7826 |
if (++this.identifierPtr >= stackLength) { |
| 7827 |
System.arraycopy( |
| 7828 |
this.identifierStack, 0, |
| 7829 |
this.identifierStack = new char[stackLength + 20][], 0, |
| 7830 |
stackLength); |
| 7831 |
System.arraycopy( |
| 7832 |
this.identifierPositionStack, 0, |
| 7833 |
this.identifierPositionStack = new long[stackLength + 20], 0, |
| 7834 |
stackLength); |
| 7835 |
} |
| 7836 |
this.identifierStack[this.identifierPtr] = ConstantPool.This; |
| 7837 |
int thisStart = this.intStack[this.intPtr--]; |
| 7838 |
this.identifierPositionStack[this.identifierPtr] = |
| 7839 |
(((long) thisStart << 32)) + (thisStart + 3); |
| 7840 |
|
| 7841 |
stackLength = this.identifierLengthStack.length; |
| 7842 |
if (++this.identifierLengthPtr >= stackLength) { |
| 7843 |
System.arraycopy( |
| 7844 |
this.identifierLengthStack, 0, |
| 7845 |
this.identifierLengthStack = new int[stackLength + 10], 0, |
| 7846 |
stackLength); |
| 7847 |
} |
| 7848 |
this.identifierLengthStack[this.identifierLengthPtr] = 1; |
| 7849 |
pushOnIntStack(0); // extended dimensions.. |
| 7142 |
} |
7850 |
} |
| 7143 |
protected void consumeLambdaExpression() { |
7851 |
protected void consumeLambdaExpression() { |
| 7144 |
|
7852 |
|
|
Lines 8287-8296
Link Here
|
| 8287 |
pushOnGenericsStack(getTypeReference(0)); |
8995 |
pushOnGenericsStack(getTypeReference(0)); |
| 8288 |
this.intPtr--; |
8996 |
this.intPtr--; |
| 8289 |
} |
8997 |
} |
|
|
8998 |
protected void consumeTypeArgumentReferenceType1WithTypeAnnotations() { |
| 8999 |
concatGenericsLists(); |
| 9000 |
TypeReference typeReference = getUnannotatedTypeReference(0); |
| 9001 |
// copy from expression stack to type annotation stack |
| 9002 |
int length; |
| 9003 |
if ((length = this.expressionLengthStack[this.expressionLengthPtr--]) != 0) { |
| 9004 |
System.arraycopy( |
| 9005 |
this.expressionStack, |
| 9006 |
(this.expressionPtr -= length) + 1, |
| 9007 |
typeReference.annotations = new Annotation[length], |
| 9008 |
0, |
| 9009 |
length); |
| 9010 |
int typeReferenceSourceStart = typeReference.annotations[0].sourceStart; |
| 9011 |
if (this.modifiersSourceStart < typeReferenceSourceStart) { |
| 9012 |
typeReferenceSourceStart = this.modifiersSourceStart; |
| 9013 |
} |
| 9014 |
typeReference.bits |= ASTNode.HasTypeAnnotations; |
| 9015 |
typeReference.sourceStart = typeReferenceSourceStart; |
| 9016 |
} |
| 9017 |
pushOnGenericsStack(typeReference); |
| 9018 |
// remove the 0 pushed by ZeroTypeAnnotation |
| 9019 |
this.typeAnnotationLengthPtr--; |
| 9020 |
this.intPtr--; |
| 9021 |
if (this.modifiers != ClassFileConstants.AccDefault) { |
| 9022 |
problemReporter().invalidLocationForModifiers(typeReference); |
| 9023 |
} |
| 9024 |
resetModifiers(); |
| 9025 |
} |
| 8290 |
protected void consumeTypeArgumentReferenceType2() { |
9026 |
protected void consumeTypeArgumentReferenceType2() { |
| 8291 |
concatGenericsLists(); |
9027 |
concatGenericsLists(); |
| 8292 |
pushOnGenericsStack(getTypeReference(0)); |
9028 |
pushOnGenericsStack(getTypeReference(0)); |
| 8293 |
this.intPtr--; |
9029 |
this.intPtr--; |
|
|
9030 |
} |
| 9031 |
protected void consumeTypeArgumentReferenceType2WithTypeAnnotations() { |
| 9032 |
concatGenericsLists(); |
| 9033 |
TypeReference typeReference = getUnannotatedTypeReference(0); |
| 9034 |
// copy from expression stack to type annotation stack |
| 9035 |
int length; |
| 9036 |
if ((length = this.expressionLengthStack[this.expressionLengthPtr--]) != 0) { |
| 9037 |
System.arraycopy( |
| 9038 |
this.expressionStack, |
| 9039 |
(this.expressionPtr -= length) + 1, |
| 9040 |
typeReference.annotations = new Annotation[length], |
| 9041 |
0, |
| 9042 |
length); |
| 9043 |
int typeReferenceSourceStart = typeReference.annotations[0].sourceStart; |
| 9044 |
if (this.modifiersSourceStart < typeReferenceSourceStart) { |
| 9045 |
typeReferenceSourceStart = this.modifiersSourceStart; |
| 9046 |
} |
| 9047 |
typeReference.bits |= ASTNode.HasTypeAnnotations; |
| 9048 |
typeReference.sourceStart = typeReferenceSourceStart; |
| 9049 |
} |
| 9050 |
pushOnGenericsStack(typeReference); |
| 9051 |
this.intPtr--; |
| 9052 |
if (this.modifiers != ClassFileConstants.AccDefault) { |
| 9053 |
problemReporter().invalidLocationForModifiers(typeReference); |
| 9054 |
} |
| 9055 |
resetModifiers(); |
| 8294 |
} |
9056 |
} |
| 8295 |
protected void consumeTypeArguments() { |
9057 |
protected void consumeTypeArguments() { |
| 8296 |
concatGenericsLists(); |
9058 |
concatGenericsLists(); |
|
Lines 8380-8385
Link Here
|
| 8380 |
typeParameter.declarationSourceEnd = superType.sourceEnd; |
9142 |
typeParameter.declarationSourceEnd = superType.sourceEnd; |
| 8381 |
typeParameter.type = superType; |
9143 |
typeParameter.type = superType; |
| 8382 |
superType.bits |= ASTNode.IsSuperType; |
9144 |
superType.bits |= ASTNode.IsSuperType; |
|
|
9145 |
typeParameter.bits |= (superType.bits & ASTNode.HasTypeAnnotations); |
| 8383 |
this.genericsStack[this.genericsPtr] = typeParameter; |
9146 |
this.genericsStack[this.genericsPtr] = typeParameter; |
| 8384 |
} |
9147 |
} |
| 8385 |
protected void consumeTypeParameter1WithExtendsAndBounds() { |
9148 |
protected void consumeTypeParameter1WithExtendsAndBounds() { |
|
Lines 8392-8406
Link Here
|
| 8392 |
TypeParameter typeParameter = (TypeParameter) this.genericsStack[this.genericsPtr]; |
9155 |
TypeParameter typeParameter = (TypeParameter) this.genericsStack[this.genericsPtr]; |
| 8393 |
typeParameter.declarationSourceEnd = bounds[additionalBoundsLength - 1].sourceEnd; |
9156 |
typeParameter.declarationSourceEnd = bounds[additionalBoundsLength - 1].sourceEnd; |
| 8394 |
typeParameter.type = superType; |
9157 |
typeParameter.type = superType; |
|
|
9158 |
typeParameter.bits |= (superType.bits & ASTNode.HasTypeAnnotations); |
| 8395 |
superType.bits |= ASTNode.IsSuperType; |
9159 |
superType.bits |= ASTNode.IsSuperType; |
| 8396 |
typeParameter.bounds = bounds; |
9160 |
typeParameter.bounds = bounds; |
| 8397 |
for (int i = 0, max = bounds.length; i < max; i++) { |
9161 |
for (int i = 0, max = bounds.length; i < max; i++) { |
| 8398 |
bounds[i].bits |= ASTNode.IsSuperType; |
9162 |
TypeReference bound = bounds[i]; |
|
|
9163 |
bound.bits |= ASTNode.IsSuperType; |
| 9164 |
typeParameter.bits |= (bound.bits & ASTNode.HasTypeAnnotations); |
| 8399 |
} |
9165 |
} |
| 8400 |
} |
9166 |
} |
| 8401 |
protected void consumeTypeParameterHeader() { |
9167 |
protected void consumeTypeParameterHeader() { |
| 8402 |
//TypeParameterHeader ::= Identifier |
9168 |
//TypeParameterHeader ::= Identifier |
| 8403 |
TypeParameter typeParameter = new TypeParameter(); |
9169 |
TypeParameter typeParameter = new TypeParameter(); |
|
|
9170 |
int length; |
| 9171 |
if ((length = this.typeAnnotationLengthStack[this.typeAnnotationLengthPtr--]) != 0) { |
| 9172 |
System.arraycopy( |
| 9173 |
this.typeAnnotationStack, |
| 9174 |
(this.typeAnnotationPtr -= length) + 1, |
| 9175 |
typeParameter.annotations = new Annotation[length], |
| 9176 |
0, |
| 9177 |
length); |
| 9178 |
typeParameter.bits |= ASTNode.HasTypeAnnotations; |
| 9179 |
} |
| 8404 |
long pos = this.identifierPositionStack[this.identifierPtr]; |
9180 |
long pos = this.identifierPositionStack[this.identifierPtr]; |
| 8405 |
final int end = (int) pos; |
9181 |
final int end = (int) pos; |
| 8406 |
typeParameter.declarationSourceEnd = end; |
9182 |
typeParameter.declarationSourceEnd = end; |
|
Lines 8452-8457
Link Here
|
| 8452 |
TypeParameter typeParameter = (TypeParameter) this.genericsStack[this.genericsPtr]; |
9228 |
TypeParameter typeParameter = (TypeParameter) this.genericsStack[this.genericsPtr]; |
| 8453 |
typeParameter.declarationSourceEnd = superType.sourceEnd; |
9229 |
typeParameter.declarationSourceEnd = superType.sourceEnd; |
| 8454 |
typeParameter.type = superType; |
9230 |
typeParameter.type = superType; |
|
|
9231 |
typeParameter.bits |= (superType.bits & ASTNode.HasTypeAnnotations); |
| 8455 |
superType.bits |= ASTNode.IsSuperType; |
9232 |
superType.bits |= ASTNode.IsSuperType; |
| 8456 |
} |
9233 |
} |
| 8457 |
protected void consumeTypeParameterWithExtendsAndBounds() { |
9234 |
protected void consumeTypeParameterWithExtendsAndBounds() { |
|
Lines 8463-8473
Link Here
|
| 8463 |
TypeReference superType = getTypeReference(this.intStack[this.intPtr--]); |
9240 |
TypeReference superType = getTypeReference(this.intStack[this.intPtr--]); |
| 8464 |
TypeParameter typeParameter = (TypeParameter) this.genericsStack[this.genericsPtr]; |
9241 |
TypeParameter typeParameter = (TypeParameter) this.genericsStack[this.genericsPtr]; |
| 8465 |
typeParameter.type = superType; |
9242 |
typeParameter.type = superType; |
|
|
9243 |
typeParameter.bits |= (superType.bits & ASTNode.HasTypeAnnotations); |
| 8466 |
superType.bits |= ASTNode.IsSuperType; |
9244 |
superType.bits |= ASTNode.IsSuperType; |
| 8467 |
typeParameter.bounds = bounds; |
9245 |
typeParameter.bounds = bounds; |
| 8468 |
typeParameter.declarationSourceEnd = bounds[additionalBoundsLength - 1].sourceEnd; |
9246 |
typeParameter.declarationSourceEnd = bounds[additionalBoundsLength - 1].sourceEnd; |
| 8469 |
for (int i = 0, max = bounds.length; i < max; i++) { |
9247 |
for (int i = 0, max = bounds.length; i < max; i++) { |
| 8470 |
bounds[i].bits |= ASTNode.IsSuperType; |
9248 |
TypeReference bound = bounds[i]; |
|
|
9249 |
bound.bits |= ASTNode.IsSuperType; |
| 9250 |
typeParameter.bits |= (bound.bits & ASTNode.HasTypeAnnotations); |
| 8471 |
} |
9251 |
} |
| 8472 |
} |
9252 |
} |
| 8473 |
protected void consumeUnaryExpression(int op) { |
9253 |
protected void consumeUnaryExpression(int op) { |
|
Lines 8666-8671
Link Here
|
| 8666 |
// Nothing to do |
9446 |
// Nothing to do |
| 8667 |
// The wildcard is created by the consumeWildcardBoundsExtends or by consumeWildcardBoundsSuper |
9447 |
// The wildcard is created by the consumeWildcardBoundsExtends or by consumeWildcardBoundsSuper |
| 8668 |
} |
9448 |
} |
|
|
9449 |
|
| 8669 |
/** |
9450 |
/** |
| 8670 |
* Given the current comment stack, answer whether some comment is available in a certain exclusive range |
9451 |
* Given the current comment stack, answer whether some comment is available in a certain exclusive range |
| 8671 |
* |
9452 |
* |
|
Lines 8705-8716
Link Here
|
| 8705 |
m.explicitDeclarations = c.explicitDeclarations; |
9486 |
m.explicitDeclarations = c.explicitDeclarations; |
| 8706 |
m.returnType = null; |
9487 |
m.returnType = null; |
| 8707 |
m.javadoc = c.javadoc; |
9488 |
m.javadoc = c.javadoc; |
|
|
9489 |
m.bits = c.bits; |
| 8708 |
return m; |
9490 |
return m; |
| 8709 |
} |
9491 |
} |
| 8710 |
|
9492 |
|
| 8711 |
protected TypeReference copyDims(TypeReference typeRef, int dim) { |
9493 |
protected TypeReference copyDims(TypeReference typeRef, int dim) { |
| 8712 |
return typeRef.copyDims(dim); |
9494 |
return typeRef.copyDims(dim); |
| 8713 |
} |
9495 |
} |
|
|
9496 |
|
| 9497 |
protected TypeReference copyDims(TypeReference typeRef, int dim, Annotation[][]annotationsOnDimensions) { |
| 9498 |
return typeRef.copyDims(dim, annotationsOnDimensions); |
| 9499 |
} |
| 9500 |
|
| 8714 |
protected FieldDeclaration createFieldDeclaration(char[] fieldDeclarationName, int sourceStart, int sourceEnd) { |
9501 |
protected FieldDeclaration createFieldDeclaration(char[] fieldDeclarationName, int sourceStart, int sourceEnd) { |
| 8715 |
return new FieldDeclaration(fieldDeclarationName, sourceStart, sourceEnd); |
9502 |
return new FieldDeclaration(fieldDeclarationName, sourceStart, sourceEnd); |
| 8716 |
} |
9503 |
} |
|
Lines 9192-9204
Link Here
|
| 9192 |
return exp; |
9979 |
return exp; |
| 9193 |
} |
9980 |
} |
| 9194 |
protected TypeReference getTypeReference(int dim) { |
9981 |
protected TypeReference getTypeReference(int dim) { |
|
|
9982 |
TypeReference ref = getUnannotatedTypeReference(dim); |
| 9983 |
int length; |
| 9984 |
if (this.typeAnnotationLengthPtr >= 0 |
| 9985 |
&& (length = this.typeAnnotationLengthStack[this.typeAnnotationLengthPtr--]) != 0) { |
| 9986 |
// if ((length = this.typeAnnotationLengthStack[this.typeAnnotationLengthPtr--]) != 0) { |
| 9987 |
|
| 9988 |
System.arraycopy( |
| 9989 |
this.typeAnnotationStack, |
| 9990 |
(this.typeAnnotationPtr -= length) + 1, |
| 9991 |
ref.annotations = new Annotation[length], |
| 9992 |
0, |
| 9993 |
length); |
| 9994 |
ref.sourceStart = ref.annotations[0].sourceStart; |
| 9995 |
ref.bits |= ASTNode.HasTypeAnnotations; |
| 9996 |
} |
| 9997 |
return ref; |
| 9998 |
} |
| 9999 |
protected TypeReference getUnannotatedTypeReference(int dim) { |
| 9195 |
/* build a Reference on a variable that may be qualified or not |
10000 |
/* build a Reference on a variable that may be qualified or not |
| 9196 |
This variable is a type reference and dim will be its dimensions*/ |
10001 |
This variable is a type reference and dim will be its dimensions*/ |
| 9197 |
|
10002 |
|
| 9198 |
TypeReference ref; |
10003 |
TypeReference ref; |
|
|
10004 |
Annotation [][] annotationsOnDimensions = null; |
| 9199 |
int length = this.identifierLengthStack[this.identifierLengthPtr--]; |
10005 |
int length = this.identifierLengthStack[this.identifierLengthPtr--]; |
| 9200 |
if (length < 0) { //flag for precompiled type reference on base types |
10006 |
if (length < 0) { //flag for precompiled type reference on base types |
| 9201 |
ref = TypeReference.baseTypeReference(-length, dim); |
10007 |
if (dim > 0) { |
|
|
10008 |
annotationsOnDimensions = getAnnotationsOnDimensions(dim); |
| 10009 |
} |
| 10010 |
ref = TypeReference.baseTypeReference(-length, dim, annotationsOnDimensions); |
| 9202 |
ref.sourceStart = this.intStack[this.intPtr--]; |
10011 |
ref.sourceStart = this.intStack[this.intPtr--]; |
| 9203 |
if (dim == 0) { |
10012 |
if (dim == 0) { |
| 9204 |
ref.sourceEnd = this.intStack[this.intPtr--]; |
10013 |
ref.sourceEnd = this.intStack[this.intPtr--]; |
|
Lines 9220-9231
Link Here
|
| 9220 |
this.identifierStack[this.identifierPtr], |
10029 |
this.identifierStack[this.identifierPtr], |
| 9221 |
this.identifierPositionStack[this.identifierPtr--]); |
10030 |
this.identifierPositionStack[this.identifierPtr--]); |
| 9222 |
} else { |
10031 |
} else { |
|
|
10032 |
annotationsOnDimensions = getAnnotationsOnDimensions(dim); |
| 9223 |
ref = |
10033 |
ref = |
| 9224 |
new ArrayTypeReference( |
10034 |
new ArrayTypeReference( |
| 9225 |
this.identifierStack[this.identifierPtr], |
10035 |
this.identifierStack[this.identifierPtr], |
| 9226 |
dim, |
10036 |
dim, |
|
|
10037 |
annotationsOnDimensions, |
| 9227 |
this.identifierPositionStack[this.identifierPtr--]); |
10038 |
this.identifierPositionStack[this.identifierPtr--]); |
| 9228 |
ref.sourceEnd = this.endPosition; |
10039 |
ref.sourceEnd = this.endPosition; |
|
|
10040 |
if (annotationsOnDimensions != null) { |
| 10041 |
ref.bits |= ASTNode.HasTypeAnnotations; |
| 10042 |
} |
| 9229 |
} |
10043 |
} |
| 9230 |
} else { |
10044 |
} else { |
| 9231 |
this.genericsLengthPtr--; |
10045 |
this.genericsLengthPtr--; |
|
Lines 9243-9256
Link Here
|
| 9243 |
if (dim == 0) { |
10057 |
if (dim == 0) { |
| 9244 |
ref = new QualifiedTypeReference(tokens, positions); |
10058 |
ref = new QualifiedTypeReference(tokens, positions); |
| 9245 |
} else { |
10059 |
} else { |
| 9246 |
ref = new ArrayQualifiedTypeReference(tokens, dim, positions); |
10060 |
annotationsOnDimensions = getAnnotationsOnDimensions(dim); |
|
|
10061 |
ref = new ArrayQualifiedTypeReference(tokens, dim, annotationsOnDimensions, positions); |
| 9247 |
ref.sourceEnd = this.endPosition; |
10062 |
ref.sourceEnd = this.endPosition; |
|
|
10063 |
ref.bits |= ASTNode.HasTypeAnnotations; |
| 9248 |
} |
10064 |
} |
| 9249 |
} |
10065 |
} |
| 9250 |
} |
10066 |
} |
| 9251 |
return ref; |
10067 |
return ref; |
| 9252 |
} |
10068 |
} |
| 9253 |
protected TypeReference getTypeReferenceForGenericType(int dim, int identifierLength, int numberOfIdentifiers) { |
10069 |
protected TypeReference getTypeReferenceForGenericType(int dim, int identifierLength, int numberOfIdentifiers) { |
|
|
10070 |
Annotation[][] annotationsOnDimensions = dim == 0 ? null : getAnnotationsOnDimensions(dim); |
| 9254 |
if (identifierLength == 1 && numberOfIdentifiers == 1) { |
10071 |
if (identifierLength == 1 && numberOfIdentifiers == 1) { |
| 9255 |
int currentTypeArgumentsLength = this.genericsLengthStack[this.genericsLengthPtr--]; |
10072 |
int currentTypeArgumentsLength = this.genericsLengthStack[this.genericsLengthPtr--]; |
| 9256 |
TypeReference[] typeArguments = null; |
10073 |
TypeReference[] typeArguments = null; |
|
Lines 9261-9267
Link Here
|
| 9261 |
this.genericsPtr -= currentTypeArgumentsLength; |
10078 |
this.genericsPtr -= currentTypeArgumentsLength; |
| 9262 |
System.arraycopy(this.genericsStack, this.genericsPtr + 1, typeArguments, 0, currentTypeArgumentsLength); |
10079 |
System.arraycopy(this.genericsStack, this.genericsPtr + 1, typeArguments, 0, currentTypeArgumentsLength); |
| 9263 |
} |
10080 |
} |
| 9264 |
ParameterizedSingleTypeReference parameterizedSingleTypeReference = new ParameterizedSingleTypeReference(this.identifierStack[this.identifierPtr], typeArguments, dim, this.identifierPositionStack[this.identifierPtr--]); |
10081 |
ParameterizedSingleTypeReference parameterizedSingleTypeReference = new ParameterizedSingleTypeReference(this.identifierStack[this.identifierPtr], typeArguments, dim, annotationsOnDimensions, this.identifierPositionStack[this.identifierPtr--]); |
| 9265 |
if (dim != 0) { |
10082 |
if (dim != 0) { |
| 9266 |
parameterizedSingleTypeReference.sourceEnd = this.endStatementPosition; |
10083 |
parameterizedSingleTypeReference.sourceEnd = this.endStatementPosition; |
| 9267 |
} |
10084 |
} |
|
Lines 9303-9309
Link Here
|
| 9303 |
currentIdentifiersLength = this.identifierLengthStack[this.identifierLengthPtr--]; |
10120 |
currentIdentifiersLength = this.identifierLengthStack[this.identifierLengthPtr--]; |
| 9304 |
} |
10121 |
} |
| 9305 |
} |
10122 |
} |
| 9306 |
ParameterizedQualifiedTypeReference parameterizedQualifiedTypeReference = new ParameterizedQualifiedTypeReference(tokens, typeArguments, dim, positions); |
10123 |
ParameterizedQualifiedTypeReference parameterizedQualifiedTypeReference = new ParameterizedQualifiedTypeReference(tokens, typeArguments, dim, annotationsOnDimensions, positions); |
| 9307 |
if (dim != 0) { |
10124 |
if (dim != 0) { |
| 9308 |
parameterizedQualifiedTypeReference.sourceEnd = this.endStatementPosition; |
10125 |
parameterizedQualifiedTypeReference.sourceEnd = this.endStatementPosition; |
| 9309 |
} |
10126 |
} |
|
Lines 9535-9540
Link Here
|
| 9535 |
this.astLengthPtr = -1; |
10352 |
this.astLengthPtr = -1; |
| 9536 |
this.expressionPtr = -1; |
10353 |
this.expressionPtr = -1; |
| 9537 |
this.expressionLengthPtr = -1; |
10354 |
this.expressionLengthPtr = -1; |
|
|
10355 |
this.unattachedAnnotationPtr = -1; |
| 10356 |
this.typeAnnotationLengthPtr = -1; |
| 10357 |
this.typeAnnotationPtr = -1; |
| 9538 |
this.identifierPtr = -1; |
10358 |
this.identifierPtr = -1; |
| 9539 |
this.identifierLengthPtr = -1; |
10359 |
this.identifierLengthPtr = -1; |
| 9540 |
this.intPtr = -1; |
10360 |
this.intPtr = -1; |
|
Lines 10706-10711
Link Here
|
| 10706 |
} |
11526 |
} |
| 10707 |
this.identifierLengthStack[this.identifierLengthPtr] = 1; |
11527 |
this.identifierLengthStack[this.identifierLengthPtr] = 1; |
| 10708 |
} |
11528 |
} |
|
|
11529 |
|
| 10709 |
protected void pushIdentifier(int flag) { |
11530 |
protected void pushIdentifier(int flag) { |
| 10710 |
/*push a special flag on the stack : |
11531 |
/*push a special flag on the stack : |
| 10711 |
-zero stands for optional Name |
11532 |
-zero stands for optional Name |
|
Lines 10754-10759
Link Here
|
| 10754 |
stackLength); |
11575 |
stackLength); |
| 10755 |
} |
11576 |
} |
| 10756 |
this.astLengthStack[this.astLengthPtr] = 1; |
11577 |
this.astLengthStack[this.astLengthPtr] = 1; |
|
|
11578 |
} |
| 11579 |
protected void pushOnTypeAnnotationStack(Annotation annotation) { |
| 11580 |
|
| 11581 |
int stackLength = this.typeAnnotationStack.length; |
| 11582 |
if (++this.typeAnnotationPtr >= stackLength) { |
| 11583 |
System.arraycopy( |
| 11584 |
this.typeAnnotationStack, 0, |
| 11585 |
this.typeAnnotationStack = new Annotation[stackLength + TypeAnnotationStackIncrement], 0, |
| 11586 |
stackLength); |
| 11587 |
} |
| 11588 |
this.typeAnnotationStack[this.typeAnnotationPtr] = annotation; |
| 11589 |
|
| 11590 |
stackLength = this.typeAnnotationLengthStack.length; |
| 11591 |
if (++this.typeAnnotationLengthPtr >= stackLength) { |
| 11592 |
System.arraycopy( |
| 11593 |
this.typeAnnotationLengthStack, 0, |
| 11594 |
this.typeAnnotationLengthStack = new int[stackLength + TypeAnnotationStackIncrement], 0, |
| 11595 |
stackLength); |
| 11596 |
} |
| 11597 |
this.typeAnnotationLengthStack[this.typeAnnotationLengthPtr] = 1; |
| 11598 |
} |
| 11599 |
protected void pushOnTypeAnnotationLengthStack(int pos) { |
| 11600 |
|
| 11601 |
int stackLength = this.typeAnnotationLengthStack.length; |
| 11602 |
if (++this.typeAnnotationLengthPtr >= stackLength) { |
| 11603 |
System.arraycopy( |
| 11604 |
this.typeAnnotationLengthStack, 0, |
| 11605 |
this.typeAnnotationLengthStack = new int[stackLength + TypeAnnotationStackIncrement], 0, |
| 11606 |
stackLength); |
| 11607 |
} |
| 11608 |
this.typeAnnotationLengthStack[this.typeAnnotationLengthPtr] = pos; |
| 10757 |
} |
11609 |
} |
| 10758 |
protected void pushOnExpressionStack(Expression expr) { |
11610 |
protected void pushOnExpressionStack(Expression expr) { |
| 10759 |
|
11611 |
|
|
Lines 11178-11183
Link Here
|
| 11178 |
this.astLengthPtr = -1; |
12030 |
this.astLengthPtr = -1; |
| 11179 |
this.expressionPtr = -1; |
12031 |
this.expressionPtr = -1; |
| 11180 |
this.expressionLengthPtr = -1; |
12032 |
this.expressionLengthPtr = -1; |
|
|
12033 |
this.unattachedAnnotationPtr = -1; |
| 12034 |
this.typeAnnotationLengthPtr = -1; |
| 12035 |
this.typeAnnotationPtr = -1; |
| 11181 |
this.identifierPtr = -1; |
12036 |
this.identifierPtr = -1; |
| 11182 |
this.identifierLengthPtr = -1; |
12037 |
this.identifierLengthPtr = -1; |
| 11183 |
this.intPtr = -1; |
12038 |
this.intPtr = -1; |