* Emits a Yield operation for the provided expression. * * @param expression An optional value for the yield operation. * @param location An optional source map location for the assignment.
(expression, location)
| 103897 | * @param location An optional source map location for the assignment. |
| 103898 | */ |
| 103899 | function emitYield(expression, location) { |
| 103900 | emitWorker(6 /* OpCode.Yield */, [expression], location); |
| 103901 | } |
| 103902 | /** |
| 103903 | * Emits a Return operation for the provided expression. |
| 103904 | * |
no test coverage detected