mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 01:59:31 +08:00
19 lines
395 B
Text
19 lines
395 B
Text
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('<!--');
|
|
}
|
|
};
|