You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
545 B
32 lines
545 B
2 years ago
|
'use strict';
|
||
|
|
||
|
const tokenNames = [
|
||
|
'EOF-token',
|
||
|
'ident-token',
|
||
|
'function-token',
|
||
|
'at-keyword-token',
|
||
|
'hash-token',
|
||
|
'string-token',
|
||
|
'bad-string-token',
|
||
|
'url-token',
|
||
|
'bad-url-token',
|
||
|
'delim-token',
|
||
|
'number-token',
|
||
|
'percentage-token',
|
||
|
'dimension-token',
|
||
|
'whitespace-token',
|
||
|
'CDO-token',
|
||
|
'CDC-token',
|
||
|
'colon-token',
|
||
|
'semicolon-token',
|
||
|
'comma-token',
|
||
|
'[-token',
|
||
|
']-token',
|
||
|
'(-token',
|
||
|
')-token',
|
||
|
'{-token',
|
||
|
'}-token'
|
||
|
];
|
||
|
|
||
|
module.exports = tokenNames;
|