Skip to content

Commit a63db7f

Browse files
backesmmarchini
authored andcommitted
src: remove deprecated wasm type check
This removes uses of the "IsWebAssemblyCompiledModule" method, which is deprecated in V8 v8.1 and will be removed in v8.2. We could replace it by "IsWasmModuleObject", but since it's unused in node anyway, I just remove the definition. PR-URL: #32116 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent c080b2d commit a63db7f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

doc/api/util.md

+3
Original file line numberDiff line numberDiff line change
@@ -1891,8 +1891,11 @@ util.types.isWeakSet(new WeakSet()); // Returns true
18911891
### `util.types.isWebAssemblyCompiledModule(value)`
18921892
<!-- YAML
18931893
added: v10.0.0
1894+
deprecated: REPLACEME
18941895
-->
18951896

1897+
> Stability: 0 - Deprecated: Use `value instanceof WebAssembly.Module` instead.
1898+
18961899
* `value` {any}
18971900
* Returns: {boolean}
18981901

src/node_types.cc

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ namespace {
3535
V(DataView) \
3636
V(SharedArrayBuffer) \
3737
V(Proxy) \
38-
V(WebAssemblyCompiledModule) \
3938
V(ModuleNamespaceObject) \
4039

4140

0 commit comments

Comments
 (0)