initial commit for GitHub
This commit is contained in:
38
jsdoc_toolkit-2.3.3-beta/app/test/memberof2.js
Normal file
38
jsdoc_toolkit-2.3.3-beta/app/test/memberof2.js
Normal file
@@ -0,0 +1,38 @@
|
||||
/**
|
||||
* @constructor
|
||||
*/
|
||||
function Foo() {
|
||||
/**
|
||||
@memberOf Foo.prototype
|
||||
*/
|
||||
function bar(a, b) {
|
||||
}
|
||||
|
||||
/**
|
||||
@memberOf Foo
|
||||
*/
|
||||
var zip = function(p, q) {
|
||||
}
|
||||
|
||||
/**
|
||||
@memberOf Foo
|
||||
*/
|
||||
function zop( x,y ) {
|
||||
}
|
||||
|
||||
/**
|
||||
@memberOf Foo
|
||||
@constructor
|
||||
*/
|
||||
function Fiz() {
|
||||
/** A method of Foo#Fiz. */
|
||||
this.fipple = function(fop){}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@memberOf Foo#
|
||||
*/
|
||||
var blat = function() {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user