Scanner
Type members
Inherited classlikes
Value members
Concrete methods
Parse character literal if current character is followed by ', or follow with given op and return a symbol literal token
Parse character literal if current character is followed by ', or follow with given op and return a symbol literal token
Returns the closest docstring preceding the position supplied
Returns the closest docstring preceding the position supplied
Handle newlines, possibly inserting an INDENT, OUTDENT, NEWLINE, or NEWLINES token in front of the current token. This depends on whether indentation is significant or not.
Handle newlines, possibly inserting an INDENT, OUTDENT, NEWLINE, or NEWLINES token in front of the current token. This depends on whether indentation is significant or not.
Indentation is significant if indentSyntax is set, and we are not inside a {...}, [...], (...), case ... => pair, nor in a if/while condition (i.e. currentRegion is empty).
There are three rules:
-
Insert NEWLINE or NEWLINES if
- the closest enclosing sepRegion is { ... } or for ... do/yield, or we are on the toplevel, i.e. currentRegion is empty, and
- the previous token can end a statement, and
- the current token can start a statement, and
- the current token is not a leading infix operator, and
- if indentation is significant then the current token starts at the current indentation width or to the right of it.
The inserted token is NEWLINES if the current token is preceded by a whitespace line, or NEWLINE otherwise.
-
Insert INDENT if
- indentation is significant, and
- the last token can start an indentation region.
- the indentation of the current token is strictly greater than the previous
indentation width, or the two widths are the same and the current token is
one of
:
ormatch
.
The following tokens can start an indentation region:
: = => <- if then else while do try catch finally for yield match
Inserting an INDENT starts a new indentation region with the indentation of the current token as indentation width.
-
Insert OUTDENT if
- indentation is significant, and
- the indentation of the current token is strictly less than the previous indentation width,
- the current token is not a leading infix operator.
Inserting an OUTDENT closes an indentation region. In this case, issue an error if the indentation of the current token does not match the indentation of some previous line in an enclosing indentation region.
If a token is inserted and consumed, the original source token is still considered to start a new line, so the process that inserts an OUTDENT might repeat several times.
Indentation widths are strings consisting of spaces and tabs, ordered by the prefix relation.
I.e. a <= b
iff b.startsWith(a)
. If indentation is significant it is considered an error
if the current indentation width and the indentation of the current token are incomparable.
Is the current token in a position where a modifier is allowed?
Is the current token in a position where a modifier is allowed?
Insert token
at assumed offset
in front of current one.
Insert token
at assumed offset
in front of current one.
A leading symbolic or backquoted identifier is treated as an infix operator if
A leading symbolic or backquoted identifier is treated as an infix operator if
- it does not follow a blank line, and
- it is followed by at least one whitespace character and a token that can start an expression.
- if the operator appears on its own line, the next line must have at least
the same indentation width as the operator. See pos/i12395 for a test where this matters.
If a leading infix operator is found and the source version is
3.0-migration
, emit a change warning.
The next token after this one.
The token is computed via fetchToken, so complex two word
tokens such as CASECLASS are not recognized.
Newlines and indent/unindent tokens are skipped.
Restriction: lookahead
is illegal if the current token is INTERPOLATIONID
The next token after this one.
The token is computed via fetchToken, so complex two word
tokens such as CASECLASS are not recognized.
Newlines and indent/unindent tokens are skipped.
Restriction: lookahead
is illegal if the current token is INTERPOLATIONID
Produce next token, filling TokenData fields of Scanner.
Produce next token, filling TokenData fields of Scanner.
Insert an match
and next token is case
.
Insert an match
and next token is case
.
- Join CASE + CLASS => CASECLASS, CASE + OBJECT => CASEOBJECT SEMI + ELSE => ELSE, COLON following id/)/] => COLONfollow
- Insert missing OUTDENTs at EOF
Skip matching pairs of (...)
or [...]
parentheses.
Skip matching pairs of (...)
or [...]
parentheses.
Returns a string representation of the object.
Returns a string representation of the object.
The default representation is platform dependent.
- Returns:
a string representation of the object.
- Definition Classes
- Any
Inherited methods
Switch whether unicode should be decoded
Switch whether unicode should be decoded
- Inherited from:
- CharArrayReader
Generate an error at the given offset
Generate an error at the given offset
- Inherited from:
- ScannerCommon
Finish an IDENTIFIER with this.name
.
Finish an IDENTIFIER with this.name
.
- Inherited from:
- ScannerCommon
Clear buffer and set name and token.
If target
is different from this
, don't treat identifiers as end tokens.
Clear buffer and set name and token.
If target
is different from this
, don't treat identifiers as end tokens.
- Inherited from:
- ScannerCommon
signal an error where the input ended in the middle of a token
signal an error where the input ended in the middle of a token
- Inherited from:
- ScannerCommon
Is current token first one after a newline?
Is current token first one after a newline?
- Inherited from:
- TokenData
Is last character a unicode escape \uxxxx?
Is last character a unicode escape \uxxxx?
- Inherited from:
- CharArrayReader
A new reader that takes off at the current character position
A new reader that takes off at the current character position
- Inherited from:
- CharArrayReader
Advance one character; reducing CR;LF pairs to just LF
Advance one character; reducing CR;LF pairs to just LF
- Inherited from:
- CharArrayReader
Advance one character, leaving CR;LF pairs intact. This is for use in multi-line strings, so there are no "potential line ends" here.
Advance one character, leaving CR;LF pairs intact. This is for use in multi-line strings, so there are no "potential line ends" here.
- Inherited from:
- CharArrayReader
append Unicode character to "litBuf" buffer
append Unicode character to "litBuf" buffer
- Inherited from:
- ScannerCommon
Concrete fields
The current region. This is initially an Indented region with zero indentation width.
The current region. This is initially an Indented region with zero indentation width.
Inherited fields
The offset one past the last read character
The offset one past the last read character
- Inherited from:
- CharArrayReader
The offset before the last read character
The offset before the last read character
- Inherited from:
- CharArrayReader
the offset of the character following the token preceding this one
the offset of the character following the token preceding this one
- Inherited from:
- TokenData
the offset of the newline immediately preceding the token, or -1 if token is not preceded by a newline.
the offset of the newline immediately preceding the token, or -1 if token is not preceded by a newline.
- Inherited from:
- TokenData
The start offset of the current line
The start offset of the current line
- Inherited from:
- CharArrayReader
the offset of the first character of the current token
the offset of the first character of the current token
- Inherited from:
- TokenData