* Writes an Assign operation to the current label's statement list. * * @param left The left-hand side of the assignment. * @param right The right-hand side of the assignment. * @param operationLocation The source map location for the operation.
(left, right, operationLocation)
| 104237 | * @param operationLocation The source map location for the operation. |
| 104238 | */ |
| 104239 | function writeAssign(left, right, operationLocation) { |
| 104240 | writeStatement(ts.setTextRange(factory.createExpressionStatement(factory.createAssignment(left, right)), operationLocation)); |
| 104241 | } |
| 104242 | /** |
| 104243 | * Writes a Throw operation to the current label's statement list. |
| 104244 | * |
no test coverage detected