From f6ab6622aab00fe7c2f4c3dc41f786ebbe0f0d73 Mon Sep 17 00:00:00 2001 From: Rogan Creswick Date: Fri, 30 Mar 2012 17:07:02 -0700 Subject: initial revision --- tools/jsdoc-toolkit-2.4.0/app/test/memberof2.js | 38 +++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 tools/jsdoc-toolkit-2.4.0/app/test/memberof2.js (limited to 'tools/jsdoc-toolkit-2.4.0/app/test/memberof2.js') diff --git a/tools/jsdoc-toolkit-2.4.0/app/test/memberof2.js b/tools/jsdoc-toolkit-2.4.0/app/test/memberof2.js new file mode 100644 index 0000000..bc3d9d8 --- /dev/null +++ b/tools/jsdoc-toolkit-2.4.0/app/test/memberof2.js @@ -0,0 +1,38 @@ +/** + * @constructor + */ +function Foo() { + /** + @memberOf Foo.prototype + */ + function bar(a, b) { + } + + /** + @memberOf Foo + */ + var zip = function(p, q) { + } + + /** + @memberOf Foo + */ + function zop( x,y ) { + } + + /** + @memberOf Foo + @constructor + */ + function Fiz() { + /** A method of Foo#Fiz. */ + this.fipple = function(fop){} + } +} + +/** + @memberOf Foo# + */ +var blat = function() { + +} \ No newline at end of file -- cgit v1.2.3