You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In VS Code's extension host, if an extension throws an unhandled exception at certain points in its lifecycle, then the abort() function generated by emscripten in libpcre2.js catches it and throws an exception that causes the extension host to die. (See line 762 of libpcre2.js).
The text was updated successfully, but these errors were encountered:
// By default we handle exit() in node, by catching the Exit exception. However,// this means we catch all process exceptions. If you disable this, then we no// longer do that, and exceptions work normally, which can be useful for libraries// or programs that don't need exit() to work.// Emscripten uses an ExitStatus exception to halt when exit() is called.// With this option, we prevent that from showing up as an unhandled// exception.// [link]varNODEJS_CATCH_EXIT=1;// Catch unhandled rejections in node. Without this, node may print the error,// and that this behavior will change in future node, wait a few seconds, and// then exit with 0 (which hides the error if you don't read the log). With// this, we catch any unhandled rejection and throw an actual error, which will// make the process exit immediately with a non-0 return code.// This should be fixed in Node 15+.// [link]varNODEJS_CATCH_REJECTION=1;
In VS Code's extension host, if an extension throws an unhandled exception at certain points in its lifecycle, then the abort() function generated by emscripten in
libpcre2.js
catches it and throws an exception that causes the extension host to die. (See line 762 oflibpcre2.js
).The text was updated successfully, but these errors were encountered: