* Flush the current label and advance to a new label.
()
| 103994 | * Flush the current label and advance to a new label. |
| 103995 | */ |
| 103996 | function flushLabel() { |
| 103997 | if (!statements) { |
| 103998 | return; |
| 103999 | } |
| 104000 | appendLabel(/*markLabelEnd*/ !lastOperationWasAbrupt); |
| 104001 | lastOperationWasAbrupt = false; |
| 104002 | lastOperationWasCompletion = false; |
| 104003 | labelNumber++; |
| 104004 | } |
| 104005 | /** |
| 104006 | * Flush the final label of the generator function body. |
| 104007 | */ |
no test coverage detected