LibJS: Remove unused ExecutionContext::arguments_object

This commit is contained in:
Andreas Kling 2021-10-03 23:58:21 +02:00
parent f8354c5503
commit 0cb4d48283
Notes: sideshowbarker 2024-07-18 03:06:36 +09:00
2 changed files with 0 additions and 2 deletions

View file

@ -30,7 +30,6 @@ struct ExecutionContext {
FlyString function_name;
Value this_value;
MarkedValueList arguments;
Object* arguments_object { nullptr };
bool is_strict_mode { false };
};

View file

@ -103,7 +103,6 @@ void VM::gather_roots(HashTable<Cell*>& roots)
for (auto& execution_context : stack) {
if (execution_context->this_value.is_cell())
roots.set(&execution_context->this_value.as_cell());
roots.set(execution_context->arguments_object);
for (auto& argument : execution_context->arguments) {
if (argument.is_cell())
roots.set(&argument.as_cell());