diff options
author | Andreas Kling <kling@serenityos.org> | 2021-06-28 01:44:58 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-28 02:00:46 +0200 |
commit | 9eed7444de6d407dee6757485d9cc48f5f9384b0 (patch) | |
tree | c8da7df57b7ea716cb031575593417346446cbf7 /Userland/Libraries/LibJS/Runtime/VM.h | |
parent | 63a12753780b6330d7ca6b6e80f1dde9b07bd973 (diff) | |
download | serenity-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.h | 2 |
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 }; |