|
@@ -26,6 +26,9 @@ void PlainDatePrototype::initialize(GlobalObject& global_object)
|
|
|
define_direct_property(*vm.well_known_symbol_to_string_tag(), js_string(vm.heap(), "Temporal.PlainDate"), Attribute::Configurable);
|
|
|
|
|
|
define_native_accessor(vm.names.calendar, calendar_getter, {}, Attribute::Configurable);
|
|
|
+
|
|
|
+ u8 attr = Attribute::Writable | Attribute::Configurable;
|
|
|
+ define_native_function(vm.names.valueOf, value_of, 0, attr);
|
|
|
}
|
|
|
|
|
|
static PlainDate* typed_this(GlobalObject& global_object)
|
|
@@ -54,4 +57,12 @@ JS_DEFINE_NATIVE_FUNCTION(PlainDatePrototype::calendar_getter)
|
|
|
return Value(&temporal_date->calendar());
|
|
|
}
|
|
|
|
|
|
+// 3.3.31 Temporal.PlainDate.prototype.valueOf ( ), https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype.valueof
|
|
|
+JS_DEFINE_NATIVE_FUNCTION(PlainDatePrototype::value_of)
|
|
|
+{
|
|
|
+ // 1. Throw a TypeError exception.
|
|
|
+ vm.throw_exception<TypeError>(global_object, ErrorType::Convert, "Temporal.PlainDate", "a primitive value");
|
|
|
+ return {};
|
|
|
+}
|
|
|
+
|
|
|
}
|