Package org.javacc.parser
Class Action
- java.lang.Object
-
- org.javacc.parser.Expansion
-
- org.javacc.parser.Action
-
public class Action extends Expansion
Describes actions that may occur on the right hand side of productions.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<Token>action_tokensContains the list of tokens that make up the action.-
Fields inherited from class org.javacc.parser.Expansion
eol, inMinimumSize, myGeneration, ordinal, parent
-
-
Constructor Summary
Constructors Constructor Description Action()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringBufferdump(int indent, java.util.Set<Expansion> alreadyDumped)java.util.List<Token>getActionTokens()-
Methods inherited from class org.javacc.parser.Expansion
dumpPrefix, getColumn, getLine, getProductionName, hashCode, setColumn, setLine, toString
-
-
-
-
Field Detail
-
action_tokens
private final java.util.List<Token> action_tokens
Contains the list of tokens that make up the action. This list does not include the surrounding braces.
-
-