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

26 lines
559 B
Text

'use strict';
const string = require('../../utils/string.cjs');
const types = require('../../tokenizer/types.cjs');
const name = 'String';
const structure = {
value: String
};
function parse() {
return {
type: 'String',
loc: this.getLocation(this.tokenStart, this.tokenEnd),
value: string.decode(this.consume(types.String))
};
}
function generate(node) {
this.token(types.String, string.encode(node.value));
}
exports.generate = generate;
exports.name = name;
exports.parse = parse;
exports.structure = structure;