| Index: runtime/vm/dart_api_impl.h
|
| diff --git a/runtime/vm/dart_api_impl.h b/runtime/vm/dart_api_impl.h
|
| index 38211bdb1bd6f1b7fbc3735dfee0c80554876995..83416019d87554e6c92e2d40430944562094da04 100644
|
| --- a/runtime/vm/dart_api_impl.h
|
| +++ b/runtime/vm/dart_api_impl.h
|
| @@ -55,13 +55,13 @@ const char* CanonicalFunction(const char* func);
|
| #define DARTSCOPE_NOCHECKS(isolate) \
|
| Isolate* __temp_isolate__ = (isolate); \
|
| ASSERT(__temp_isolate__ != NULL); \
|
| - Zone zone(__temp_isolate__); \
|
| + StackZone zone(__temp_isolate__); \
|
| HANDLESCOPE(__temp_isolate__);
|
|
|
| #define DARTSCOPE(isolate) \
|
| Isolate* __temp_isolate__ = (isolate); \
|
| CHECK_ISOLATE_SCOPE(__temp_isolate__); \
|
| - Zone zone(__temp_isolate__); \
|
| + StackZone zone(__temp_isolate__); \
|
| HANDLESCOPE(__temp_isolate__);
|
|
|
|
|
|
|