Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation.java')
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation.java39
1 files changed, 19 insertions, 20 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation.java
index cd98595590..79c2dea041 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2014 IBM Corporation and others.
+ * Copyright (c) 2000, 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -13,25 +13,24 @@ package org.eclipse.jdt.internal.compiler.parser;
/*An interface that contains static declarations for some basic information
about the parser such as the number of rules in the grammar, the starting state, etc...*/
public interface ParserBasicInformation {
+ public final static int
- public final static int
+ ERROR_SYMBOL = 129,
+ MAX_NAME_LENGTH = 41,
+ NUM_STATES = 1195,
- ERROR_SYMBOL = 129,
- MAX_NAME_LENGTH = 41,
- NUM_STATES = 1166,
-
- NT_OFFSET = 129,
- SCOPE_UBOUND = 300,
- SCOPE_SIZE = 301,
- LA_STATE_OFFSET = 16531,
- MAX_LA = 1,
- NUM_RULES = 869,
- NUM_TERMINALS = 129,
- NUM_NON_TERMINALS = 400,
- NUM_SYMBOLS = 529,
- START_STATE = 912,
- EOFT_SYMBOL = 60,
- EOLT_SYMBOL = 60,
- ACCEPT_ACTION = 16530,
- ERROR_ACTION = 16531;
+ NT_OFFSET = 129,
+ SCOPE_UBOUND = 302,
+ SCOPE_SIZE = 303,
+ LA_STATE_OFFSET = 16878,
+ MAX_LA = 1,
+ NUM_RULES = 873,
+ NUM_TERMINALS = 129,
+ NUM_NON_TERMINALS = 403,
+ NUM_SYMBOLS = 532,
+ START_STATE = 997,
+ EOFT_SYMBOL = 61,
+ EOLT_SYMBOL = 61,
+ ACCEPT_ACTION = 16877,
+ ERROR_ACTION = 16878;
}

Back to the top