This is equivalent to the existing import_name and import_module
attributes which control the import names in the final wasm binary
produced by lld.
This maps the existing
This attribute currently requires a string rather than using the
symbol name for a couple of reasons:
- Avoid confusion with static and dynamic linking which is based on symbol name. Exporting a function from a wasm module using this directive is orthogonal to both static and dynamic linking.
- Avoids name mangling.
does this test need to verify that the memory and _start are exported? seems like just a check for bar would be enough.