(propertyName, name)
| 152547 | : ts.makeImport(/*name*/ undefined, [makeImportSpecifier(propertyName, localName)], moduleSpecifier, quotePreference); |
| 152548 | } |
| 152549 | function makeImportSpecifier(propertyName, name) { |
| 152550 | return ts.factory.createImportSpecifier(/*isTypeOnly*/ false, propertyName !== undefined && propertyName !== name ? ts.factory.createIdentifier(propertyName) : undefined, ts.factory.createIdentifier(name)); |
| 152551 | } |
| 152552 | function makeConst(modifiers, name, init) { |
| 152553 | return ts.factory.createVariableStatement(modifiers, ts.factory.createVariableDeclarationList([ts.factory.createVariableDeclaration(name, /*exclamationToken*/ undefined, /*type*/ undefined, init)], 2 /* NodeFlags.Const */)); |
| 152554 | } |
no outgoing calls
no test coverage detected