| 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 83ecc44dca5ef1fa641f1c9b4e40d7d7649298d3..2c22c6c150bb01d88716a166d0ad7ce72d5c3404 100644
|
| --- a/pkg/compiler/lib/src/ssa/nodes.dart
|
| +++ b/pkg/compiler/lib/src/ssa/nodes.dart
|
| @@ -2161,11 +2161,9 @@ abstract class HJump extends HControlFlow {
|
| }
|
|
|
| class HBreak extends HJump {
|
| - /**
|
| - * Signals that this is a special break instruction for the synthetic loop
|
| - * generatedfor a switch statement with continue statements. See
|
| - * [SsaFromAstMixin.buildComplexSwitchStatement] for detail.
|
| - */
|
| + /// Signals that this is a special break instruction for the synthetic loop
|
| + /// generated for a switch statement with continue statements. See
|
| + /// [SsaFromAstMixin.buildComplexSwitchStatement] for detail.
|
| final bool breakSwitchContinueLoop;
|
| HBreak(JumpTarget target, {bool this.breakSwitchContinueLoop: false})
|
| : super(target);
|
|
|