aboutsummaryrefslogtreecommitdiff
path: root/tools/jsdoc-toolkit-2.4.0/app/test/augments2.js
blob: e8388f0f8858c5361b530f82d5930e32def9032b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
@constructor
*/
function LibraryItem() {
	this.reserve = function() {
	}
}

/**
@constructor
*/
function Junkmail() {
	this.annoy = function() {
	}
}

/**
@inherits Junkmail.prototype.annoy as pester
@augments ThreeColumnPage
@augments LibraryItem
@constructor
*/
function NewsletterPage() {
	this.getHeadline = function() {
	}
}