* Marks the current operation with the specified label.
(label)
| 103406 | * Marks the current operation with the specified label. |
| 103407 | */ |
| 103408 | function markLabel(label) { |
| 103409 | ts.Debug.assert(labelOffsets !== undefined, "No labels were defined."); |
| 103410 | labelOffsets[label] = operations ? operations.length : 0; |
| 103411 | } |
| 103412 | /** |
| 103413 | * Begins a block operation (With, Break/Continue, Try/Catch/Finally) |
| 103414 | * |
no test coverage detected
searching dependent graphs…