MCPcopy Index your code
hub / github.com/nodejs/node / createExportedVariableAssignment

Function createExportedVariableAssignment

test/fixtures/snapshot/typescript.js:106433–106435  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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 *

Callers

nothing calls this directly

Calls 1

createVariableAssignmentFunction · 0.85

Tested by

no test coverage detected