aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/lib/syntax/atrule/layer.js
blob: 232eb2923c755d4c0b334458fbb2f5e2326cdff4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
export default {
    parse: {
        prelude() {
            return this.createSingleNodeList(
                this.LayerList()
            );
        },
        block() {
            return this.Block(false);
        }
    }
};