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

Unified Diff: pkg/compiler/lib/src/universe/element_world_builder.dart

Issue 2941033002: Finish strong mode cleaning of dart2js. (Closed)
Patch Set: Add bug numbers and address comments. Created 3 years, 6 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: pkg/compiler/lib/src/universe/element_world_builder.dart
diff --git a/pkg/compiler/lib/src/universe/element_world_builder.dart b/pkg/compiler/lib/src/universe/element_world_builder.dart
index 6a0ac2653c53cea6d36da9bda5ac556d852de8b3..4b3ae199e8ab54f26b91d6d907206e51c84822fb 100644
--- a/pkg/compiler/lib/src/universe/element_world_builder.dart
+++ b/pkg/compiler/lib/src/universe/element_world_builder.dart
@@ -63,8 +63,8 @@ class ElementResolutionWorldBuilder extends ResolutionWorldBuilderBase {
_instantiationInfo.forEach((cls, info) {
if (info.instantiationMap != null) {
- info.instantiationMap
- .forEach((ConstructorElement constructor, Set<Instance> set) {
+ info.instantiationMap.forEach((_constructor, Set<Instance> set) {
+ ConstructorElement constructor = _constructor;
for (Instance instance in set) {
if (instance.isRedirection) {
continue;
« no previous file with comments | « pkg/compiler/lib/src/universe/codegen_world_builder.dart ('k') | pkg/compiler/lib/src/universe/function_set.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698