astro-ghostcms/.pnpm-store/v3/files/25/1c88ce1b1f232bf606337083e01...

20 lines
352 B
Plaintext

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