Chromium Code Reviews| Index: src/js/proxy.js |
| diff --git a/src/js/proxy.js b/src/js/proxy.js |
| index d1202f7066bd2d66170f7518f0b95376fb77807a..92612b52f16e9ebac37f7de69bccdf835e0bc582 100644 |
| --- a/src/js/proxy.js |
| +++ b/src/js/proxy.js |
| @@ -130,10 +130,6 @@ function DerivedSetTrap(receiver, name, val) { |
| return true; |
| } |
| -function DerivedHasTrap(name) { |
| - return !!this.getPropertyDescriptor(name) |
| -} |
| - |
| function DerivedHasOwnTrap(name) { |
| return !!this.getOwnPropertyDescriptor(name) |
| } |
|
neis
2015/11/27 14:30:24
I think this one should go as well.
Jakob Kummerow
2015/11/30 08:49:27
Unfortunately it's still used by ObjectHasOwnPrope
|
| @@ -197,7 +193,6 @@ utils.Export(function(to) { |
| %InstallToContext([ |
| "derived_get_trap", DerivedGetTrap, |
| - "derived_has_trap", DerivedHasTrap, |
| "derived_set_trap", DerivedSetTrap, |
| "proxy_enumerate", ProxyEnumerate, |
| ]); |