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