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

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

Issue 1440753002: Include field reference with implicit getter / setter functions (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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 791eb5044034889ad375e442c618039bb4875fc2..7e1b3d2f48f1bba91a3abf012a327942b481bad8 100644
--- a/runtime/observatory/lib/src/service/object.dart
+++ b/runtime/observatory/lib/src/service/object.dart
@@ -2575,6 +2575,7 @@ class ServiceFunction extends HeapObject with Coverage {
@observable bool isDart;
@observable ProfileFunction profile;
@observable Instance icDataArray;
+ @observable Field field;
bool get canCache => true;
bool get immutable => false;
@@ -2622,6 +2623,7 @@ class ServiceFunction extends HeapObject with Coverage {
deoptimizations = map['_deoptimizations'];
usageCounter = map['_usageCounter'];
icDataArray = map['_icDataArray'];
+ field = map['_field'];
}
}

Powered by Google App Engine
This is Rietveld 408576698