diff --git a/Libraries/LibJS/Interpreter.h b/Libraries/LibJS/Interpreter.h index 3c8d64b572..6ba52bc5a3 100644 --- a/Libraries/LibJS/Interpreter.h +++ b/Libraries/LibJS/Interpreter.h @@ -150,9 +150,6 @@ public: const CallFrame& call_frame() { return m_call_stack.last(); } const Vector& call_stack() { return m_call_stack; } - void push_environment(LexicalEnvironment*); - void pop_environment(); - const LexicalEnvironment* current_environment() const { return m_call_stack.last().environment; } LexicalEnvironment* current_environment() { return m_call_stack.last().environment; }