Explorar el Código

do not throw catched JS exceptions

Nicolas Petton hace 11 años
padre
commit
d025b45912
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      js/boot.js

+ 2 - 1
js/boot.js

@@ -576,7 +576,8 @@ function Smalltalk() {
 				st.thisContext = undefined;
                 // Throw the exception anyway, as we want to stop
                 // the execution to avoid infinite loops
-				throw error;
+                // Update: do not throw the exception. It's really annoying.
+				// throw error;
 			}
 		}
 	};