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

Unified Diff: runtime/observatory/lib/src/service/object.dart

Issue 1191133002: UI for setting/clearing closure-specific breakpoints. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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/service/object.dart
diff --git a/runtime/observatory/lib/src/service/object.dart b/runtime/observatory/lib/src/service/object.dart
index 0c7c0f1633fac9eb9ca950e01fd654052da80cae..4a7ad32de8479fc998b28ed3214c23c647e81c46 100644
--- a/runtime/observatory/lib/src/service/object.dart
+++ b/runtime/observatory/lib/src/service/object.dart
@@ -1885,6 +1885,7 @@ class Instance extends ServiceObject {
@observable var referent; // If a MirrorReference.
@observable Instance key; // If a WeakProperty.
@observable Instance value; // If a WeakProperty.
+ @observable Breakpoint activationBreakpoint; // If a Closure.
bool get isAbstractType {
return (kind == 'Type' || kind == 'TypeRef' ||
@@ -1983,6 +1984,7 @@ class Instance extends ServiceObject {
referent = map['mirrorReferent'];
key = map['propertyKey'];
value = map['propertyValue'];
+ activationBreakpoint = map['_activationBreakpoint'];
// We are fully loaded.
_loaded = true;
« no previous file with comments | « runtime/observatory/lib/src/elements/ports.dart ('k') | runtime/observatory/tests/service/break_on_activation_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698