Espruino/tests/test_exception_2.js
2023-11-29 13:46:43 +00:00

16 lines
251 B
JavaScript

try {
throw "Oh Noes!";
} finally {
console.log("Finally block executed");
result = 1;
}
console.log("exception uncaught so nothing from here is executed");
result = 0;
try {
result = 0;
} catch (e) {
result = 0;
} finally {
result = 0;
}