We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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) ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: