Chromium Code Reviews

Unified Diff: test/cctest/heap/test-heap.cc

Issue 2547483002: Store SharedFunctionInfos of a Script in a FixedArray indexed by their ID (Closed)
Patch Set: rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: test/cctest/heap/test-heap.cc
diff --git a/test/cctest/heap/test-heap.cc b/test/cctest/heap/test-heap.cc
index 6dcca5979117cb20084409ac2bfd6107cee0f3c9..ea07a1e27653ba2a6eddb53652f997fd07ff5b45 100644
--- a/test/cctest/heap/test-heap.cc
+++ b/test/cctest/heap/test-heap.cc
@@ -6398,7 +6398,7 @@ TEST(SharedFunctionInfoIterator) {
}
{
- SharedFunctionInfo::Iterator iterator(isolate);
+ SharedFunctionInfo::GlobalIterator iterator(isolate);
while (iterator.Next()) sfi_count--;
}

Powered by Google App Engine