aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/lib/syntax/config/parser-selector.js
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/css-tree/lib/syntax/config/parser-selector.js')
-rw-r--r--vanilla/node_modules/css-tree/lib/syntax/config/parser-selector.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/vanilla/node_modules/css-tree/lib/syntax/config/parser-selector.js b/vanilla/node_modules/css-tree/lib/syntax/config/parser-selector.js
new file mode 100644
index 0000000..c9e0ee2
--- /dev/null
+++ b/vanilla/node_modules/css-tree/lib/syntax/config/parser-selector.js
@@ -0,0 +1,15 @@
+import { Selector } from '../scope/index.js';
+import pseudo from '../pseudo/index.js';
+import * as node from '../node/index-parse-selector.js';
+
+export default {
+ parseContext: {
+ default: 'SelectorList',
+ selectorList: 'SelectorList',
+ selector: 'Selector'
+ },
+ scope: { Selector },
+ atrule: {},
+ pseudo,
+ node
+};