Index: src/api.cc |
diff --git a/src/api.cc b/src/api.cc |
index 9c22cebe9590941b1b2ba273969a98983140cff5..daf397942b1a8d27371a81fd40e73a0b5b7ed0a1 100644 |
--- a/src/api.cc |
+++ b/src/api.cc |
@@ -7131,15 +7131,6 @@ const HeapGraphEdge* HeapGraphNode::GetChild(int index) const { |
} |
-v8::Handle<v8::Value> HeapGraphNode::GetHeapValue() const { |
- i::Isolate* isolate = i::Isolate::Current(); |
- i::Handle<i::HeapObject> object = ToInternal(this)->GetHeapObject(); |
- return !object.is_null() ? |
- ToApiHandle<Value>(object) : |
- ToApiHandle<Value>(isolate->factory()->undefined_value()); |
-} |
- |
- |
static i::HeapSnapshot* ToInternal(const HeapSnapshot* snapshot) { |
return const_cast<i::HeapSnapshot*>( |
reinterpret_cast<const i::HeapSnapshot*>(snapshot)); |