Chromium Code Reviews| Index: runtime/observatory/lib/src/models/objects/breakpoint.dart |
| diff --git a/runtime/observatory/lib/src/models/objects/breakpoint.dart b/runtime/observatory/lib/src/models/objects/breakpoint.dart |
| index daf127751daca40f16b9c93af89a8d0346d31191..266523b67dc475b7545f2e313e5b6a3343304c57 100644 |
| --- a/runtime/observatory/lib/src/models/objects/breakpoint.dart |
| +++ b/runtime/observatory/lib/src/models/objects/breakpoint.dart |
| @@ -7,7 +7,12 @@ part of models; |
| abstract class Breakpoint extends Object { |
| /// A number identifying this breakpoint to the user. |
| int get number; |
| - |
| /// Has this breakpoint been assigned to a specific program location? |
| bool get resolved; |
| + /// [optional]Is this a breakpoint that was added synthetically as part of a step |
|
rmacnak
2016/08/26 16:23:08
long line
cbernaschina
2016/08/26 16:26:46
Done.
|
| + /// OverAsyncSuspension resume command? |
| + bool get isSyntheticAsyncContinuation; |
| + /// SourceLocation when breakpoint is resolved, UnresolvedSourceLocation |
| + /// when a breakpoint is not resolved. |
| + Location get location; |
| } |