1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:08:10 +00:00

LibJS: Remove unused Heap::interpreter()

This commit is contained in:
Andreas Kling 2020-10-04 16:27:46 +02:00
parent bfa97b9357
commit 4237089a21
2 changed files with 0 additions and 6 deletions

View file

@ -57,11 +57,6 @@ Heap::~Heap()
collect_garbage(CollectionType::CollectEverything);
}
Interpreter& Heap::interpreter()
{
return vm().interpreter();
}
Cell* Heap::allocate_cell(size_t size)
{
if (should_collect_on_every_allocation()) {