mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
18 lines
377 B
JavaScript
18 lines
377 B
JavaScript
/** @class */
|
|
var Person = makeClass(
|
|
/**
|
|
* @lends Person#
|
|
*/
|
|
{
|
|
/** Set up initial values. */
|
|
initialize: function(name) {
|
|
/** The name of the person. */
|
|
this.name = name;
|
|
},
|
|
|
|
/** Speak a message. */
|
|
say: function(message) {
|
|
return this.name + " says: " + message;
|
|
}
|
|
}
|
|
); |