| Index: sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/ssa/builder.dart (revision 23905)
|
| +++ sdk/lib/_internal/compiler/implementation/ssa/builder.dart (working copy)
|
| @@ -1945,7 +1945,7 @@
|
| }
|
|
|
| visitExpressionStatement(ExpressionStatement node) {
|
| - assert(isReachable);
|
| + if (!isReachable) return;
|
| Throw throwExpression = node.expression.asThrow();
|
| if (throwExpression != null && inliningStack.isEmpty) {
|
| visit(throwExpression.expression);
|
|
|