Sha256: b612fe09da72ee8e7de1a759da08747502a6da8396f35eadba236d6738f388d1
Contents?: true
Size: 400 Bytes
Versions: 10
Compression:
Stored size: 400 Bytes
Contents
if (typeof JSDOC == "undefined") JSDOC = {}; /** @constructor */ JSDOC.Token = function(data, type, name) { this.data = data; this.type = type; this.name = name; } JSDOC.Token.prototype.toString = function() { return "<"+this.type+" name=\""+this.name+"\">"+this.data+"</"+this.type+">"; } JSDOC.Token.prototype.is = function(what) { return this.name === what || this.type === what; }
Version data entries
10 entries across 10 versions & 1 rubygems