dart/ast/token library
Defines the tokens that are produced by the scanner, used by the parser, and referenced from the AST structure.
Classes
- Keyword
- The keywords in the Dart programming language.
- LanguageVersionToken
- A specialized comment token representing a language version (e.g. '// @dart = 2.1').
- Token
- A token that was scanned from the input. Each token knows which tokens precede and follow it, acting as a link in a doubly linked list of tokens.
- TokenType
- The types of tokens that can be returned by the scanner.