Index: src/heap-snapshot-generator.h |
diff --git a/src/heap-snapshot-generator.h b/src/heap-snapshot-generator.h |
index 329570f0e55c2e4305011e2a26a847149d319117..1aea5a0264df1ca142a1e35bc9d7c5b5320608d0 100644 |
--- a/src/heap-snapshot-generator.h |
+++ b/src/heap-snapshot-generator.h |
@@ -35,11 +35,11 @@ class HeapGraphEdge BASE_EMBEDDED { |
Type type() const { return static_cast<Type>(type_); } |
int index() const { |
- ASSERT(type_ == kElement || type_ == kHidden); |
+ DCHECK(type_ == kElement || type_ == kHidden); |
return index_; |
} |
const char* name() const { |
- ASSERT(type_ == kContextVariable |
+ DCHECK(type_ == kContextVariable |
|| type_ == kProperty |
|| type_ == kInternal |
|| type_ == kShortcut |