flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
19
BACK_BACK/node_modules/css-tree/lib/syntax/node/CDC.js
generated
vendored
Executable file
19
BACK_BACK/node_modules/css-tree/lib/syntax/node/CDC.js
generated
vendored
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
var CDC = require('../../tokenizer').TYPE.CDC;
|
||||
|
||||
module.exports = {
|
||||
name: 'CDC',
|
||||
structure: [],
|
||||
parse: function() {
|
||||
var start = this.scanner.tokenStart;
|
||||
|
||||
this.eat(CDC); // -->
|
||||
|
||||
return {
|
||||
type: 'CDC',
|
||||
loc: this.getLocation(start, this.scanner.tokenStart)
|
||||
};
|
||||
},
|
||||
generate: function() {
|
||||
this.chunk('-->');
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue