/tags/jsdoc_toolkit-1.3.3/test/data/ignore.js

http://jsdoc-toolkit.googlecode.com/ · JavaScript · 28 lines · 15 code · 5 blank · 8 comment · 0 complexity · f41e29069e860976cd15b1c3419e0bae MD5 · raw file

  1. /** @ignore */
  2. function Log() {
  3. this.warn = function(msg) {
  4. notify(msg);
  5. }
  6. }
  7. function Action() {
  8. this.passTo = function(obj) {
  9. obj.actOn(this);
  10. }
  11. /** This is deprecated
  12. * @ignore
  13. */
  14. this.execute = function() {
  15. this._index.push(action);
  16. }
  17. }
  18. /**
  19. * For use by developers only!
  20. * @private
  21. */
  22. function sortVars() {
  23. }