Minor documentation changes
parent
e870310341
commit
6a14b86777
10
lib/class.js
10
lib/class.js
|
@ -31,6 +31,16 @@ var Class = function()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copies properties to the destination object
|
||||||
|
*
|
||||||
|
* The destination object is directly modified.
|
||||||
|
*
|
||||||
|
* @param {Object} props properties to copy
|
||||||
|
* @param {Object} dest destination object
|
||||||
|
*
|
||||||
|
* @return undefined
|
||||||
|
*/
|
||||||
var prop_copy = function( props, dest )
|
var prop_copy = function( props, dest )
|
||||||
{
|
{
|
||||||
// copy each of the properties to the destination object
|
// copy each of the properties to the destination object
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/**
|
/**
|
||||||
* Tests Class class
|
* Tests class module constructor creation
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010 Mike Gerwitz
|
* Copyright (C) 2010 Mike Gerwitz
|
||||||
*
|
*
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
* @author Mike Gerwitz
|
* @author Mike Gerwitz
|
||||||
* @package core
|
* @package test
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require( './common' );
|
require( './common' );
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/**
|
/**
|
||||||
* Tests Class class
|
* Tests class module object creation
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010 Mike Gerwitz
|
* Copyright (C) 2010 Mike Gerwitz
|
||||||
*
|
*
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
* @author Mike Gerwitz
|
* @author Mike Gerwitz
|
||||||
* @package core
|
* @package test
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require( './common' );
|
require( './common' );
|
||||||
|
|
Loading…
Reference in New Issue