* Indicates whether the provided block supports `break` statements with labels. * * @param block A code block.
(block)
| 103682 | * @param block A code block. |
| 103683 | */ |
| 103684 | function supportsLabeledBreakOrContinue(block) { |
| 103685 | return block.kind === 4 /* CodeBlockKind.Labeled */; |
| 103686 | } |
| 103687 | /** |
| 103688 | * Indicates whether the provided block supports `continue` statements. |
| 103689 | * |
no outgoing calls
no test coverage detected