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

Unified Diff: runtime/vm/service.cc

Issue 167713002: Improved how closures are displayed by <instance-ref>. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 10 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
« no previous file with comments | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/service.cc
diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc
index 7596e7aab7f683d8eeaaef25bc719fbc61f5ee18..d83dc9ec37890beb8009b6b67321e89a2d934cfd 100644
--- a/runtime/vm/service.cc
+++ b/runtime/vm/service.cc
@@ -831,7 +831,8 @@ static bool HandleObjects(Isolate* isolate, JSONStream* js) {
// special nulls.
if (strcmp(arg, "null") == 0 ||
strcmp(arg, "not-initialized") == 0 ||
- strcmp(arg, "being-initialized") == 0) {
+ strcmp(arg, "being-initialized") == 0 ||
+ strcmp(arg, "optimized-out") == 0) {
Object::null_object().PrintToJSONStream(js, false);
return true;
« no previous file with comments | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698