12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- * Copyright (c) 2021-2022, Idan Horowitz <idan.horowitz@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/TypeCasts.h>
- #include <LibJS/Runtime/WeakRefPrototype.h>
- namespace JS {
- GC_DEFINE_ALLOCATOR(WeakRefPrototype);
- WeakRefPrototype::WeakRefPrototype(Realm& realm)
- : PrototypeObject(realm.intrinsics().object_prototype())
- {
- }
- void WeakRefPrototype::initialize(Realm& realm)
- {
- auto& vm = this->vm();
- Base::initialize(realm);
- define_native_function(realm, vm.names.deref, deref, 0, Attribute::Writable | Attribute::Configurable);
- define_direct_property(vm.well_known_symbol_to_string_tag(), PrimitiveString::create(vm, vm.names.WeakRef.as_string()), Attribute::Configurable);
- }
- // 26.1.3.2 WeakRef.prototype.deref ( ), https://tc39.es/ecma262/#sec-weak-ref.prototype.deref
- JS_DEFINE_NATIVE_FUNCTION(WeakRefPrototype::deref)
- {
- // 1. Let weakRef be the this value.
- // 2. Perform ? RequireInternalSlot(weakRef, [[WeakRefTarget]]).
- auto weak_ref = TRY(typed_this_object(vm));
- // 3. Return WeakRefDeref(weakRef).
- weak_ref->update_execution_generation();
- return weak_ref->value().visit(
- [](Empty) -> Value { return js_undefined(); },
- [](auto value) -> Value { return value; });
- }
- }
|