/tags/jsdoc_toolkit-2.2.1/jsdoc-toolkit/app/test/lend.js
http://jsdoc-toolkit.googlecode.com/ · JavaScript · 33 lines · 22 code · 3 blank · 8 comment · 0 complexity · db5ce3d4e1216f6e03aa5921c9cbad1e MD5 · raw file
- /** @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() {
- }
- }