* Ends a code block for a generated `with` statement.
()
| 103475 | * Ends a code block for a generated `with` statement. |
| 103476 | */ |
| 103477 | function endWithBlock() { |
| 103478 | ts.Debug.assert(peekBlockKind() === 1 /* CodeBlockKind.With */); |
| 103479 | var block = endBlock(); |
| 103480 | markLabel(block.endLabel); |
| 103481 | } |
| 103482 | /** |
| 103483 | * Begins a code block for a generated `try` statement. |
| 103484 | */ |
no test coverage detected