| DIR:/proc/thread-self/cwd/bright.medisavehealthcarebd.com/node_modules/css-tree/lib/syntax/node/ |
| Current File : //proc/thread-self/cwd/bright.medisavehealthcarebd.com/node_modules/css-tree/lib/syntax/node/CDC.js |
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('-->');
}
};
|