aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs
blob: 03b1683bb559d12334ed698427d0c4607874f1b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;