aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/cjs/syntax/node/CDO.cjs
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/css-tree/cjs/syntax/node/CDO.cjs')
-rw-r--r--vanilla/node_modules/css-tree/cjs/syntax/node/CDO.cjs26
1 files changed, 0 insertions, 26 deletions
diff --git a/vanilla/node_modules/css-tree/cjs/syntax/node/CDO.cjs b/vanilla/node_modules/css-tree/cjs/syntax/node/CDO.cjs
deleted file mode 100644
index 0e98217..0000000
--- a/vanilla/node_modules/css-tree/cjs/syntax/node/CDO.cjs
+++ /dev/null
@@ -1,26 +0,0 @@
-'use strict';
-
-const types = require('../../tokenizer/types.cjs');
-
-const name = 'CDO';
-const structure = [];
-
-function parse() {
- const start = this.tokenStart;
-
- this.eat(types.CDO); // <!--
-
- return {
- type: 'CDO',
- loc: this.getLocation(start, this.tokenStart)
- };
-}
-
-function generate() {
- this.token(types.CDO, '<!--');
-}
-
-exports.generate = generate;
-exports.name = name;
-exports.parse = parse;
-exports.structure = structure;