From 111d63c676330acd13e237139885a0945462c2c1 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 26 Sep 2020 11:25:26 +0200 Subject: [PATCH] LibJS: Remove two unused Interpreter member functions --- Libraries/LibJS/Interpreter.h | 3 --- 1 file changed, 3 deletions(-) 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; }