can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / augments2.js
diff --git a/jsdoc-toolkit/app/test/augments2.js b/jsdoc-toolkit/app/test/augments2.js
new file mode 100644 (file)
index 0000000..e8388f0
--- /dev/null
@@ -0,0 +1,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() {
+       }
+}