Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 230b426af150a421e444662f3638bd6cc47fbae3..4823243f2384b510771dd53a76dfa3bdb80c9471 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -1670,11 +1670,6 @@ |
MUST_USE_RESULT static inline Maybe<PropertyAttributes> |
GetOwnElementAttribute(Handle<JSReceiver> object, uint32_t index); |
- static Handle<Object> GetDataProperty(Handle<JSReceiver> object, |
- Handle<Name> key); |
- static Handle<Object> GetDataProperty(LookupIterator* it); |
- |
- |
// Retrieves a permanent object identity hash code. The undefined value might |
// be returned in case no hash was created yet. |
inline Object* GetIdentityHash(); |
@@ -2170,6 +2165,10 @@ |
MUST_USE_RESULT static MaybeHandle<JSObject> DeepWalk( |
Handle<JSObject> object, |
AllocationSiteCreationContext* site_context); |
+ |
+ static Handle<Object> GetDataProperty(Handle<JSObject> object, |
+ Handle<Name> key); |
+ static Handle<Object> GetDataProperty(LookupIterator* it); |
DECLARE_CAST(JSObject) |