[api] Remove deprecated wasm module type check

The method was deprecated in favor of {IsWasmModuleObject}.

R=adamk@chromium.org

Bug: v8:10155
Change-Id: Id21a1b74dde5576c2c82cc209555c22209a9e5d4
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2033170
Reviewed-by: Adam Klein <adamk@chromium.org>
Commit-Queue: Clemens Backes <clemensb@chromium.org>
Cr-Commit-Position: refs/heads/master@{#66469}
This commit is contained in:
Clemens Backes 2020-01-31 15:59:56 +01:00 committed by Commit Bot
parent 9a96f1bbad
commit 700b1b97e9
2 changed files with 0 additions and 4 deletions

View File

@ -2789,9 +2789,6 @@ class V8_EXPORT Value : public Data {
*/
bool IsWasmModuleObject() const;
V8_DEPRECATED("Use IsWasmModuleObject")
bool IsWebAssemblyCompiledModule() const;
/**
* Returns true if the value is a Module Namespace Object.
*/

View File

@ -3505,7 +3505,6 @@ VALUE_IS_SPECIFIC_TYPE(Set, JSSet)
VALUE_IS_SPECIFIC_TYPE(WasmModuleObject, WasmModuleObject)
VALUE_IS_SPECIFIC_TYPE(WeakMap, JSWeakMap)
VALUE_IS_SPECIFIC_TYPE(WeakSet, JSWeakSet)
VALUE_IS_SPECIFIC_TYPE(WebAssemblyCompiledModule, WasmModuleObject)
#undef VALUE_IS_SPECIFIC_TYPE