* Emits an Assignment operation. * * @param left The left-hand side of the assignment. * @param right The right-hand side of the assignment. * @param location An optional source map location for the assignment.
(left, right, location)
| 103848 | * @param location An optional source map location for the assignment. |
| 103849 | */ |
| 103850 | function emitAssignment(left, right, location) { |
| 103851 | emitWorker(2 /* OpCode.Assign */, [left, right], location); |
| 103852 | } |
| 103853 | /** |
| 103854 | * Emits a Break operation to the specified label. |
| 103855 | * |
no test coverage detected
searching dependent graphs…