| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index a2780f9d27ec225c753fba1afe6865bdc8e7be17..1684d00d63b0f88cfa3899c33b38effd662b11b6 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -2958,6 +2958,9 @@ bool Value::IsNumber() const {
|
|
|
| bool Value::IsProxy() const { return Utils::OpenHandle(this)->IsJSProxy(); }
|
|
|
| +bool Value::IsWebAssemblyCompiledModule() const {
|
| + return Utils::OpenHandle(this)->IsWebAssemblyCompiledModule();
|
| +}
|
|
|
| #define VALUE_IS_SPECIFIC_TYPE(Type, Class) \
|
| bool Value::Is##Type() const { \
|
|
|