Commit 8a70e9f9 authored by neis's avatar neis Committed by Commit bot

Remove (now) unused GetPropertyWithHandler.

R=cbruni@chromium.org
BUG=

Review URL: https://codereview.chromium.org/1499573004

Cr-Commit-Position: refs/heads/master@{#32578}
parent 282e9411
...@@ -4100,8 +4100,8 @@ Maybe<bool> Object::RedefineIncompatibleProperty(Isolate* isolate, ...@@ -4100,8 +4100,8 @@ Maybe<bool> Object::RedefineIncompatibleProperty(Isolate* isolate,
Maybe<bool> Object::SetDataProperty(LookupIterator* it, Handle<Object> value) { Maybe<bool> Object::SetDataProperty(LookupIterator* it, Handle<Object> value) {
// Proxies are handled on the WithHandler path. Other non-JSObjects cannot // Proxies are handled elsewhere. Other non-JSObjects cannot have own
// have own properties. // properties.
Handle<JSObject> receiver = Handle<JSObject>::cast(it->GetReceiver()); Handle<JSObject> receiver = Handle<JSObject>::cast(it->GetReceiver());
// Store on the holder which may be hidden behind the receiver. // Store on the holder which may be hidden behind the receiver.
......
...@@ -9566,11 +9566,6 @@ class JSProxy: public JSReceiver { ...@@ -9566,11 +9566,6 @@ class JSProxy: public JSReceiver {
Handle<JSProxy> proxy, PropertyFilter filter, Handle<JSProxy> proxy, PropertyFilter filter,
KeyAccumulator* accumulator); KeyAccumulator* accumulator);
MUST_USE_RESULT static MaybeHandle<Object> GetPropertyWithHandler(
Handle<JSProxy> proxy,
Handle<Object> receiver,
Handle<Name> name);
MUST_USE_RESULT static Maybe<PropertyAttributes> GetPropertyAttributes( MUST_USE_RESULT static Maybe<PropertyAttributes> GetPropertyAttributes(
LookupIterator* it); LookupIterator* it);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment