2 var Person
= Class
.create(
4 @lends Person.prototype
7 initialize
: function(name
) {
10 say
: function(message
) {
11 return this.name
+ ': ' + message
;
16 /** @lends Person.prototype */
18 /** like say but more musical */
19 sing
: function(song
) {
25 getCount
: function() {
29 /** @lends Unknown.prototype */