LibJS+LibWeb: Remove now-unused lexical environment override

In our current bytecode interpreter, this override cannot work anyways.
This commit is contained in:
Timothy Flynn 2024-10-29 13:51:55 -04:00 committed by Andreas Kling
parent 2e71e300ee
commit 7b3a3c2066
Notes: github-actions[bot] 2024-10-30 07:55:28 +00:00
4 changed files with 5 additions and 9 deletions

View file

@ -33,7 +33,7 @@ public:
No,
Yes,
};
JS::Completion run(RethrowErrors = RethrowErrors::No, JS::GCPtr<JS::Environment> lexical_environment_override = {});
JS::Completion run(RethrowErrors = RethrowErrors::No);
MutedErrors muted_errors() const { return m_muted_errors; }