/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
- /** @ignore */
- function Log() {
- this.warn = function(msg) {
- notify(msg);
- }
- }
- function Action() {
- this.passTo = function(obj) {
- obj.actOn(this);
- }
-
- /** This is deprecated
- * @ignore
- */
- this.execute = function() {
- this._index.push(action);
- }
- }
- /**
- * For use by developers only!
- * @private
- */
- function sortVars() {
- }