| Index: Source/platform/heap/HeapAllocator.h
|
| diff --git a/Source/platform/heap/HeapAllocator.h b/Source/platform/heap/HeapAllocator.h
|
| index a6245a334d207a6536cf853041b7c4491c9e6e39..b852f8efded7ba93e98e971188c8b8d90d8ba9ef 100644
|
| --- a/Source/platform/heap/HeapAllocator.h
|
| +++ b/Source/platform/heap/HeapAllocator.h
|
| @@ -119,6 +119,12 @@ public:
|
| return ThreadState::current()->isAllocationAllowed();
|
| }
|
|
|
| + template<typename T>
|
| + static bool isHeapObjectAlive(T* object)
|
| + {
|
| + return Heap::isHeapObjectAlive(object);
|
| + }
|
| +
|
| template<typename VisitorDispatcher>
|
| static void markNoTracing(VisitorDispatcher visitor, const void* t) { visitor->markNoTracing(t); }
|
|
|
|
|