(kind: TokenKind, pos: TokenPosition, opts?: { hasLeftSpacing?: boolean, value?: Token['value'], children?: Token['children'] })
| 132 | * - opts.children: for template syntax |
| 133 | */ |
| 134 | export function TOKEN(kind: TokenKind, pos: TokenPosition, opts?: { hasLeftSpacing?: boolean, value?: Token['value'], children?: Token['children'] }): Token { |
| 135 | return new Token(kind, pos, opts?.hasLeftSpacing, opts?.value, opts?.children); |
| 136 | } |
| 137 | |
| 138 | const KEYWORDS = [ |
| 139 | TokenKind.NullKeyword, |
no outgoing calls
no test coverage detected