1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:48:11 +00:00

LibJS: Remove some unused Interpreter member functions

This commit is contained in:
Andreas Kling 2020-10-04 23:10:07 +02:00
parent 94b95a4924
commit fdb0ac7c1e

View file

@ -71,9 +71,6 @@ public:
Heap& heap() { return vm().heap(); }
Exception* exception() { return vm().exception(); }
size_t argument_count() const { return vm().argument_count(); }
Value argument(size_t index) const { return vm().argument(index); }
Value this_value(Object& global_object) const { return vm().this_value(global_object); }
LexicalEnvironment* current_environment() { return vm().current_environment(); }
void enter_scope(const ScopeNode&, ArgumentVector, ScopeType, GlobalObject&);