mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
The semantic crate currently compiles 5 binaries for integration test, this PR merges them into one.
8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
function myFunction() {
|
|
if (true || false) {
|
|
return 1
|
|
} else {
|
|
return 2
|
|
}
|
|
return 3; // unreachable
|
|
}
|