Urara-Blog/node_modules/.pnpm-store/v3/files/d7/f35956b0f14a83c0a1be9f8f2630b9a9072e03283bd504acd46c2144bdd6faa6a1723d495daacf097145ef4d86cae4722c4c2abd6966e851784f0814b070e7
2022-08-14 01:14:53 +08:00

19 lines
377 B
Text

export const name = 'Value';
export const structure = {
children: [[]]
};
export function parse() {
const start = this.tokenStart;
const children = this.readSequence(this.scope.Value);
return {
type: 'Value',
loc: this.getLocation(start, this.tokenStart),
children
};
}
export function generate(node) {
this.children(node);
}