Sha256: d080cc71c3c9a200b452c8ba1071c5d04c1e26a8ace4e59efc01e3736568c6a7
Contents?: true
Size: 421 Bytes
Versions: 41
Compression:
Stored size: 421 Bytes
Contents
var STRING = require('../../tokenizer').TYPE.String; module.exports = { name: 'String', structure: { value: String }, parse: function() { return { type: 'String', loc: this.getLocation(this.scanner.tokenStart, this.scanner.tokenEnd), value: this.consume(STRING) }; }, generate: function(node) { this.chunk(node.value); } };
Version data entries
41 entries across 31 versions & 9 rubygems