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

Unified Diff: lib/compiler/implementation/dart_backend/backend.dart

Issue 11267046: [dart2dart] fix after https://codereview.chromium.org/11227007 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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: lib/compiler/implementation/dart_backend/backend.dart
diff --git a/lib/compiler/implementation/dart_backend/backend.dart b/lib/compiler/implementation/dart_backend/backend.dart
index 3cd8a32dcd0c2a1500038b3d0fd4626f2932cdf7..6d5d5a818572f22dd555aca946fd7b96001634c2 100644
--- a/lib/compiler/implementation/dart_backend/backend.dart
+++ b/lib/compiler/implementation/dart_backend/backend.dart
@@ -303,6 +303,9 @@ class DartBackend extends Backend {
addClass(classElement);
};
+ compiler.resolverWorld.instantiatedClasses.forEach((ClassElement classElement) {
ahe 2012/10/26 14:13:49 Long line.
Roman 2012/10/29 18:14:12 Done.
+ if (shouldOutput(classElement)) addClass(classElement);
+ });
resolvedElements.forEach((element, treeElements) {
if (!shouldOutput(element)) return;

Powered by Google App Engine
This is Rietveld 408576698