Index: runtime/vm/base_isolate.h |
=================================================================== |
--- runtime/vm/base_isolate.h (revision 43047) |
+++ runtime/vm/base_isolate.h (working copy) |
@@ -19,6 +19,7 @@ |
StackResource* top_resource() const { return top_resource_; } |
void set_top_resource(StackResource* value) { top_resource_ = value; } |
+ // DEPRECATED: Use Thread::current_zone. |
Ivan Posva
2015/01/22 01:26:44
Thread::Current()->zone()?
koda
2015/01/22 02:01:00
Done.
|
Zone* current_zone() const { return current_zone_; } |
void set_current_zone(Zone* zone) { current_zone_ = zone; } |