can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / memberof2.js
1 /**
2 * @constructor
3 */
4 function Foo() {
5 /**
6 @memberOf Foo.prototype
7 */
8 function bar(a, b) {
9 }
10
11 /**
12 @memberOf Foo
13 */
14 var zip = function(p, q) {
15 }
16
17 /**
18 @memberOf Foo
19 */
20 function zop( x,y ) {
21 }
22
23 /**
24 @memberOf Foo
25 @constructor
26 */
27 function Fiz() {
28 /** A method of Foo#Fiz. */
29 this.fipple = function(fop){}
30 }
31 }
32
33 /**
34 @memberOf Foo#
35 */
36 var blat = function() {
37
38 }