diff options
author | Andreas Kling <kling@serenityos.org> | 2021-10-03 23:58:21 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-03 23:58:21 +0200 |
commit | 0cb4d482834c3150e99587f571f95c12823f773e (patch) | |
tree | d805dc3028717a1919e5c400914a16fd2266e00c /Userland/Libraries/LibJS/Runtime/ExecutionContext.h | |
parent | f8354c5503fe9dee41d9e73b09576f699b0dbedc (diff) | |
download | serenity-0cb4d482834c3150e99587f571f95c12823f773e.zip |
LibJS: Remove unused ExecutionContext::arguments_object
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/ExecutionContext.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/ExecutionContext.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/ExecutionContext.h b/Userland/Libraries/LibJS/Runtime/ExecutionContext.h index 9a7fa0ef04..6b0270b8af 100644 --- a/Userland/Libraries/LibJS/Runtime/ExecutionContext.h +++ b/Userland/Libraries/LibJS/Runtime/ExecutionContext.h @@ -30,7 +30,6 @@ struct ExecutionContext { FlyString function_name; Value this_value; MarkedValueList arguments; - Object* arguments_object { nullptr }; bool is_strict_mode { false }; }; |