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

Unified Diff: tool/input_sdk/private/debugger.dart

Issue 2176233002: Library children object fix (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Library children fixing Created 4 years, 5 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 | « lib/runtime/dart_sdk.js ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/private/debugger.dart
diff --git a/tool/input_sdk/private/debugger.dart b/tool/input_sdk/private/debugger.dart
index 8cdbeb0a45826ebc4dca27e7ad74b90edc36df5f..f49e5540a67402e6934cf61f8717e32d5fd1dc3e 100644
--- a/tool/input_sdk/private/debugger.dart
+++ b/tool/input_sdk/private/debugger.dart
@@ -577,8 +577,7 @@ class LibraryFormatter extends ObjectFormatter {
children.add(new NameValuePair(
name: typeName, value: new ClassMetadata(value, name: typeName)));
} else {
- children.add(
- new NameValuePair(name: name, value: new ClassMetadata(value)));
+ children.add(new NameValuePair(name: name, value: value));
Alan Knight 2016/07/25 19:51:38 This code is complicated enough it might be worth
bmilligan 2016/07/25 20:23:54 Done.
}
}
}
« no previous file with comments | « lib/runtime/dart_sdk.js ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698