Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index d4a1f702b96910bf3580f076ce5519b65b512c46..1ef0e5f672692558988c28022bf9517af684cd55 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -1535,9 +1535,6 @@ class Object : public MaybeObject { |
// Property access. |
MUST_USE_RESULT inline MaybeObject* GetProperty(Name* key); |
- MUST_USE_RESULT inline MaybeObject* GetProperty( |
- Name* key, |
- PropertyAttributes* attributes); |
// TODO(yangguo): this should eventually replace the non-handlified version. |
MUST_USE_RESULT static MaybeHandle<Object> GetPropertyWithReceiver( |
@@ -2392,10 +2389,6 @@ class JSObject: public JSReceiver { |
Handle<Object> receiver, |
Handle<Name> name, |
PropertyAttributes* attributes); |
- MUST_USE_RESULT MaybeObject* GetLocalPropertyPostInterceptor( |
- Object* receiver, |
- Name* name, |
- PropertyAttributes* attributes); |
// Returns true if this is an instance of an api function and has |
// been modified since it was created. May give false positives. |