Sha256: 45490b2a058e06be048ec50aa822cd74b453d25e12d6688d825a2f9cb24d33eb
Contents?: true
Size: 482 Bytes
Versions: 60
Compression:
Stored size: 482 Bytes
Contents
// '/' | '*' | ',' | ':' | '+' | '-' module.exports = { name: 'Operator', structure: { value: String }, parse: function() { var start = this.scanner.tokenStart; this.scanner.next(); return { type: 'Operator', loc: this.getLocation(start, this.scanner.tokenStart), value: this.scanner.substrToCursor(start) }; }, generate: function(node) { this.chunk(node.value); } };
Version data entries
60 entries across 33 versions & 10 rubygems