Lines Matching refs:error
382 // Throw an error so that the event will not be added and the current
383 // domain takes over. That way the user is notified about the error
385 // that contains an error.
463 // Continue regardless of error.
488 // in order to detect if error is truly non recoverable
541 debug('parse error %j', code, e);
550 // Preserve original error for wrapped command
551 const error = wrappedErr || e;
552 if (isRecoverableError(error, code))
553 err = new Recoverable(error);
555 err = error;
620 process.domain.emit('error', err);
651 process.domain.emit('error', err);
672 self._domain.on('error', function debugDomainError(e) {
673 debug('domain error');
677 overrideStackTrace.set(e, (error, stackFrames) => {
695 return Error.prepareStackTrace(error, frames);
697 ArrayPrototypePush(frames, error);
735 // Remove one line error braces to keep the old style in place.
944 // If error was SyntaxError and not JSON.parse error
955 self._domain.emit('error', e.err || e);
962 // If we got any output - print it (if no error)
964 // When an invalid REPL command is used, error message is printed
975 // Display prompt again (unless we already did by emitting the 'error'
1272 }, (error, result) => {
1273 if (!error) names = result.names;
1287 // Continue regardless of error.