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

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

Issue 2277093002: Supporting both FieldRef and InstanceRef in RetainingPathItem.parentField (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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/retaining_path.dart
diff --git a/runtime/observatory/lib/src/models/objects/retaining_path.dart b/runtime/observatory/lib/src/models/objects/retaining_path.dart
index 24827ebc329dad66567b10c8fdc82fbe984555bd..d16112e2a849ead4bdf073dc9fb132260c7b1c54 100644
--- a/runtime/observatory/lib/src/models/objects/retaining_path.dart
+++ b/runtime/observatory/lib/src/models/objects/retaining_path.dart
@@ -11,7 +11,8 @@ abstract class RetainingPath {
abstract class RetainingPathItem {
ObjectRef get source;
/// [optional]
- InstanceRef get parentField;
+ /// FieldRef or InstanceRef (null)
+ ObjectRef get parentField;
/// [optional]
int get parentListIndex;
/// [optional]

Powered by Google App Engine
This is Rietveld 408576698