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
This would make Grain far more debuggable for both users and developers, as the function names show up in stack traces (with or without source maps) and of course in the wasm output.
Seeing the actual function name would be loads better than just $GRAIN$LAM_55.
Due to limitations with wasm source maps, we can't just source map to the original names.
Open questions:
How should shadowed functions be named?
How should anonymous functions be named?
The text was updated successfully, but these errors were encountered:
I'll also note that for fully linked modules, names are not expected to be retained (they don't exist in wasm binaries, which is what the linker stitches together).
This would make Grain far more debuggable for both users and developers, as the function names show up in stack traces (with or without source maps) and of course in the wasm output.
Seeing the actual function name would be loads better than just
$GRAIN$LAM_55
.Due to limitations with wasm source maps, we can't just source map to the original names.
Open questions:
The text was updated successfully, but these errors were encountered: