blob: 6448db22dd93b708adac77093906c1a5e28ce7ca [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2014 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* 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 = 147,
MAX_NAME_LENGTH = 41,
NUM_STATES = 1424,
NT_OFFSET = 147,
SCOPE_UBOUND = 379,
SCOPE_SIZE = 380,
LA_STATE_OFFSET = 19608,
MAX_LA = 1,
NUM_RULES = 1034,
NUM_TERMINALS = 147,
NUM_NON_TERMINALS = 466,
NUM_SYMBOLS = 613,
START_STATE = 1278,
EOFT_SYMBOL = 65,
EOLT_SYMBOL = 65,
ACCEPT_ACTION = 19607,
ERROR_ACTION = 19608;
}