diff options
author | Andreas Kling <kling@serenityos.org> | 2020-10-04 23:10:07 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-04 23:10:07 +0200 |
commit | fdb0ac7c1e5bcdb7dfa6bbb8ab7fe164d4b12c75 (patch) | |
tree | 968bc11b0d0ac57a5404d813a54e864906b1732a /Libraries | |
parent | 94b95a4924416968af712b94f962f9377f90c7a1 (diff) | |
download | serenity-fdb0ac7c1e5bcdb7dfa6bbb8ab7fe164d4b12c75.zip |
LibJS: Remove some unused Interpreter member functions
Diffstat (limited to 'Libraries')
-rw-r--r-- | Libraries/LibJS/Interpreter.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Libraries/LibJS/Interpreter.h b/Libraries/LibJS/Interpreter.h index 8277313bab..c76b6ef110 100644 --- a/Libraries/LibJS/Interpreter.h +++ b/Libraries/LibJS/Interpreter.h @@ -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&); |