Index: pkg/compiler/lib/src/cps_ir/loop_hierarchy.dart |
diff --git a/pkg/compiler/lib/src/cps_ir/loop_hierarchy.dart b/pkg/compiler/lib/src/cps_ir/loop_hierarchy.dart |
index 57d71207a0d9de14c3149cee5dbd5f17e23c37da..35d9b761fb4af039ae279987aee39ac1891bf6d8 100644 |
--- a/pkg/compiler/lib/src/cps_ir/loop_hierarchy.dart |
+++ b/pkg/compiler/lib/src/cps_ir/loop_hierarchy.dart |
@@ -123,8 +123,7 @@ class LoopHierarchy { |
target = loopTarget[node.continuation]; |
} |
} else if (node is Branch) { |
- target = _markInnerLoop( |
- loopTarget[node.trueContinuation], |
+ target = _markInnerLoop(loopTarget[node.trueContinuation], |
loopTarget[node.falseContinuation]); |
} else if (node == null) { |
// If the code ends abruptly, use the exit loop provided in [update]. |
@@ -166,8 +165,7 @@ class LoopHierarchy { |
/// [catchLoop] is the loop target for the catch clause of the try/catch |
/// surrounding the inserted fragment. |
void update(CpsFragment fragment, |
- {Continuation exitLoop, |
- Continuation catchLoop}) { |
+ {Continuation exitLoop, Continuation catchLoop}) { |
if (fragment.isEmpty) return; |
_exitLoop = exitLoop; |
_currentDepth = getDepth(exitLoop); |