* Begins a code block that supports `break` or `continue` statements that are defined in * generated code. Returns a label used to mark the operation to which to jump when a * `break` statement targets this block. * * @param continueLabel A Label used to mark the
(continueLabel)
| 103585 | * `continue` statement targets this block. |
| 103586 | */ |
| 103587 | function beginLoopBlock(continueLabel) { |
| 103588 | var breakLabel = defineLabel(); |
| 103589 | beginBlock({ |
| 103590 | kind: 3 /* CodeBlockKind.Loop */, |
| 103591 | isScript: false, |
| 103592 | breakLabel: breakLabel, |
| 103593 | continueLabel: continueLabel, |
| 103594 | }); |
| 103595 | return breakLabel; |
| 103596 | } |
| 103597 | /** |
| 103598 | * Ends a code block that supports `break` or `continue` statements that are defined in |
| 103599 | * generated code or in the source tree. |
no test coverage detected
searching dependent graphs…