This commit is contained in:
Tj Holowaychuk 2010-08-05 10:47:26 -07:00 коммит произвёл Ryan Dahl
Родитель a8e1e8d057
Коммит e8795cea30
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -247,6 +247,16 @@ global.console.timeEnd = function(label){
global.console.log('%s: %dms', label, duration);
};
global.console.trace = function(label){
// TODO probably can to do this better with V8's debug object once that is
// exposed.
var err = new Error;
err.name = 'Trace';
err.message = label || '';
Error.captureStackTrace(err, arguments.callee);
console.error(err.stack);
};
global.console.assert = function(expression){
if(!expression){
var arr = Array.prototype.slice.call(arguments, 1);