浏览代码

LibJS: Remove some unused Interpreter member functions

Andreas Kling 4 年之前
父节点
当前提交
fdb0ac7c1e
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0 3
      Libraries/LibJS/Interpreter.h

+ 0 - 3
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&);