1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:07:35 +00:00

LibJS: Remove Cell::interpreter()

It's never necessary to find the current Interpreter for a given Cell
anymore. Get rid of this accessor.
This commit is contained in:
Andreas Kling 2020-10-04 13:56:47 +02:00
parent a007b3c379
commit bfa97b9357
2 changed files with 0 additions and 12 deletions

View file

@ -61,8 +61,6 @@ public:
Heap& heap() const;
VM& vm() const;
Interpreter& interpreter();
Interpreter& interpreter() const;
protected:
Cell() { }