/tags/jsdoc_toolkit-2.3.2/jsdoc-toolkit/app/test/synonyms.js
http://jsdoc-toolkit.googlecode.com/ · JavaScript · 31 lines · 11 code · 4 blank · 16 comment · 0 complexity · 7dec43f670fe73cdbe189be67e9fdb01 MD5 · raw file
- /**
- @class
- @inherits Bar#zop as #my_zop
- */
- function Foo() {
- /** this is a zip. */
- this.zip = function() {}
-
- /** from Bar */
- this.my_zop = new Bar().zop;
- }
- /**
- @class
- @borrows Foo#zip as this.my_zip
- */
- function Bar() {
- /** this is a zop. */
- this.zop = function() {}
-
- /** from Foo */
- this.my_zip = new Foo().zip;
- }
- /** @namespace */
- var myObject = {
- /**
- @type function
- */
- myFunc: getFunction()
- }