Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Unified Diff: src/objects-inl.h

Issue 2228073002: [wasm] serialization: updated external APIs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: [wasm] serialization: updated external APIs Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/objects.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-inl.h
diff --git a/src/objects-inl.h b/src/objects-inl.h
index 2b0b271af3306c0901c4cc69b55259242fe44981..fe4438d246cb5668d5bdb59c245e89ccbb5ba9da 100644
--- a/src/objects-inl.h
+++ b/src/objects-inl.h
@@ -143,12 +143,6 @@ bool HeapObject::IsFixedArrayBase() const {
return IsFixedArray() || IsFixedDoubleArray() || IsFixedTypedArrayBase();
}
-bool HeapObject::IsWebAssemblyCompiledModule() const {
- if (!IsJSObject()) return false;
- return GetIsolate()->native_context()->wasm_module_constructor() ==
- this->map()->GetConstructor();
-}
-
bool HeapObject::IsFixedArray() const {
InstanceType instance_type = map()->instance_type();
return instance_type == FIXED_ARRAY_TYPE ||
« no previous file with comments | « src/objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698