diff options
Diffstat (limited to 'vanilla/node_modules/css-tree/lib/syntax/node/CDC.js')
| -rw-r--r-- | vanilla/node_modules/css-tree/lib/syntax/node/CDC.js | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/vanilla/node_modules/css-tree/lib/syntax/node/CDC.js b/vanilla/node_modules/css-tree/lib/syntax/node/CDC.js deleted file mode 100644 index efed4a6..0000000 --- a/vanilla/node_modules/css-tree/lib/syntax/node/CDC.js +++ /dev/null @@ -1,19 +0,0 @@ -import { CDC } from '../../tokenizer/index.js'; - -export const name = 'CDC'; -export const structure = []; - -export function parse() { - const start = this.tokenStart; - - this.eat(CDC); // --> - - return { - type: 'CDC', - loc: this.getLocation(start, this.tokenStart) - }; -} - -export function generate() { - this.token(CDC, '-->'); -} |
