* Begins a code block that supports `break` statements that are defined in the source * tree and not from generated code. *
()
| 103612 | * |
| 103613 | */ |
| 103614 | function beginScriptSwitchBlock() { |
| 103615 | beginBlock({ |
| 103616 | kind: 2 /* CodeBlockKind.Switch */, |
| 103617 | isScript: true, |
| 103618 | breakLabel: -1 |
| 103619 | }); |
| 103620 | } |
| 103621 | /** |
| 103622 | * Begins a code block that supports `break` statements that are defined in generated code. |
| 103623 | * Returns a label used to mark the operation to which to jump when a `break` statement |
no test coverage detected
searching dependent graphs…