column of the last character of the Token
Things to note: "do" {startColumn : 1, endColumn: 2} --> the range is inclusive to exclusive 1...2 (2 chars long). "\n" {startLine : 1, endLine: 1} --> a lineTerminator as the last character does not effect the Token's line numbering. "'hello\tworld\uBBBB'" {image: "'hello\tworld\uBBBB'"} --> a Token's image is the "literal" text (unicode escaping is untouched).
line of the last character of the Token
the textual representation of the Token as it appeared in the text
offset of the first character of the Token
column of the first character of the Token
line of the first character of the Token
Generated using TypeDoc
a special kind of Token which does not really exist in the input (hence the 'Virtual' prefix). These type of Tokens can be used as special markers: for example, EOF (end-of-file).