summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/VM.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/VM.h
parent63a12753780b6330d7ca6b6e80f1dde9b07bd973 (diff)
downloadserenity-9eed7444de6d407dee6757485d9cc48f5f9384b0.zip
LibJS: Implement the CreateUnmappedArgumentsObject abstract operation
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/VM.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/VM.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/VM.h b/Userland/Libraries/LibJS/Runtime/VM.h
index 1f8698c67a..d70900407f 100644
--- a/Userland/Libraries/LibJS/Runtime/VM.h
+++ b/Userland/Libraries/LibJS/Runtime/VM.h
@@ -48,7 +48,7 @@ struct ExecutionContext {
FunctionObject* function { nullptr };
Value this_value;
Vector<Value> arguments;
- Array* arguments_object { nullptr };
+ Object* arguments_object { nullptr };
EnvironmentRecord* lexical_environment { nullptr };
EnvironmentRecord* variable_environment { nullptr };
bool is_strict_mode { false };