Searched refs:exportSpecifier (Results 1 – 6 of 6) sorted by relevance
| /third_party/typescript/src/services/codefixes/ |
| D | convertToTypeOnlyExport.ts | 17 … const exportSpecifier = getExportSpecifierForDiagnosticSpan(diag, context.sourceFile); constant 18 …if (exportSpecifier && addToSeen(fixedExportDeclarations, getNodeId(exportSpecifier.parent.parent)… 19 fixSingleExportDeclaration(changes, exportSpecifier, context); 29 …function fixSingleExportDeclaration(changes: textChanges.ChangeTracker, exportSpecifier: ExportSpe… 30 if (!exportSpecifier) { 34 const exportClause = exportSpecifier.parent; 36 const typeExportSpecifiers = getTypeExportSpecifiers(exportSpecifier, context);
|
| /third_party/typescript/src/services/ |
| D | findAllReferences.ts | 957 …const exportSpecifier = !isForRenameWithPrefixAndSuffixText(options) || !symbol.declarations ? und… constant 958 if (exportSpecifier) { 960 …getReferencesAtExportSpecifier(exportSpecifier.name, symbol, exportSpecifier, state.createSearch(n… 1618 exportSpecifier: ExportSpecifier, 1626 const { parent, propertyName, name } = exportSpecifier; 1628 …getLocalSymbolForExportSpecifier(referenceLocation, referenceSymbol, exportSpecifier, state.checke… 1647 addReference(name, Debug.checkDefined(exportSpecifier.symbol), state); 1659 || exportSpecifier.name.originalKeywordKind === SyntaxKind.DefaultKeyword; 1661 const exportSymbol = Debug.checkDefined(exportSpecifier.symbol); 1670 const imported = state.checker.getExportSpecifierLocalTargetSymbol(exportSpecifier); [all …]
|
| /third_party/typescript/src/compiler/transformers/module/ |
| D | system.ts | 1102 for (const exportSpecifier of exportSpecifiers) { constant 1103 if (exportSpecifier.name.escapedText !== excludeName) { 1104 statements = appendExportStatement(statements, exportSpecifier.name, name);
|
| D | module.ts | 1630 for (const exportSpecifier of exportSpecifiers) { constant 1631 …statements = appendExportStatement(statements, exportSpecifier.name, name, /*location*/ exportSpec…
|
| /third_party/typescript/lib/ |
| D | typingsInstaller.js | 110276 var exportSpecifier = exportSpecifiers_1[_i]; 110277 …statements = appendExportStatement(statements, exportSpecifier.name, name, /*location*/ exportSpec… 111413 var exportSpecifier = exportSpecifiers_2[_i]; 111414 if (exportSpecifier.name.escapedText !== excludeName) { 111415 statements = appendExportStatement(statements, exportSpecifier.name, name);
|
| D | tsc.js | 91198 var exportSpecifier = exportSpecifiers_1[_i]; 91199 …statements = appendExportStatement(statements, exportSpecifier.name, name, exportSpecifier.name, u… 91880 var exportSpecifier = exportSpecifiers_2[_i]; 91881 if (exportSpecifier.name.escapedText !== excludeName) { 91882 statements = appendExportStatement(statements, exportSpecifier.name, name);
|