You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
privatebin/jsdoc_toolkit-2.3.3-beta/app/test/memberof2.js

38 lines
468 B

/**
* @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() {
}