Sha256: d5565c947dc7707300935e1403367d64e705b431ead079197f3f5f76982f8654
Contents?: true
Size: 429 Bytes
Versions: 19
Compression:
Stored size: 429 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.scanner.consume(STRING) }; }, generate: function(node) { this.chunk(node.value); } };
Version data entries
19 entries across 18 versions & 4 rubygems