Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3aef2724a905fbc04678e13975016580da214a62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*******************************************************************************
 * Copyright (c) 2000, 2018 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
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

	ERROR_SYMBOL = 129,
					MAX_NAME_LENGTH = 41,
					NUM_STATES = 1166,

					NT_OFFSET = 129,
					SCOPE_UBOUND = 297,
					SCOPE_SIZE = 298,
					LA_STATE_OFFSET = 16966,
					MAX_LA = 1,
					NUM_RULES = 867,
					NUM_TERMINALS = 129,
					NUM_NON_TERMINALS = 397,
					NUM_SYMBOLS = 526,
					START_STATE = 1124,
					EOFT_SYMBOL = 61,
					EOLT_SYMBOL = 61,
					ACCEPT_ACTION = 16965,
					ERROR_ACTION = 16966;
}

Back to the top