1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

Add onerror handler for uncaught exceptions

This commit is contained in:
Ryan Dahl 2018-05-27 00:15:52 -04:00
parent fe6e4febdb
commit 65a2c4b421

View file

@ -23,6 +23,12 @@ const deno = { pub, sub };
type AmdFactory = (...args: any[]) => undefined | object;
type AmdDefine = (deps: string[], factory: AmdFactory) => void;
// Uncaught exceptions are sent to window.onerror by v8worker2.
window.onerror = function(message, source, lineno, colno, error) {
console.log(error.message, error.stack);
os.exit(1);
};
export function setup(mainJs: string, mainMap: string): void {
sourceMaps.install({
installPrepareStackTrace: true,