| 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 85564723d9a72109ea6bf4906b45663d38e90e0a..2fb2d1163ab458977fa7adf694661f1a25355ca2 100644
|
| --- a/pkg/compiler/lib/src/ssa/types_propagation.dart
|
| +++ b/pkg/compiler/lib/src/ssa/types_propagation.dart
|
| @@ -218,7 +218,8 @@ class SsaTypePropagator extends HBaseVisitor implements OptimizationPhase {
|
| ? instruction.selector
|
| : null;
|
| HTypeConversion converted = new HTypeConversion(
|
| - null, kind, type, input, selector);
|
| + null, kind, type, input, selector)
|
| + ..sourceInformation = instruction.sourceInformation;
|
| instruction.block.addBefore(instruction, converted);
|
| input.replaceAllUsersDominatedBy(instruction, converted);
|
| }
|
|
|