summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/AbstractOperations.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-06-28 01:44:58 +0200
committerAndreas Kling <kling@serenityos.org>2021-06-28 02:00:46 +0200
commit9eed7444de6d407dee6757485d9cc48f5f9384b0 (patch)
treec8da7df57b7ea716cb031575593417346446cbf7 /Userland/Libraries/LibJS/Runtime/AbstractOperations.h
parent63a12753780b6330d7ca6b6e80f1dde9b07bd973 (diff)
downloadserenity-9eed7444de6d407dee6757485d9cc48f5f9384b0.zip
LibJS: Implement the CreateUnmappedArgumentsObject abstract operation
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/AbstractOperations.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/AbstractOperations.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/AbstractOperations.h b/Userland/Libraries/LibJS/Runtime/AbstractOperations.h
index 7cd70f8ead..d8279e28ca 100644
--- a/Userland/Libraries/LibJS/Runtime/AbstractOperations.h
+++ b/Userland/Libraries/LibJS/Runtime/AbstractOperations.h
@@ -23,6 +23,7 @@ MarkedValueList create_list_from_array_like(GlobalObject&, Value, Function<Resul
FunctionObject* species_constructor(GlobalObject&, Object const&, FunctionObject& default_constructor);
GlobalObject* get_function_realm(GlobalObject&, FunctionObject const&);
Object* get_prototype_from_constructor(GlobalObject&, FunctionObject const& constructor, Object* (GlobalObject::*intrinsic_default_prototype)());
+Object* create_unmapped_arguments_object(GlobalObject&, Vector<Value> const& arguments);
enum class CallerMode {
Strict,