| Index: pkg/compiler/lib/src/js_backend/codegen/task.dart
|
| diff --git a/pkg/compiler/lib/src/js_backend/codegen/task.dart b/pkg/compiler/lib/src/js_backend/codegen/task.dart
|
| index 1699625be5723240c4e0dbee6eb91bc66a2e0881..a65685abec2eed25b36df588866b19f4e7768d97 100644
|
| --- a/pkg/compiler/lib/src/js_backend/codegen/task.dart
|
| +++ b/pkg/compiler/lib/src/js_backend/codegen/task.dart
|
| @@ -222,6 +222,7 @@ class CpsFunctionCompiler implements FunctionCompiler {
|
| applyCpsPass(new RedundantJoinEliminator(), cpsFunction);
|
| applyCpsPass(new ShrinkingReducer(), cpsFunction);
|
| applyCpsPass(new RedundantRefinementEliminator(typeSystem), cpsFunction);
|
| + applyCpsPass(new TypePropagator(this, recomputeAll: true), cpsFunction);
|
| applyCpsPass(new EagerlyLoadStatics(), cpsFunction);
|
| applyCpsPass(new GVN(compiler, typeSystem), cpsFunction);
|
| applyCpsPass(new UpdateRefinements(typeSystem), cpsFunction);
|
|
|