blob: a325ce616f085ef363b583b05256a77716032e43 [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 = 149,
MAX_NAME_LENGTH = 41,
NUM_STATES = 1440,
NT_OFFSET = 149,
SCOPE_UBOUND = 386,
SCOPE_SIZE = 387,
LA_STATE_OFFSET = 19956,
MAX_LA = 1,
NUM_RULES = 1053,
NUM_TERMINALS = 149,
NUM_NON_TERMINALS = 476,
NUM_SYMBOLS = 625,
START_STATE = 1313,
EOFT_SYMBOL = 67,
EOLT_SYMBOL = 67,
ACCEPT_ACTION = 19955,
ERROR_ACTION = 19956;
}