memberof2.js 468 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * @constructor
  3. */
  4. function Foo() {
  5. /**
  6. @memberOf Foo.prototype
  7. */
  8. function bar(a, b) {
  9. }
  10. /**
  11. @memberOf Foo
  12. */
  13. var zip = function(p, q) {
  14. }
  15. /**
  16. @memberOf Foo
  17. */
  18. function zop( x,y ) {
  19. }
  20. /**
  21. @memberOf Foo
  22. @constructor
  23. */
  24. function Fiz() {
  25. /** A method of Foo#Fiz. */
  26. this.fipple = function(fop){}
  27. }
  28. }
  29. /**
  30. @memberOf Foo#
  31. */
  32. var blat = function() {
  33. }