Urara-Blog/node_modules/.pnpm-store/v3/files/35/0d30ecd1e2b2099409929ecafcfc8f76a928f086f1230a0f2b8cb6d87bf2fe0fbcf3ab65c9df7b9f2ab1dc3b911dadfaf3f814f5ad1700cb25845f50fd0381
2022-08-14 01:14:53 +08:00

26 lines
469 B
Text

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