* Emits a Break operation to the specified label when a condition evaluates to a truthy * value at runtime. * * @param label A label. * @param condition The condition. * @param location An optional source map location for the assignment.
(label, condition, location)
| 103868 | * @param location An optional source map location for the assignment. |
| 103869 | */ |
| 103870 | function emitBreakWhenTrue(label, condition, location) { |
| 103871 | emitWorker(4 /* OpCode.BreakWhenTrue */, [label, condition], location); |
| 103872 | } |
| 103873 | /** |
| 103874 | * Emits a Break to the specified label when a condition evaluates to a falsey value at |
| 103875 | * runtime. |
no test coverage detected
searching dependent graphs…