All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aspectj.org.eclipse.jdt.internal.compiler.parser.ParserBasicInformation Maven / Gradle / Ivy

There is a newer version: 1.9.22.1
Show newest version
/*******************************************************************************
 * 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
 *  
 * 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      = 125,
      MAX_NAME_LENGTH   = 41,
      NUM_STATES        = 1264,

      NT_OFFSET         = 125,
      SCOPE_UBOUND      = 365,
      SCOPE_SIZE        = 366,
      LA_STATE_OFFSET   = 18969,
      MAX_LA            = 1,
      NUM_RULES         = 992,
      NUM_TERMINALS     = 125,
      NUM_NON_TERMINALS = 423,
      NUM_SYMBOLS       = 548,
      START_STATE       = 1288,
      EOFT_SYMBOL       = 70,
      EOLT_SYMBOL       = 70,
      ACCEPT_ACTION     = 18968,
      ERROR_ACTION      = 18969;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy