oxc/crates/oxc_semantic/tests/cfg_fixtures/do_while_break.js
2024-02-01 20:46:38 +08:00

8 lines
95 B
JavaScript

var foo = function () {
try {
} finally {
do {
break;
} while (true);
}
};