Sha256: 7d333eba0268ed76762175c4f79ff34c119e42630396916b1846d9459daa316b
Contents?: true
Size: 401 Bytes
Versions: 19
Compression:
Stored size: 401 Bytes
Contents
var CDC = require('../../tokenizer').TYPE.CDC; module.exports = { name: 'CDC', structure: [], parse: function() { var start = this.scanner.tokenStart; this.scanner.eat(CDC); // --> return { type: 'CDC', loc: this.getLocation(start, this.scanner.tokenStart) }; }, generate: function() { this.chunk('-->'); } };
Version data entries
19 entries across 18 versions & 4 rubygems