Urara-Blog/node_modules/.pnpm-store/v3/files/d5/895eefda9ee8d389f1ac595beaa6aba8b3de3b6b0b4317a590a2ab7250db0c2be973dc0042ba1862b91f8389732b4233acfa26062ef2cd7d7b4c5ab88e6b27
2022-08-14 01:14:53 +08:00

19 lines
444 B
Text

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