Chromium Code Reviews| Index: runtime/observatory/lib/src/models/objects/frame.dart |
| diff --git a/runtime/observatory/lib/src/models/objects/frame.dart b/runtime/observatory/lib/src/models/objects/frame.dart |
| index be46bbaa3b82486e339309e5a82c8083b31eabc1..d2c4a1a39cd03d6eadb024e0847edc7ef2469c31 100644 |
| --- a/runtime/observatory/lib/src/models/objects/frame.dart |
| +++ b/runtime/observatory/lib/src/models/objects/frame.dart |
| @@ -4,7 +4,15 @@ |
| part of models; |
| +enum FrameKind { |
| + regular, |
| + asyncCausal, |
| + asyncSuspensionMarker |
| +} |
| + |
| abstract class Frame { |
| + FrameKind get kind; |
| + String get marker; |
| FunctionRef get function; |
| SourceLocation get location; |
| } |