blob: 60be3d1a50e6875fa0b9e680ce2117b4682adf6f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2014 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.aspectj.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 {
int
ERROR_SYMBOL = 135,
MAX_NAME_LENGTH = 41,
NUM_STATES = 1325,
NT_OFFSET = 135,
SCOPE_UBOUND = 373,
SCOPE_SIZE = 374,
LA_STATE_OFFSET = 19529,
MAX_LA = 1,
NUM_RULES = 1047,
NUM_TERMINALS = 135,
NUM_NON_TERMINALS = 452,
NUM_SYMBOLS = 587,
START_STATE = 1246,
EOFT_SYMBOL = 70,
EOLT_SYMBOL = 70,
ACCEPT_ACTION = 19528,
ERROR_ACTION = 19529;
}