Index: runtime/vm/isolate.h |
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h |
index 12dd5fa2f6fdcc37fd861a2de0c6adc4eb08164f..546d6abd90fd01c13eae19161e0d30c44ed4ca55 100644 |
--- a/runtime/vm/isolate.h |
+++ b/runtime/vm/isolate.h |
@@ -821,6 +821,11 @@ class Isolate : public BaseIsolate { |
Monitor* spawn_count_monitor_; |
intptr_t spawn_count_; |
+#define ISOLATE_METRIC_VARIABLE(type, variable, name, unit) \ |
+ type metric_##variable##_; |
+ ISOLATE_METRIC_LIST(ISOLATE_METRIC_VARIABLE); |
+#undef ISOLATE_METRIC_VARIABLE |
+ |
// Has a reload ever been attempted? |
bool has_attempted_reload_; |
intptr_t no_reload_scope_depth_; // we can only reload when this is 0. |
@@ -829,11 +834,6 @@ class Isolate : public BaseIsolate { |
IsolateReloadContext* reload_context_; |
int64_t last_reload_timestamp_; |
-#define ISOLATE_METRIC_VARIABLE(type, variable, name, unit) \ |
- type metric_##variable##_; |
- ISOLATE_METRIC_LIST(ISOLATE_METRIC_VARIABLE); |
-#undef ISOLATE_METRIC_VARIABLE |
- |
static Dart_IsolateCreateCallback create_callback_; |
static Dart_IsolateShutdownCallback shutdown_callback_; |