* Marks a custom or built-in wasm loading type as enabled for the compiler * without applying additional built-in behavior. * @param {Compiler} compiler the compiler instance * @param {WasmLoadingType} type type of library * @returns {void}
(compiler, type)
| 52 | * @returns {void} |
| 53 | */ |
| 54 | static setEnabled(compiler, type) { |
| 55 | getEnabledTypes(compiler).add(type); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Verifies that a wasm loading type has been enabled before code generation |
nothing calls this directly
no test coverage detected