KeywordToken class

Used for tokens that are keywords. We use this special class without any additional properties to ease syntax highlighting, as it allows us to find the keywords easily.

Inheritance
Available Extensions

Constructors

KeywordToken(TokenType type, FileSpan span)

Properties

firstPosition int
The first position of this entity, as an zero-based offset in the file it was read from.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
hasSpan bool
Whether this entity has a source span associated with it.
no setterinherited
index int
The index of this Token in the list of tokens scanned.
getter/setter pairinherited
invisibleToParser bool
Whether this token should be invisible to the parser. We use this for comment tokens.
no setterinherited
isIdentifier bool
Whether this token has been used as an identifier while parsing.
getter/setter pair
lastPosition int
The (exclusive) last index of this entity in the source.
no setterinherited
lexeme String
no setterinherited
next Token?
getter/setter pairinherited
previous Token?
getter/setter pairinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
span → FileSpan
The piece of text forming this syntactic entity.
finalinherited
synthetic bool
Whether this entity is synthetic, meaning that it doesn't appear in the actual source.
no setterinherited
type TokenType
finalinherited

Methods

canConvertToIdentifier() bool
convertToIdentifier() IdentifierToken
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited