projects
/
dygraphs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #63 from kberg/master
[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
}