Creates a new token iterator object. The inital token index is set to the provided row and column coordinates.
The session to associate with
The row to start the tokenizing at
The column to start the tokenizing at
Returns the current tokenized string.
Returns the current column.
Return the current token position.
Return the current token range.
Returns the current row.
Tokenizes all the items from the current point to the row prior in the document.
If the current point is not at the top of the file, this function returns null
. Otherwise, it returns an array of the tokenized strings.
Tokenizes all the items from the current point until the next row in the document. If the current point is at the end of the file, this function returns null
. Otherwise, it returns the tokenized string.
Generated using TypeDoc
This class provides an essay way to treat the document as a stream of tokens, and provides methods to iterate over these tokens.