Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(699)

Unified Diff: runtime/vm/bigint_operations_test.cc

Issue 11040062: Renamed Zone->StackZone, BaseZone->Zone, in preparation for changing isolate->get_zone() to return … (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/bigint_operations_test.cc
diff --git a/runtime/vm/bigint_operations_test.cc b/runtime/vm/bigint_operations_test.cc
index 0c141a169549cdad71bee3d30be27b7bbc95bfa1..94ef1a3cf5de9875001044c4f2f5fca1f4abf664 100644
--- a/runtime/vm/bigint_operations_test.cc
+++ b/runtime/vm/bigint_operations_test.cc
@@ -11,7 +11,7 @@
namespace dart {
static uword ZoneAllocator(intptr_t size) {
- Zone* zone = Isolate::Current()->current_zone();
+ StackZone* zone = Isolate::Current()->current_zone();
return zone->AllocUnsafe(size);
}

Powered by Google App Engine
This is Rietveld 408576698