| 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 f4ca628d12caeb521b7f256bd9e09b2f35e2adfe..ae1e609cf7b53d5e8806be1e4336805801617ec7 100644
|
| --- a/pkg/compiler/lib/src/cps_ir/type_propagation.dart
|
| +++ b/pkg/compiler/lib/src/cps_ir/type_propagation.dart
|
| @@ -607,6 +607,16 @@ class _TypePropagationVisitor<T> implements Visitor {
|
| }
|
| }
|
|
|
| + void visitThrow(Throw node) {
|
| + }
|
| +
|
| + void visitRethrow(Rethrow node) {
|
| + }
|
| +
|
| + void visitNonTailThrow(NonTailThrow node) {
|
| + internalError(null, 'found non-tail throw after they were eliminated');
|
| + }
|
| +
|
| void visitBranch(Branch node) {
|
| IsTrue isTrue = node.condition;
|
| _AbstractValue<T> conditionCell = getValue(isTrue.value.definition);
|
|
|