Files
coffeescript/test/fixtures/execution/assign_to_try_catch.js
2009-12-24 00:12:07 -08:00

9 lines
136 B
JavaScript

(function(){
var result;
try {
result = nonexistent * missing;
} catch (error) {
result = true;
}
print(result);
})();