* Emits a Throw operation for the provided expression. * * @param expression A value for the operation. * @param location An optional source map location for the assignment.
(expression, location)
| 103915 | * @param location An optional source map location for the assignment. |
| 103916 | */ |
| 103917 | function emitThrow(expression, location) { |
| 103918 | emitWorker(9 /* OpCode.Throw */, [expression], location); |
| 103919 | } |
| 103920 | /** |
| 103921 | * Emits an Endfinally operation. This is used to handle `finally` block semantics. |
| 103922 | */ |
no test coverage detected