Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools/jsdoc-toolkit/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(){
}