Espruino/tests/test_exception_3.js
2014-06-13 16:51:27 +01:00

15 lines
218 B
JavaScript

a = [];
try {
a.push("Before");
throw "Oh Noes!";
a.push("After");
} catch (e) {
a.push("Catch");
} finally {
a.push("Finally");
}
a.push("After");
a = a.join(",");
result = a=="Before,Catch,Finally,After";