Index: src/v8natives.js |
diff --git a/src/v8natives.js b/src/v8natives.js |
index 8ff6f40461f4d4cc6c67079325247c794f3b1a35..9eaf5d4ba057a84a09ef9bb8cd8de858c88eeb4d 100644 |
--- a/src/v8natives.js |
+++ b/src/v8natives.js |
@@ -1255,9 +1255,7 @@ |
// ES5 section 15.2.3.8. |
function ObjectSealJS(obj) { |
- if (!IS_SPEC_OBJECT(obj)) { |
- throw MakeTypeError(kCalledOnNonObject, "Object.seal"); |
- } |
+ if (!IS_SPEC_OBJECT(obj)) return obj; |
var isProxy = %_IsJSProxy(obj); |
if (isProxy || %HasSloppyArgumentsElements(obj) || %IsObserved(obj)) { |
if (isProxy) { |
@@ -1284,9 +1282,7 @@ |
// ES5 section 15.2.3.9. |
function ObjectFreezeJS(obj) { |
- if (!IS_SPEC_OBJECT(obj)) { |
- throw MakeTypeError(kCalledOnNonObject, "Object.freeze"); |
- } |
+ if (!IS_SPEC_OBJECT(obj)) return obj; |
var isProxy = %_IsJSProxy(obj); |
if (isProxy || %HasSloppyArgumentsElements(obj) || %IsObserved(obj)) { |
if (isProxy) { |
@@ -1314,9 +1310,7 @@ |
// ES5 section 15.2.3.10 |
function ObjectPreventExtension(obj) { |
- if (!IS_SPEC_OBJECT(obj)) { |
- throw MakeTypeError(kCalledOnNonObject, "Object.preventExtension"); |
- } |
+ if (!IS_SPEC_OBJECT(obj)) return obj; |
if (%_IsJSProxy(obj)) { |
ProxyFix(obj); |
} |
@@ -1327,9 +1321,7 @@ |
// ES5 section 15.2.3.11 |
function ObjectIsSealed(obj) { |
- if (!IS_SPEC_OBJECT(obj)) { |
- throw MakeTypeError(kCalledOnNonObject, "Object.isSealed"); |
- } |
+ if (!IS_SPEC_OBJECT(obj)) return true; |
if (%_IsJSProxy(obj)) { |
return false; |
} |
@@ -1350,9 +1342,7 @@ |
// ES5 section 15.2.3.12 |
function ObjectIsFrozen(obj) { |
- if (!IS_SPEC_OBJECT(obj)) { |
- throw MakeTypeError(kCalledOnNonObject, "Object.isFrozen"); |
- } |
+ if (!IS_SPEC_OBJECT(obj)) return true; |
if (%_IsJSProxy(obj)) { |
return false; |
} |
@@ -1372,9 +1362,7 @@ |
// ES5 section 15.2.3.13 |
function ObjectIsExtensible(obj) { |
- if (!IS_SPEC_OBJECT(obj)) { |
- throw MakeTypeError(kCalledOnNonObject, "Object.isExtensible"); |
- } |
+ if (!IS_SPEC_OBJECT(obj)) return false; |
if (%_IsJSProxy(obj)) { |
return true; |
} |