blob: 57c45b1206e51c3730634cea696dce9f7f9b45cc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2021 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
// BEGIN_AUTOGENERATED_REGION
ERROR_SYMBOL = 136,
MAX_NAME_LENGTH = 53,
NUM_STATES = 1219,
NT_OFFSET = 136,
SCOPE_UBOUND = 318,
SCOPE_SIZE = 319,
LA_STATE_OFFSET = 18203,
MAX_LA = 1,
NUM_RULES = 932,
NUM_TERMINALS = 136,
NUM_NON_TERMINALS = 430,
NUM_SYMBOLS = 566,
START_STATE = 990,
EOFT_SYMBOL = 64,
EOLT_SYMBOL = 64,
ACCEPT_ACTION = 18202,
ERROR_ACTION = 18203;
}