Start over, this time in Astro
This commit is contained in:
19
node_modules/css-tree/lib/syntax/node/CDO.js
generated
vendored
19
node_modules/css-tree/lib/syntax/node/CDO.js
generated
vendored
@@ -1,19 +0,0 @@
|
||||
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, '<!--');
|
||||
}
|
Reference in New Issue
Block a user