pdf.js/external/builder/fixtures_babel/blocks-expected.js
Nicolò Ribaudo aebe0cb67f
Remove unused OpenJPEG wasm fallback logic
Emscripten generates code that allows the caller to provide the Wasm
module (thorugh Module.instantiateWasm), with a fallback in case
.instantiateWasm is not provided. We always define instantiateWasm, so
we can hard-code the check and let our dead code elimination logic
remove the unused fallback.

This commit also improved the dead code elimination logic so that if
a function declaration becomes unused as a result of removing dead
code, the function itself is removed.
2025-05-13 19:38:17 +02:00

12 lines
95 B
JavaScript

function test() {
"test";
"1";
"2";
"3";
if ("test") {
"5";
}
"4";
}
test();