aboutsummaryrefslogtreecommitdiff
path: root/tools/jsdoc-toolkit-2.4.0/app/test/prototype_oblit.js
blob: 6cfc39caf701a4511349f81a29c3fa25d8565c0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/** @constructor */
function Article() {
}

Article.prototype = {
	/** instance get title */
	getTitle: function(){
	}
}

/** static get title */
Article.getTitle = function(){
}