Index: pkg/compiler/lib/src/ssa/types_propagation.dart |
diff --git a/pkg/compiler/lib/src/ssa/types_propagation.dart b/pkg/compiler/lib/src/ssa/types_propagation.dart |
index 5a94e8dbc751eed74487224cb6bf4c2acdcfc8ee..63da62838697773958f65cb1560c06e0625eb856 100644 |
--- a/pkg/compiler/lib/src/ssa/types_propagation.dart |
+++ b/pkg/compiler/lib/src/ssa/types_propagation.dart |
@@ -233,9 +233,9 @@ class SsaTypePropagator extends HBaseVisitor implements OptimizationPhase { |
Selector selector = (kind == HTypeConversion.RECEIVER_TYPE_CHECK) |
? instruction.selector |
: null; |
- HTypeConversion converted = |
- new HTypeConversion(null, kind, type, input, selector) |
- ..sourceInformation = instruction.sourceInformation; |
+ HTypeConversion converted = new HTypeConversion(null, kind, type, input, |
+ receiverTypeCheckSelector: selector) |
+ ..sourceInformation = instruction.sourceInformation; |
instruction.block.addBefore(instruction, converted); |
input.replaceAllUsersDominatedBy(instruction, converted); |
} |