first
This commit is contained in:
19
node_modules/css-tree/lib/syntax/node/CDO.js
generated
vendored
Normal file
19
node_modules/css-tree/lib/syntax/node/CDO.js
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
var CDO = require('../../tokenizer').TYPE.CDO;
|
||||
|
||||
module.exports = {
|
||||
name: 'CDO',
|
||||
structure: [],
|
||||
parse: function() {
|
||||
var start = this.scanner.tokenStart;
|
||||
|
||||
this.eat(CDO); // <!--
|
||||
|
||||
return {
|
||||
type: 'CDO',
|
||||
loc: this.getLocation(start, this.scanner.tokenStart)
|
||||
};
|
||||
},
|
||||
generate: function() {
|
||||
this.chunk('<!--');
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user