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=0000000000000000000000000000000000000000;hb=6f0cd02d46e011bd5599e1b7fefc6159cb811135;hp=bdb077bf725a51b5d0b65008e68180e08aeed51d;hpb=622d0e5a4b1b35b6918a516a79a0cc22272a919e;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 deleted file mode 100644 index bdb077b..0000000 --- a/src/org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation.java +++ /dev/null @@ -1,36 +0,0 @@ -/******************************************************************************* - * 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; -}