* Begins a code block that supports `break` or `continue` statements that are defined in * the source tree and not from generated code. * * @param labelText Names from containing labeled statements.
()
| 103569 | * @param labelText Names from containing labeled statements. |
| 103570 | */ |
| 103571 | function beginScriptLoopBlock() { |
| 103572 | beginBlock({ |
| 103573 | kind: 3 /* CodeBlockKind.Loop */, |
| 103574 | isScript: true, |
| 103575 | breakLabel: -1, |
| 103576 | continueLabel: -1 |
| 103577 | }); |
| 103578 | } |
| 103579 | /** |
| 103580 | * Begins a code block that supports `break` or `continue` statements that are defined in |
| 103581 | * generated code. Returns a label used to mark the operation to which to jump when a |
no test coverage detected
searching dependent graphs…