Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1292)

Unified Diff: runtime/observatory/lib/src/models/objects/breakpoint.dart

Issue 2277543004: Converted Observatory script-inset & source-inset elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Converted Observatory eval-box element Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}
« no previous file with comments | « runtime/observatory/lib/src/elements/vm_view.html ('k') | runtime/observatory/lib/src/models/objects/error.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698