Chromium Code Reviews| 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; |