Urara-Blog/node_modules/.pnpm-store/v3/files/a1/4e84c44164865adbec9cbe2041a7aaad06a8b4c03f21689538ae6bc0235157566f4fc85fa8e5759284a59b6c73864cc1872850e422144aff5a22f4d7153d31
2022-08-14 01:14:53 +08:00

19 lines
354 B
Text

import { CDO } from '../../tokenizer/index.js';
export const name = 'CDO';
export const structure = [];
export function parse() {
const start = this.tokenStart;
this.eat(CDO); // <!--
return {
type: 'CDO',
loc: this.getLocation(start, this.tokenStart)
};
}
export function generate() {
this.token(CDO, '<!--');
}