Open g-rodigy opened 2 months ago
Compiled python code not present in wasm export. Is this how it should be or can the behavior be changed? For example simple code like.
def mysum(a, b): return a + b
In result wasm file this function name will be like $impl___main__$$$function__1_mysum and will not exported.
$impl___main__$$$function__1_mysum
wasm code function definition
(func $impl___main__$$$function__1_mysum (;8524;) (param $var0 i32) (param $var1 i32) (param $var2 i32) (result i32) ...
Compiled python code not present in wasm export. Is this how it should be or can the behavior be changed? For example simple code like.
In result wasm file this function name will be like
$impl___main__$$$function__1_mysum
and will not exported.wasm code function definition