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

Unified Diff: runtime/vm/debugger.cc

Issue 79773003: Revert "De-mangle private identifiers returned by the debugger API." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « no previous file | runtime/vm/debugger_api_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/debugger.cc
diff --git a/runtime/vm/debugger.cc b/runtime/vm/debugger.cc
index 19602e576a1543e907cd52fc68c68d7d43646817..60b8df65a8da5da7aad0feed1127e48ec915e6bb 100644
--- a/runtime/vm/debugger.cc
+++ b/runtime/vm/debugger.cc
@@ -1749,7 +1749,6 @@ RawArray* Debugger::GetInstanceFields(const Instance& obj) {
field_name = field.name();
field_list.Add(field_name);
field_value = GetInstanceField(cls, field_name, obj);
- field_name = String::IdentifierPrettyName(field_name);
field_list.Add(field_value);
}
}
@@ -1771,7 +1770,6 @@ RawArray* Debugger::GetStaticFields(const Class& cls) {
if (field.is_static()) {
field_name = field.name();
field_value = GetStaticField(cls, field_name);
- field_name = String::IdentifierPrettyName(field_name);
field_list.Add(field_name);
field_list.Add(field_value);
}
@@ -1805,7 +1803,6 @@ void Debugger::CollectLibraryFields(const GrowableObjectArray& field_list,
if (!prefix.IsNull()) {
field_name = String::Concat(prefix, field_name);
}
- field_name = String::IdentifierPrettyName(field_name);
field_list.Add(field_name);
field_list.Add(field_value);
}
« no previous file with comments | « no previous file | runtime/vm/debugger_api_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698