* Emits a Break to the specified label when a condition evaluates to a falsey value at * runtime. * * @param label A label. * @param condition The condition. * @param location An optional source map location for the assignment.
(label, condition, location)
| 103879 | * @param location An optional source map location for the assignment. |
| 103880 | */ |
| 103881 | function emitBreakWhenFalse(label, condition, location) { |
| 103882 | emitWorker(5 /* OpCode.BreakWhenFalse */, [label, condition], location); |
| 103883 | } |
| 103884 | /** |
| 103885 | * Emits a YieldStar operation for the provided expression. |
| 103886 | * |
no test coverage detected
searching dependent graphs…