can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / prototype_oblit.js
CommitLineData
629a09ae
DV
1/** @constructor */
2function Article() {
3}
4
5Article.prototype = {
6 /** instance get title */
7 getTitle: function(){
8 }
9}
10
11/** static get title */
12Article.getTitle = function(){
13}