aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/lib/syntax/node/SupportsDeclaration.js
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/css-tree/lib/syntax/node/SupportsDeclaration.js')
-rw-r--r--vanilla/node_modules/css-tree/lib/syntax/node/SupportsDeclaration.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/vanilla/node_modules/css-tree/lib/syntax/node/SupportsDeclaration.js b/vanilla/node_modules/css-tree/lib/syntax/node/SupportsDeclaration.js
new file mode 100644
index 0000000..ee816e5
--- /dev/null
+++ b/vanilla/node_modules/css-tree/lib/syntax/node/SupportsDeclaration.js
@@ -0,0 +1,34 @@
+import {
+ LeftParenthesis,
+ RightParenthesis
+} from '../../tokenizer/index.js';
+
+export const name = 'SupportsDeclaration';
+export const structure = {
+ declaration: 'Declaration'
+};
+
+export function parse() {
+ const start = this.tokenStart;
+
+ this.eat(LeftParenthesis);
+ this.skipSC();
+
+ const declaration = this.Declaration();
+
+ if (!this.eof) {
+ this.eat(RightParenthesis);
+ }
+
+ return {
+ type: 'SupportsDeclaration',
+ loc: this.getLocation(start, this.tokenStart),
+ declaration
+ };
+}
+
+export function generate(node) {
+ this.token(LeftParenthesis, '(');
+ this.node(node.declaration);
+ this.token(RightParenthesis, ')');
+}