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
Copy file name to clipboardExpand all lines: src/parseTools.mjs
+13-15Lines changed: 13 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -648,22 +648,21 @@ export function makeReturn64(value) {
648
648
return`(setTempRet0(${pair[1]}), ${pair[0]})`;
649
649
}
650
650
651
-
functionmakeThrow(excPtr){
652
-
if(ASSERTIONS&&DISABLE_EXCEPTION_CATCHING){
653
-
varassertInfo=
654
-
'Exception thrown, but exception catching is not enabled. Compile with -sNO_DISABLE_EXCEPTION_CATCHING or -sEXCEPTION_CATCHING_ALLOWED=[..] to catch.';
655
-
if(MAIN_MODULE){
656
-
assertInfo+=
657
-
' (note: in dynamic linking, if a side module wants exceptions, the main module must be built with that support)';
651
+
functionmakeThrow(){
652
+
if(DISABLE_EXCEPTION_CATCHING){
653
+
if(ASSERTIONS){
654
+
varassertInfo=
655
+
'Exception thrown, but exception catching is not enabled. Compile with -sNO_DISABLE_EXCEPTION_CATCHING or -sEXCEPTION_CATCHING_ALLOWED=[..] to catch.';
656
+
if(MAIN_MODULE){
657
+
assertInfo+=
658
+
' (note: in dynamic linking, if a side module wants exceptions, the main module must be built with that support)';
0 commit comments