blob: 5cd66720b50ba0d0d28bd334d10dc0129cb524f1 [file] [log] [blame]
'use strict';
const nest = {
parse: {
prelude() {
return this.createSingleNodeList(
this.SelectorList()
);
},
block() {
return this.Block(true);
}
}
};
module.exports = nest;