Home | History | Annotate | Download | only in mocha

Lines Matching refs:uncaught

2160     // uncaught
2161 if (err.uncaught) {
2162 msg = 'Uncaught ' + msg;
5132 * Handle uncaught exceptions.
5138 Runner.prototype.uncaught = function(err){
5140 debug('uncaught exception %s', err !== function () {
5144 debug('uncaught undefined exception');
5147 err.uncaught = true;
5184 function uncaught(err){
5185 self.uncaught(err);
5201 process.removeListener('uncaughtException', uncaught);
5205 // uncaught exception
5206 process.on('uncaughtException', uncaught);