You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Appears to be an edge case when using multiple entry files. I think what happens here is that module export status becomes overridden when elements are linked in between entry files. Just came accross that in the resolver rework as well and are looking for a better implementation now.
For some reason when I do
import {ClassB} from "./B";
inassembly/A.ts
then the stuff out ofassembly/B.ts
isn't inbuild/untouched.wasm
anymore.This is a minimal repro:
assembly/A.ts
assembly/B.ts
doit.sh
Then everything is exported:
However, if you now uncomment the first line in
assembly/A.ts
:Then the stuff from
ClassB
isn't in thebuild/untouched.wasm
anymore:The text was updated successfully, but these errors were encountered: