| Index: pkg/compiler/lib/src/cps_ir/type_propagation.dart
|
| diff --git a/pkg/compiler/lib/src/cps_ir/type_propagation.dart b/pkg/compiler/lib/src/cps_ir/type_propagation.dart
|
| index 27e92d75c792e0394f9ad2054a7307aad7e8b519..c0cdcb134e2529cace6538acf902a6a724f1df64 100644
|
| --- a/pkg/compiler/lib/src/cps_ir/type_propagation.dart
|
| +++ b/pkg/compiler/lib/src/cps_ir/type_propagation.dart
|
| @@ -872,6 +872,14 @@ class _TypePropagationVisitor<T> implements Visitor {
|
| setReachable(node.body);
|
| }
|
|
|
| + void visitGetStatic(GetStatic node) {
|
| + setValue(node, nonConstant());
|
| + }
|
| +
|
| + void visitSetStatic(SetStatic node) {
|
| + setReachable(node.body);
|
| + }
|
| +
|
| void visitCreateBox(CreateBox node) {
|
| setValue(node, nonConstant());
|
| }
|
|
|