aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/lib/syntax/atrule/scope.js
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/css-tree/lib/syntax/atrule/scope.js')
-rw-r--r--vanilla/node_modules/css-tree/lib/syntax/atrule/scope.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/vanilla/node_modules/css-tree/lib/syntax/atrule/scope.js b/vanilla/node_modules/css-tree/lib/syntax/atrule/scope.js
new file mode 100644
index 0000000..7185ca1
--- /dev/null
+++ b/vanilla/node_modules/css-tree/lib/syntax/atrule/scope.js
@@ -0,0 +1,12 @@
+export default {
+ parse: {
+ prelude() {
+ return this.createSingleNodeList(
+ this.Scope()
+ );
+ },
+ block(nested = false) {
+ return this.Block(nested);
+ }
+ }
+};