* Emits a Break operation to the specified label. * * @param label A label. * @param location An optional source map location for the assignment.
(label, location)
| 103857 | * @param location An optional source map location for the assignment. |
| 103858 | */ |
| 103859 | function emitBreak(label, location) { |
| 103860 | emitWorker(3 /* OpCode.Break */, [label], location); |
| 103861 | } |
| 103862 | /** |
| 103863 | * Emits a Break operation to the specified label when a condition evaluates to a truthy |
| 103864 | * value at runtime. |
no test coverage detected
searching dependent graphs…