dwf: more doc commits

This commit is contained in:
Davis W. Frank
2009-06-28 13:36:51 -07:00
parent 165c041256
commit 19b73469dd
11 changed files with 1007 additions and 135 deletions

View File

@@ -1,6 +1,15 @@
/** @namespace */
/**
* @namespace
*/
jasmine.util = {};
/**
* Declare that a child class inherite it's prototype from the parent class.
*
* @private
* @param {Function} childClass
* @param {Function} parentClass
*/
jasmine.util.inherit = function(childClass, parentClass) {
var subclass = function() {
};