When running Kotlin/WasmJS app in Firefox 140 I se...
# webassembly
r
When running Kotlin/WasmJS app in Firefox 140 I see this warning in the browser console:
The WebAssembly exception handling 'try' instruction is deprecated and should no longer be used. Please recompile to use the 'try_table' instruction instead.
. Is this a known issue?
👀 2
Kotlin/WASM compiles to the legacy proposal by default, while waiting for widespread support of the newer proposal
thank you color 1