| Index: src/v8natives.js
|
| diff --git a/src/v8natives.js b/src/v8natives.js
|
| index 256343a89e9a8ec302242b40d37764cb62696c87..0a4c0ed75fd1072c5bbe9ab2aebd6b412ecb1f14 100644
|
| --- a/src/v8natives.js
|
| +++ b/src/v8natives.js
|
| @@ -1282,7 +1282,7 @@ function ObjectFreeze(obj) {
|
| throw MakeTypeError("called_on_non_object", ["Object.freeze"]);
|
| }
|
| var isProxy = %IsJSProxy(obj);
|
| - if (isProxy || %HasNonStrictArgumentsElements(obj) || %IsObserved(obj)) {
|
| + if (isProxy || %HasSloppyArgumentsElements(obj) || %IsObserved(obj)) {
|
| if (isProxy) {
|
| ProxyFix(obj);
|
| }
|
|
|