mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 18:29:29 +08:00
39 lines
825 B
Text
39 lines
825 B
Text
var TYPE = require('../../tokenizer').TYPE;
|
|
|
|
var COMMA = TYPE.Comma;
|
|
|
|
module.exports = {
|
|
name: 'SelectorList',
|
|
structure: {
|
|
children: [[
|
|
'Selector',
|
|
'Raw'
|
|
]]
|
|
},
|
|
parse: function() {
|
|
var children = this.createList();
|
|
|
|
while (!this.scanner.eof) {
|
|
children.push(this.Selector());
|
|
|
|
if (this.scanner.tokenType === COMMA) {
|
|
this.scanner.next();
|
|
continue;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
return {
|
|
type: 'SelectorList',
|
|
loc: this.getLocationFromList(children),
|
|
children: children
|
|
};
|
|
},
|
|
generate: function(node) {
|
|
this.children(node, function() {
|
|
this.chunk(',');
|
|
});
|
|
},
|
|
walkContext: 'selector'
|
|
};
|