Creates a new linker which will instantiate in the given engine.
| 28 | |
| 29 | /// Creates a new linker which will instantiate in the given engine. |
| 30 | explicit Linker(Engine &engine) : ptr(wasmtime_linker_new(engine.capi())) {} |
| 31 | |
| 32 | /// Configures whether shadowing previous names is allowed or not. |
| 33 | /// |
nothing calls this directly
no test coverage detected