* Creates an assignment expression for an exported variable declaration. * * @param name The name of the variable. * @param value The value of the variable's initializer. * @param location The source map location for the assignment.
(name, value, location)
| 106431 | * @param location The source map location for the assignment. |
| 106432 | */ |
| 106433 | function createExportedVariableAssignment(name, value, location) { |
| 106434 | return createVariableAssignment(name, value, location, /*isExportedDeclaration*/ true); |
| 106435 | } |
| 106436 | /** |
| 106437 | * Creates an assignment expression for a non-exported variable declaration. |
| 106438 | * |
nothing calls this directly
no test coverage detected