oxc/crates/oxc_semantic/tests/cfg_fixtures/function_in_finally.js
Boshen 889837704c
feat(semantic): cfg prototype (#2019)
Co-authored-by: U9G <git@u9g.dev>
2024-01-25 20:19:35 +08:00

8 lines
134 B
JavaScript

try {
("try");
} finally {
function should_be_created_twice_in_cfg() {
"should_be_created_twice_in_cfg";
}
("finally");
}