Index: src/api.cc |
diff --git a/src/api.cc b/src/api.cc |
index 42a887582723524f4773847d51cdb2da5f58827a..d2ad3069dd3106b11acf22b8396fc3e42d9ba292 100644 |
--- a/src/api.cc |
+++ b/src/api.cc |
@@ -6873,6 +6873,7 @@ Local<Integer> v8::Integer::NewFromUnsigned(Isolate* isolate, uint32_t value) { |
void Isolate::CollectAllGarbage(const char* gc_reason) { |
i::Heap* heap = reinterpret_cast<i::Isolate*>(this)->heap(); |
+ DCHECK_EQ(heap->gc_state(), i::Heap::NOT_IN_GC); |
if (heap->incremental_marking()->IsStopped()) { |
if (heap->incremental_marking()->CanBeActivated()) { |
heap->StartIncrementalMarking( |