summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Interpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibJS/Interpreter.h')
-rw-r--r--Libraries/LibJS/Interpreter.h3
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&);