mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 08:25:07 +00:00
LibJS: Add the Set built-in object
This commit is contained in:
parent
b17a282b4b
commit
670be04c81
15 changed files with 359 additions and 30 deletions
37
Userland/Libraries/LibJS/Runtime/Set.cpp
Normal file
37
Userland/Libraries/LibJS/Runtime/Set.cpp
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibJS/Runtime/Set.h>
|
||||
|
||||
namespace JS {
|
||||
|
||||
Set* Set::create(GlobalObject& global_object)
|
||||
{
|
||||
return global_object.heap().allocate<Set>(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<Set>(this_object)) {
|
||||
vm.throw_exception<TypeError>(global_object, ErrorType::NotA, "Set");
|
||||
return nullptr;
|
||||
}
|
||||
return static_cast<Set*>(this_object);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue