X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Feclipse%2Fjdt%2Finternal%2Fcompiler%2Fparser%2FParserBasicInformation.java;fp=src%2Forg%2Feclipse%2Fjdt%2Finternal%2Fcompiler%2Fparser%2FParserBasicInformation.java;h=bdb077bf725a51b5d0b65008e68180e08aeed51d;hb=040fa5af2cd00017cf3575950cdaade34a6d7f6c;hp=0000000000000000000000000000000000000000;hpb=a580fb8376d315d05e4d6bfdff9ff1101a151cd6;p=org.ibex.tool.git diff --git a/src/org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation.java b/src/org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation.java new file mode 100644 index 0000000..bdb077b --- /dev/null +++ b/src/org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation.java @@ -0,0 +1,36 @@ +/******************************************************************************* + * Copyright (c) 2000, 2004 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Common Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/cpl-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 = 105, + MAX_NAME_LENGTH = 36, + NUM_STATES = 597, + NT_OFFSET = 105, + SCOPE_UBOUND = 63, + SCOPE_SIZE = 64, + LA_STATE_OFFSET = 5981, + MAX_LA = 1, + NUM_RULES = 433, + NUM_TERMINALS = 105, + NUM_NON_TERMINALS = 203, + NUM_SYMBOLS = 308, + START_STATE = 529, + EOFT_SYMBOL = 54, + EOLT_SYMBOL = 54, + ACCEPT_ACTION = 5980, + ERROR_ACTION = 5981; +}