mediawiki-extensions-Visual.../modules/ve/ve.debug.js
Trevor Parscal 944228aec7 Whitespace and comments
* Added documentation for ve.AnnotationSet
* Replaced uses of "// Inheritance" with "// parent Constructor"
* Added "// Mixin constructor" where needed
* Added missing section comments like "/* Static Methods */"
* Cleaned up excessive newlines (matching /\n\n\n/g)
* Put unnecessarily multi-line statements on a single line

Change-Id: I2c9b47ba296f7dd3c9cc2985581fbcefd6d76325
2012-09-17 16:53:03 -07:00

32 lines
599 B
JavaScript

/*global console */
/**
* VisualEditor debugging methods.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/* Static Methods */
/**
* Logs data to the console.
*
* @static
* @method
* @param {Mixed} [...] Data to log
*/
ve.log = function () {
Function.prototype.apply.call( console.log, console, arguments );
};
/**
* Logs an object to the console.
*
* @static
* @method
* @param {Object} obj Object to log
*/
ve.dir = function () {
Function.prototype.apply.call( console.dir, console, arguments );
};