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
diagnostics.warning('transpile', 'enabling transpilation via closure due to browser version settings. This warning can be suppressed by passing `--closure=1` or `--closure=0` to opt into our explicitly.')
Copy file name to clipboardExpand all lines: src/parseTools.js
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -488,14 +488,18 @@ function makeReturn64(value) {
488
488
return`(setTempRet0(${pair[1]}), ${pair[0]})`;
489
489
}
490
490
491
-
functionmakeThrow(what){
491
+
functionmakeThrow(excPtr){
492
492
if(ASSERTIONS&&DISABLE_EXCEPTION_CATCHING){
493
-
what+=' + " - Exception catching is disabled, this exception cannot be caught. Compile with -sNO_DISABLE_EXCEPTION_CATCHING or -sEXCEPTION_CATCHING_ALLOWED=[..] to catch."';
493
+
excPtr+=' + " - Exception catching is disabled, this exception cannot be caught. Compile with -sNO_DISABLE_EXCEPTION_CATCHING or -sEXCEPTION_CATCHING_ALLOWED=[..] to catch."';
494
494
if(MAIN_MODULE){
495
-
what+=' + " (note: in dynamic linking, if a side module wants exceptions, the main module must be built with that support)"';
495
+
excPtr+=' + " (note: in dynamic linking, if a side module wants exceptions, the main module must be built with that support)"';
0 commit comments