|
@@ -18,6 +18,11 @@ PlainMonthDayPrototype::PlainMonthDayPrototype(GlobalObject& global_object)
|
|
|
void PlainMonthDayPrototype::initialize(GlobalObject& global_object)
|
|
|
{
|
|
|
Object::initialize(global_object);
|
|
|
+
|
|
|
+ auto& vm = this->vm();
|
|
|
+
|
|
|
+ // 10.3.2 Temporal.PlainMonthDay.prototype[ @@toStringTag ], https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype-@@tostringtag
|
|
|
+ define_direct_property(*vm.well_known_symbol_to_string_tag(), js_string(vm, "Temporal.PlainMonthDay"), Attribute::Configurable);
|
|
|
}
|
|
|
|
|
|
}
|