Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 927782d30a10348a59f84fa04126b10d3ec4a4a0..ae118b4aca38d861f80fc4e43c1524a308dc2e55 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -1999,7 +1999,6 @@ class JSReceiver: public HeapObject { |
// Lookup a property. If found, the result is valid and has |
// detailed information. |
- void LookupOwn(Handle<Name> name, LookupResult* result); |
void Lookup(Handle<Name> name, LookupResult* result); |
enum KeyCollectionType { OWN_ONLY, INCLUDE_PROTOS }; |
@@ -2011,6 +2010,7 @@ class JSReceiver: public HeapObject { |
KeyCollectionType type); |
private: |
+ void LookupOwn(Handle<Name> name, LookupResult* result); |
DISALLOW_IMPLICIT_CONSTRUCTORS(JSReceiver); |
}; |