Chromium Code Reviews| Index: src/runtime.js |
| =================================================================== |
| --- src/runtime.js (revision 8778) |
| +++ src/runtime.js (working copy) |
| @@ -354,7 +354,8 @@ |
| if (!IS_SPEC_OBJECT(x)) { |
| throw %MakeTypeError('invalid_in_operator_use', [this, x]); |
| } |
| - return %_IsNonNegativeSmi(this) ? %HasElement(x, this) : %HasProperty(x, %ToString(this)); |
| + return %_IsNonNegativeSmi(this) && !%IsJSProxy(x) ? |
| + %HasElement(x, this) : %HasProperty(x, %ToString(this)); |
| } |