/* * Copyright (c) 2021, Idan Horowitz * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace JS { Set* Set::create(GlobalObject& global_object) { return global_object.heap().allocate(global_object, *global_object.set_prototype()); } Set::Set(Object& prototype) : Object(prototype) { } Set::~Set() { } Set* Set::typed_this(VM& vm, GlobalObject& global_object) { auto* this_object = vm.this_value(global_object).to_object(global_object); if (!this_object) return {}; if (!is(this_object)) { vm.throw_exception(global_object, ErrorType::NotA, "Set"); return nullptr; } return static_cast(this_object); } }