Index: runtime/observatory/lib/src/models/objects/sentinel.dart |
diff --git a/runtime/observatory/lib/src/models/objects/sentinel.dart b/runtime/observatory/lib/src/models/objects/sentinel.dart |
index f45e43193f24cafeb2cbcf0d1bc84be5f948401c..ca6747a10435f95d37cc3ad1193997d15f42cb21 100644 |
--- a/runtime/observatory/lib/src/models/objects/sentinel.dart |
+++ b/runtime/observatory/lib/src/models/objects/sentinel.dart |
@@ -7,14 +7,19 @@ part of models; |
enum SentinelKind { |
/// Indicates that the object referred to has been collected by the GC. |
collected, |
+ |
/// Indicates that an object id has expired. |
expired, |
+ |
/// Indicates that a variable or field has not been initialized. |
notInitialized, |
+ |
/// Indicates that a variable or field is in the process of being initialized. |
initializing, |
+ |
/// Indicates that a variable has been eliminated by the optimizing compiler. |
optimizedOut, |
+ |
/// Reserved for future use. |
free, |
} |