wasm-merge call_indirect #5782
-
|
with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Here's the scheme I would expect such languages to follow: If module |
Beta Was this translation helpful? Give feedback.
Here's the scheme I would expect such languages to follow: If module
Awants tocall_indirecta function from moduleB, thenAwould import the function fromBand put it inA's table. Separately, moduleBmight also put the function inB's table for its own use. When modulesAandBare merged, the function would still be placed in both tables and all thecall_indirects would still work.