| Index: runtime/vm/base_isolate.h
|
| diff --git a/runtime/vm/base_isolate.h b/runtime/vm/base_isolate.h
|
| index f52c1b0a2a559f4c05f9b0f950e5fd8c08a1f4c8..090f1ce0a7c339ede4baa51b7c0d354122ade3b2 100644
|
| --- a/runtime/vm/base_isolate.h
|
| +++ b/runtime/vm/base_isolate.h
|
| @@ -9,7 +9,7 @@ namespace dart {
|
|
|
| class HandleScope;
|
| class StackResource;
|
| -class Zone;
|
| +class StackZone;
|
|
|
| // A BaseIsolate contains just enough functionality to allocate
|
| // StackResources. This allows us to inline the StackResource
|
| @@ -19,8 +19,8 @@ class BaseIsolate {
|
| StackResource* top_resource() const { return top_resource_; }
|
| void set_top_resource(StackResource* value) { top_resource_ = value; }
|
|
|
| - Zone* current_zone() const { return current_zone_; }
|
| - void set_current_zone(Zone* zone) { current_zone_ = zone; }
|
| + StackZone* current_zone() const { return current_zone_; }
|
| + void set_current_zone(StackZone* zone) { current_zone_ = zone; }
|
|
|
| HandleScope* top_handle_scope() const {
|
| #if defined(DEBUG)
|
| @@ -102,7 +102,7 @@ class BaseIsolate {
|
| }
|
|
|
| StackResource* top_resource_;
|
| - Zone* current_zone_;
|
| + StackZone* current_zone_;
|
| #if defined(DEBUG)
|
| HandleScope* top_handle_scope_;
|
| int32_t no_handle_scope_depth_;
|
|
|