diff options
Diffstat (limited to 'vanilla/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs')
| -rw-r--r-- | vanilla/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vanilla/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs b/vanilla/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs new file mode 100644 index 0000000..03b1683 --- /dev/null +++ b/vanilla/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs @@ -0,0 +1,19 @@ +'use strict'; + +const index = require('../pseudo/index.cjs'); +const indexParseSelector = require('../node/index-parse-selector.cjs'); +const selector = require('../scope/selector.cjs'); + +const config = { + parseContext: { + default: 'SelectorList', + selectorList: 'SelectorList', + selector: 'Selector' + }, + scope: { Selector: selector }, + atrule: {}, + pseudo: index, + node: indexParseSelector +}; + +module.exports = config; |
