first commit
This commit is contained in:
19
app_vue/node_modules/css-tree/lib/syntax/node/CDC.js
generated
vendored
Normal file
19
app_vue/node_modules/css-tree/lib/syntax/node/CDC.js
generated
vendored
Normal 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('-->');
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user