* Ends a code block that supports `break` or `continue` statements that are defined in * generated code or in the source tree.
()
| 103599 | * generated code or in the source tree. |
| 103600 | */ |
| 103601 | function endLoopBlock() { |
| 103602 | ts.Debug.assert(peekBlockKind() === 3 /* CodeBlockKind.Loop */); |
| 103603 | var block = endBlock(); |
| 103604 | var breakLabel = block.breakLabel; |
| 103605 | if (!block.isScript) { |
| 103606 | markLabel(breakLabel); |
| 103607 | } |
| 103608 | } |
| 103609 | /** |
| 103610 | * Begins a code block that supports `break` statements that are defined in the source |
| 103611 | * tree and not from generated code. |
no test coverage detected
searching dependent graphs…