initial commit for GitHub
This commit is contained in:
18
jsdoc_toolkit-2.3.3-beta/app/test/constructs.js
Normal file
18
jsdoc_toolkit-2.3.3-beta/app/test/constructs.js
Normal file
@@ -0,0 +1,18 @@
|
||||
var Person = makeClass(
|
||||
/**
|
||||
@scope Person
|
||||
*/
|
||||
{
|
||||
/**
|
||||
This is just another way to define a constructor.
|
||||
@constructs
|
||||
@param {string} name The name of the person.
|
||||
*/
|
||||
initialize: function(name) {
|
||||
this.name = name;
|
||||
},
|
||||
say: function(message) {
|
||||
return this.name + " says: " + message;
|
||||
}
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user