Sha256: 0c0682ea898b73d228187191ea44ef5cb6b46cb917592534ad38a02a32c8964a
Contents?: true
Size: 394 Bytes
Versions: 132
Compression:
Stored size: 394 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
132 entries across 131 versions & 14 rubygems