mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
30 lines
382 B
C++
30 lines
382 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibJS/Heap/Heap.h>
|
|
|
|
namespace JS {
|
|
|
|
class DeferGC {
|
|
public:
|
|
explicit DeferGC(Heap& heap)
|
|
: m_heap(heap)
|
|
{
|
|
m_heap.defer_gc();
|
|
}
|
|
|
|
~DeferGC()
|
|
{
|
|
m_heap.undefer_gc();
|
|
}
|
|
|
|
private:
|
|
Heap& m_heap;
|
|
};
|
|
|
|
}
|