java.lang.Object | ||
↳ | com.pnfsoftware.jeb.util.encoding.jflex.DefaultJFlexLexer | |
↳ | com.pnfsoftware.jeb.util.encoding.jflex.lexers.PythonLexer |
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | ML_STRING | ||||||||||
int | SQML_STRING | ||||||||||
int | SQSTRING | ||||||||||
int | STRING | ||||||||||
int | YYEOF | This character denotes the end of file. | |||||||||
int | YYINITIAL |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.pnfsoftware.jeb.util.encoding.jflex.DefaultJFlexLexer
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
PythonLexer()
Create an empty lexer, yyrset will be called later to reset and assign
the reader
| |||||||||||
PythonLexer(Reader in)
Creates a new scanner
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
final boolean |
yyatEOF()
Returns whether the scanner has reached the end of the reader it reads from.
| ||||||||||
final void |
yybegin(int newState)
Enters a new lexical state.
| ||||||||||
long |
yychar()
Return the char number from beginning of input stream.
| ||||||||||
final char |
yycharat(int position)
Returns the character at the given position from the matched text.
| ||||||||||
final void |
yyclose()
Closes the input reader.
| ||||||||||
final int |
yylength()
How many characters were matched.
| ||||||||||
Token |
yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered
or an I/O-Error occurs.
| ||||||||||
void |
yypushback(int number)
Pushes the specified amount of characters back into the input stream.
| ||||||||||
final void |
yyreset(Reader reader)
Resets the scanner to read from a new input stream.
| ||||||||||
final int |
yystate()
Returns the current lexical state.
| ||||||||||
final String |
yytext()
Returns the text matched by the current regular expression.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.pnfsoftware.jeb.util.encoding.jflex.DefaultJFlexLexer
| |||||||||||
From class
java.lang.Object
|
This character denotes the end of file.
Create an empty lexer, yyrset will be called later to reset and assign the reader
Creates a new scanner
in | the java.io.Reader to read input from. |
---|
Returns whether the scanner has reached the end of the reader it reads from.
Enters a new lexical state.
newState | the new lexical state |
---|
Return the char number from beginning of input stream. This is NOT implemented by JFlex, so the code must be added to create this and return the private yychar field
Returns the character at the given position from the matched text.
It is equivalent to yytext().charAt(pos)
, but faster.
position | the position of the character to fetch. A value from 0 to yylength()-1 . |
---|
position
.
Closes the input reader.
IOException | if the reader could not be closed. |
---|
How many characters were matched.
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.
IOException | if any I/O-Error occurs. |
---|
Pushes the specified amount of characters back into the input stream.
They will be read again by then next call of the scanning method.
number | the number of characters to be read again. This number must not be greater than
yylength() .
|
---|
Resets the scanner to read from a new input stream.
Does not close the old reader.
All internal variables are reset, the old input stream cannot be reused (internal
buffer is discarded and lost). Lexical state is set to ZZ_INITIAL
.
Internal scan buffer is resized down to its initial length, if it has grown.
reader | The new input stream. |
---|
Returns the current lexical state.
Returns the text matched by the current regular expression.