Package org.javacc.parser
Class RegExprSpec
- java.lang.Object
-
- org.javacc.parser.RegExprSpec
-
public class RegExprSpec extends java.lang.ObjectThe object type of entries in the vector "respecs" of class "TokenProduction".
-
-
Field Summary
Fields Modifier and Type Field Description (package private) ActionactThe action corresponding to this specification.(package private) java.lang.StringnextStateThe next state corresponding to this specification.TokennsTokIf the next state specification was explicit in the previous case, then this token is that of the identifier denoting the next state.RegularExpressionrexpThe regular expression of this specification.
-
Constructor Summary
Constructors Constructor Description RegExprSpec()
-
-
-
Field Detail
-
rexp
public RegularExpression rexp
The regular expression of this specification.
-
act
Action act
The action corresponding to this specification.
-
nextState
java.lang.String nextState
The next state corresponding to this specification. If no next state has been specified, this field is set to "null".
-
nsTok
public Token nsTok
If the next state specification was explicit in the previous case, then this token is that of the identifier denoting the next state. This is used for location information, etc. in error reporting.
-
-