1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:07:45 +00:00

LibJS: Implement the CreateUnmappedArgumentsObject abstract operation

This commit is contained in:
Andreas Kling 2021-06-28 01:44:58 +02:00
parent 63a1275378
commit 9eed7444de
4 changed files with 46 additions and 5 deletions

View file

@ -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 };