| Package | Description |
|---|---|
| org.basex.query.regex.parse |
This module contains
JavaCC-generated classes for parsing XSD regular
expressions. |
| Modifier and Type | Field and Description |
|---|---|
Token |
ParseException.currentToken
This is the last token that has been consumed successfully.
|
Token |
RegExParser.jj_nt
Next token.
|
Token |
Token.next
A reference to the next regular (non-special) token from the input
stream.
|
Token |
Token.specialToken
This field is used to access special tokens that occur prior to this
token, but after the immediately preceding regular (non-special) token.
|
Token |
RegExParser.token
Current token.
|
| Modifier and Type | Method and Description |
|---|---|
Token |
TokenManager.getNextToken()
This gets the next token from the input stream.
|
Token |
RegExLexer.getNextToken() |
Token |
RegExParser.getNextToken()
Get the next Token.
|
Token |
RegExParser.getToken(int index)
Get the specific Token.
|
static Token |
Token.newToken(int k)
Creates a token without image string.
|
static Token |
Token.newToken(int k,
java.lang.String img)
Returns a new Token object, by default.
|
| Constructor and Description |
|---|
ParseException(Token curr,
int[][] exps,
java.lang.String[] imgs)
This constructor is used by the method "generateParseException"
in the generated parser.
|