(modifiers, name, init)
| 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 | } |
| 152555 | function makeExportDeclaration(exportSpecifiers, moduleSpecifier) { |
| 152556 | return ts.factory.createExportDeclaration( |
| 152557 | /*decorators*/ undefined, |
no outgoing calls
no test coverage detected