jsdoc/test/fixtures/variations2.js
Jannon 034205baa8 Testing Framework Upgrade Part II
The second half of the first phase of the testing framework upgrade.  This finishes moving the exisintg tests to jasmine and the new test directory structure
2012-05-04 18:52:19 -07:00

37 lines
554 B
JavaScript

/**
* Describe the namespace.
* @namespace dollar(1)
*/
/**
* Describe the constructor.
* @constructor dollar(2)
* @param {object} [options]
*/
/**
* Describe the global function.
* @function dollar(3)
* @param {string} selector - The selector string.
*/
dollar = function(a, b) {
};
/**
* Describe the instance method.
* @instance
* @function empty
* @memberof dollar(2)
*/
dollar.prototype.empty = function() {
}
/**
* Describe the static method.
* @function klass
* @memberof dollar(1)
* @param {string} name
*/
dollar.klass = function(name) {
};