Represents a token.
Description
The Token class represents a token. A token represents a logical chunk of a string. For example, a typical tokenizer would break the string “1.23 <= 12.3” into three tokens: the number 1.23, a less-than-or-equal symbol, and the number 12.3. A token is a receptacle, and relies on a tokenizer to decide precisely how to divide a string into tokens.
Constructors
Constructs a token with a type and value.
publicconstructor(type: TokenType, value: string, line: number, column: number)
- type: TokenType - type of this token.
- value: string - token string value.
- line: number - line number where the token is.
- column: number - column number where the token is.
Properties
column
Column number where the token is.
publiccolumn(): number
- returns: number - column number.
line
Line number where the token is.
publicline(): number
- returns: number - line number.
type
Token type.
publictype(): TokenType
- returns: TokenType - token type.
value
Token value.
publicvalue(): string
- returns: string - token value.
Instance methods
equals
Compares this token to an object.
publicequals(obj: any): boolean
- obj: any - compared object
- returns: boolean - true if the type and value are the same, false otherwise.