Sha256: b19fb5b3d856750fb54f913ad978c88932376967873c98f3dc903cf3541b4656
Contents?: true
Size: 487 Bytes
Versions: 71
Compression:
Stored size: 487 Bytes
Contents
/** @class */ var Person = Class.create( /** @lends Person.prototype */ { initialize: function(name) { this.name = name; }, say: function(message) { return this.name + ': ' + message; } } ); /** @lends Person.prototype */ { /** like say but more musical */ sing: function(song) { } } /** @lends Person */ { getCount: function() { } } /** @lends Unknown.prototype */ { notok: function() { } }
Version data entries
71 entries across 71 versions & 2 rubygems