blob: 29415805ae3fa2a8c8d4b3c90a7ddca36a618805 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2013 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
*
* This is an implementation of an early-draft specification developed under the Java
* Community Process (JCP) and is made available for testing and evaluation purposes
* only. The code is not compatible with any specification of the JCP.
*
* This is an implementation of an early-draft specification developed under the Java
* Community Process (JCP) and is made available for testing and evaluation purposes
* only. The code is not compatible with any specification of the JCP.
*
* 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 {
int ERROR_SYMBOL = 118,
MAX_NAME_LENGTH = 41,
NUM_STATES = 1093,
NT_OFFSET = 118,
SCOPE_UBOUND = 283,
SCOPE_SIZE = 284,
LA_STATE_OFFSET = 15935,
MAX_LA = 1,
NUM_RULES = 790,
NUM_TERMINALS = 118,
NUM_NON_TERMINALS = 356,
NUM_SYMBOLS = 474,
START_STATE = 1022,
EOFT_SYMBOL = 60,
EOLT_SYMBOL = 60,
ACCEPT_ACTION = 15934,
ERROR_ACTION = 15935;
}