blob: d8d8f265791fd17fe5bfb271ace502e063438542 [file] [log] [blame]
/*******************************************************************************
* 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 = 130,
MAX_NAME_LENGTH = 41,
NUM_STATES = 1168,
NT_OFFSET = 130,
SCOPE_UBOUND = 297,
SCOPE_SIZE = 298,
LA_STATE_OFFSET = 16968,
MAX_LA = 1,
NUM_RULES = 869,
NUM_TERMINALS = 130,
NUM_NON_TERMINALS = 397,
NUM_SYMBOLS = 527,
START_STATE = 1126,
EOFT_SYMBOL = 61,
EOLT_SYMBOL = 61,
ACCEPT_ACTION = 16967,
ERROR_ACTION = 16968;
}