From ea2c9b8d1892942d1456a25b302a2e26d6d0465c Mon Sep 17 00:00:00 2001 From: HalidOdat Date: Sat, 28 Aug 2021 16:51:06 +0200 Subject: [PATCH] Implement `Object.preventExtensions()` and `Object.isExtensible()` --- boa/src/builtins/object/mod.rs | 53 ++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/boa/src/builtins/object/mod.rs b/boa/src/builtins/object/mod.rs index 571c29b782c..d199647aafc 100644 --- a/boa/src/builtins/object/mod.rs +++ b/boa/src/builtins/object/mod.rs @@ -72,6 +72,8 @@ impl BuiltIn for Object { .static_method(Self::is_sealed, "isSealed", 1) .static_method(Self::freeze, "freeze", 1) .static_method(Self::is_frozen, "isFrozen", 1) + .static_method(Self::prevent_extensions, "preventExtensions", 1) + .static_method(Self::is_extensible, "isExtensible", 1) .static_method( Self::get_own_property_descriptor, "getOwnPropertyDescriptor", @@ -781,6 +783,57 @@ impl Object { Ok(JsValue::new(true)) } } + + /// `Object.preventExtensions( target )` + /// + /// More information: + /// - [ECMAScript reference][spec] + /// - [MDN documentation][mdn] + /// + /// [spec]: https://tc39.es/ecma262/#sec-object.preventextensions + /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/preventExtensions + pub fn prevent_extensions( + _: &JsValue, + args: &[JsValue], + context: &mut Context, + ) -> JsResult { + let o = args.get(0).cloned().unwrap_or_default(); + + if let Some(o) = o.as_object() { + // 2. Let status be ? O.[[PreventExtensions]](). + let status = o.__prevent_extensions__(context)?; + // 3. If status is false, throw a TypeError exception. + if !status { + return context.throw_type_error("cannot prevent extensions"); + } + } + // 1. If Type(O) is not Object, return O. + // 4. Return O. + Ok(o) + } + + /// `Object.isExtensible( target )` + /// + /// More information: + /// - [ECMAScript reference][spec] + /// - [MDN documentation][mdn] + /// + /// [spec]: https://tc39.es/ecma262/#sec-object.isextensible + /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isExtensible + pub fn is_extensible( + _: &JsValue, + args: &[JsValue], + context: &mut Context, + ) -> JsResult { + let o = args.get(0).cloned().unwrap_or_default(); + // 1. If Type(O) is not Object, return false. + if let Some(o) = o.as_object() { + // 2. Return ? IsExtensible(O). + Ok(o.is_extensible(context)?.into()) + } else { + Ok(JsValue::new(false)) + } + } } /// The abstract operation ObjectDefineProperties