(name: string)
| 35 | public readonly mangledName: string; |
| 36 | |
| 37 | public constructor(name: string) { |
| 38 | this.name = name; |
| 39 | this.mangledName = mangleModuleName(name); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Gets the C typename that was generated by wasm2c for this imported module. |
nothing calls this directly
no test coverage detected