| Index: pkg/compiler/lib/src/ssa/nodes.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/nodes.dart b/pkg/compiler/lib/src/ssa/nodes.dart
|
| index fd28580862f04815a45bea90249c54b104f3696d..e5a6c7004327a5aa572019a39b0eb195d61dcb3f 100644
|
| --- a/pkg/compiler/lib/src/ssa/nodes.dart
|
| +++ b/pkg/compiler/lib/src/ssa/nodes.dart
|
| @@ -2914,7 +2914,8 @@ class LoopTypeVisitor extends ast.Visitor {
|
| int visitWhile(ast.While node) => HLoopBlockInformation.WHILE_LOOP;
|
| int visitFor(ast.For node) => HLoopBlockInformation.FOR_LOOP;
|
| int visitDoWhile(ast.DoWhile node) => HLoopBlockInformation.DO_WHILE_LOOP;
|
| - int visitForIn(ast.ForIn node) => HLoopBlockInformation.FOR_IN_LOOP;
|
| + int visitAsyncForIn(ast.AsyncForIn node) => HLoopBlockInformation.FOR_IN_LOOP;
|
| + int visitSyncForIn(ast.SyncForIn node) => HLoopBlockInformation.FOR_IN_LOOP;
|
| int visitSwitchStatement(ast.SwitchStatement node) =>
|
| HLoopBlockInformation.SWITCH_CONTINUE_LOOP;
|
| }
|
|
|