* Defines a label, uses as the target of a Break operation.
()
| 103394 | * Defines a label, uses as the target of a Break operation. |
| 103395 | */ |
| 103396 | function defineLabel() { |
| 103397 | if (!labelOffsets) { |
| 103398 | labelOffsets = []; |
| 103399 | } |
| 103400 | var label = nextLabelId; |
| 103401 | nextLabelId++; |
| 103402 | labelOffsets[label] = -1; |
| 103403 | return label; |
| 103404 | } |
| 103405 | /** |
| 103406 | * Marks the current operation with the specified label. |
| 103407 | */ |
no outgoing calls
no test coverage detected
searching dependent graphs…