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

Go to download

AspectJ tools most notably contains the AspectJ compiler (AJC). AJC applies aspects to Java classes during compilation, fully replacing Javac for plain Java classes and also compiling native AspectJ or annotation-based @AspectJ syntax. Furthermore, AJC can weave aspects into existing class files in a post-compile binary weaving step. This library is a superset of AspectJ weaver and hence also of AspectJ runtime.

There is a newer version: 1.9.22.1
Show newest version
/*******************************************************************************
 * Copyright (c) 2000, 2022 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * 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 {
	// AspectJ: Tokens taken from javadef.java, generated by jikespg according to
	// https://www.eclipse.org/jdt/core/howto/generate%20parser/generateParser.html
	int
		ERROR_SYMBOL = 147,
		MAX_NAME_LENGTH = 53,
		NUM_STATES = 1434,
		NT_OFFSET = 147,
		SCOPE_UBOUND = 405,
		SCOPE_SIZE = 406,
		LA_STATE_OFFSET = 21853,
		MAX_LA = 1,
		NUM_RULES = 1149,
		NUM_TERMINALS = 147,
		NUM_NON_TERMINALS = 502,
		NUM_SYMBOLS = 649,
		START_STATE = 2063,
		EOFT_SYMBOL = 72,
		EOLT_SYMBOL = 72,
		ACCEPT_ACTION = 21852,
		ERROR_ACTION = 21853;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy