Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
790 B
32 lines
790 B
module.exports = {
|
|
name: 'Selector',
|
|
structure: {
|
|
children: [[
|
|
'TypeSelector',
|
|
'IdSelector',
|
|
'ClassSelector',
|
|
'AttributeSelector',
|
|
'PseudoClassSelector',
|
|
'PseudoElementSelector',
|
|
'Combinator',
|
|
'WhiteSpace'
|
|
]]
|
|
},
|
|
parse: function() {
|
|
var children = this.readSequence(this.scope.Selector);
|
|
|
|
// nothing were consumed
|
|
if (this.getFirstListNode(children) === null) {
|
|
this.error('Selector is expected');
|
|
}
|
|
|
|
return {
|
|
type: 'Selector',
|
|
loc: this.getLocationFromList(children),
|
|
children: children
|
|
};
|
|
},
|
|
generate: function(node) {
|
|
this.children(node);
|
|
}
|
|
};
|
|
|