| /third_party/typescript/src/compiler/transformers/ |
| D | utilities.ts | 9 …externalImports: (ImportDeclaration | ImportEqualsDeclaration | ExportDeclaration)[]; // imports o… 40 export function getExportNeedsImportStarHelper(node: ExportDeclaration): boolean { 69 … const externalImports: (ImportDeclaration | ImportEqualsDeclaration | ExportDeclaration)[] = []; 104 case SyntaxKind.ExportDeclaration: 105 if ((node as ExportDeclaration).moduleSpecifier) { 106 if (!(node as ExportDeclaration).exportClause) { 108 externalImports.push(node as ExportDeclaration); 114 externalImports.push(node as ExportDeclaration); 115 if (isNamedExports((node as ExportDeclaration).exportClause!)) { 116 addExportedNamesForExportDeclaration(node as ExportDeclaration); [all …]
|
| D | declarations.ts | 613 case SyntaxKind.ExportDeclaration: 714 …extends Node>(parent: ImportEqualsDeclaration | ImportDeclaration | ExportDeclaration | ModuleDecl… 1142 case SyntaxKind.ExportDeclaration: { 1280 … let declarations: (VariableStatement | ExportDeclaration)[] = mapDefined(props, p => { 1723 | ExportDeclaration 1738 case SyntaxKind.ExportDeclaration:
|
| D | ts.ts | 219 case SyntaxKind.ExportDeclaration: 220 …tement(node as ImportDeclaration | ImportEqualsDeclaration | ExportAssignment | ExportDeclaration); 226 …e: ImportDeclaration | ImportEqualsDeclaration | ExportAssignment | ExportDeclaration): VisitResul… 247 case SyntaxKind.ExportDeclaration: 269 if (node.kind === SyntaxKind.ExportDeclaration || 2055 function visitExportDeclaration(node: ExportDeclaration): VisitResult<Statement> {
|
| /third_party/typescript/tests/baselines/reference/ |
| D | enums.types | 8 ExportDeclaration 9 >ExportDeclaration : SyntaxKind.ExportDeclaration
|
| D | enums.symbols | 8 ExportDeclaration 9 >ExportDeclaration : Symbol(SyntaxKind.ExportDeclaration, Decl(a.ts, 1, 15))
|
| D | enums.js | 6 ExportDeclaration
|
| D | enums.errors.txt | 8 ExportDeclaration
|
| /third_party/typescript/src/services/ |
| D | organizeImports.ts | 57 function organizeImportsWorker<T extends ImportDeclaration | ExportDeclaration>( 380 export function coalesceExports(exportGroup: readonly ExportDeclaration[]) { 387 const coalescedExports: ExportDeclaration[] = []; 424 function getCategorizedExports(exportGroup: readonly ExportDeclaration[]) { 425 let exportWithoutClause: ExportDeclaration | undefined; 426 const namedExports: ExportDeclaration[] = []; 427 const typeOnlyExports: ExportDeclaration[] = [];
|
| D | importTracker.ts | 259 if (decl.kind === SyntaxKind.ExportDeclaration) { 425 case SyntaxKind.ExportDeclaration: 427 const decl = statement as ImportDeclaration | ExportDeclaration;
|
| D | breakpoints.ts | 188 case SyntaxKind.ExportDeclaration: 190 return textSpan(node, (node as ExportDeclaration).moduleSpecifier);
|
| /third_party/typescript/src/compiler/transformers/module/ |
| D | esnextAnd2015.ts | 78 case SyntaxKind.ExportDeclaration: 79 const exportDecl = (node as ExportDeclaration); 91 …on createRequireCall(importNode: ImportDeclaration | ImportEqualsDeclaration | ExportDeclaration) { 189 function visitExportDeclaration(node: ExportDeclaration) {
|
| D | system.ts | 6 externalImports: (ImportDeclaration | ImportEqualsDeclaration | ExportDeclaration)[]; 144 …dencyGroups(externalImports: (ImportDeclaration | ImportEqualsDeclaration | ExportDeclaration)[]) { 310 … if (externalImport.kind === SyntaxKind.ExportDeclaration && externalImport.exportClause) { 485 case SyntaxKind.ExportDeclaration: 588 case SyntaxKind.ExportDeclaration: 589 return visitExportDeclaration(node as ExportDeclaration); 622 function visitExportDeclaration(node: ExportDeclaration): VisitResult<Statement> {
|
| D | module.ts | 410 …function getAMDImportExpressionForImport(node: ImportDeclaration | ExportDeclaration | ImportEqual… 516 case SyntaxKind.ExportDeclaration: 517 return visitExportDeclaration(node as ExportDeclaration); 872 function getHelperExpressionForExport(node: ExportDeclaration, innerExpr: Expression) { 1005 …on createRequireCall(importNode: ImportDeclaration | ImportEqualsDeclaration | ExportDeclaration) { 1096 function visitExportDeclaration(node: ExportDeclaration): VisitResult<Statement> {
|
| /third_party/typescript/src/services/codefixes/ |
| D | fixImportNonExportedMember.ts | 119 …Program, sourceFile: SourceFile, moduleExports: ExportName[], node: ExportDeclaration | undefined)… 131 const predicate = (node: Node): node is ExportDeclaration => 136 …nges.ChangeTracker, program: Program, sourceFile: SourceFile, node: ExportDeclaration, names: Expo…
|
| D | convertToEsModule.ts | 316 function reExportStar(moduleSpecifier: string): ExportDeclaration { 319 function reExportDefault(moduleSpecifier: string): ExportDeclaration { 583 …ion(exportSpecifiers: ExportSpecifier[] | undefined, moduleSpecifier?: string): ExportDeclaration {
|
| /third_party/typescript/tests/cases/conformance/externalModules/typeOnly/ |
| D | enums.ts | 4 ExportDeclaration
|
| /third_party/typescript/src/testRunner/unittests/services/ |
| D | organizeImports.ts | 1045 function parseExports(...exportStrings: string[]): readonly ExportDeclaration[] { 1093 case SyntaxKind.ExportDeclaration: 1094 const ed1 = node1 as ExportDeclaration; 1095 const ed2 = node2 as ExportDeclaration;
|
| /third_party/typescript/src/compiler/factory/ |
| D | utilitiesPublic.ts | 33 || kind === SyntaxKind.ExportDeclaration;
|
| D | utilities.ts | 568 …meForExternalImport(factory: NodeFactory, node: ImportDeclaration | ExportDeclaration | ImportEqua… 577 if (node.kind === SyntaxKind.ExportDeclaration && node.moduleSpecifier) { 591 …leNameLiteral(factory: NodeFactory, importNode: ImportDeclaration | ExportDeclaration | ImportEqua… 631 …laration(declaration: ImportEqualsDeclaration | ImportDeclaration | ExportDeclaration | ImportCall… 896 || kind === SyntaxKind.ExportDeclaration
|
| /third_party/typescript/src/deprecatedCompat/4.8/ |
| D | mergeDecoratorsAndModifiers.ts | 210 …indings | undefined, moduleSpecifier?: Expression, assertClause?: AssertClause): ExportDeclaration; 214 …ExportDeclaration, decorators: readonly Decorator[] | undefined, modifiers: readonly Modifier[] | … 1335 …ndings | undefined, moduleSpecifier?: Expression, assertClause?: AssertClause): ExportDeclaration { 1339 …ndings | undefined, moduleSpecifier?: Expression, assertClause?: AssertClause): ExportDeclaration { 1367 …ExportDeclaration, modifiers: readonly Modifier[] | undefined, isTypeOnly: boolean, exportClause: … 1371 …ExportDeclaration, _decorators: readonly Decorator[] | undefined, modifiers: readonly Modifier[] |…
|
| /third_party/typescript/src/compiler/ |
| D | ohApi.ts | 425 case SyntaxKind.ExportDeclaration: 426 return visitExportDeclaration(<ExportDeclaration>node); 598 function visitExportDeclaration(node: ExportDeclaration): VisitResult<Statement> {
|
| D | types.ts | 325 ExportDeclaration, enumerator 1081 | ExportDeclaration 1159 | ExportDeclaration 1264 | ExportDeclaration 1297 | ExportDeclaration 3510 readonly parent: ImportDeclaration | ExportDeclaration 3523 readonly parent: ExportDeclaration; 3536 export interface ExportDeclaration extends DeclarationStatement, JSDocContainer { 3537 readonly kind: SyntaxKind.ExportDeclaration; 3559 readonly parent: ExportDeclaration; [all …]
|
| /third_party/typescript/src/testRunner/unittests/ |
| D | transform.ts | 275 if (node.kind === SyntaxKind.ExportDeclaration) { 276 const ed = node as Node as ExportDeclaration;
|
| /third_party/typescript/lib/ |
| D | typescript.d.ts | 386 ExportDeclaration = 278, enumerator 604 …tion | FunctionTypeNode | ConstructorTypeNode | JSDocFunctionType | ExportDeclaration | NamedTuple… 610 …qualsDeclaration | ImportDeclaration | NamespaceExportDeclaration | ExportDeclaration | ExportAssi… 611 …leDeclaration | ImportEqualsDeclaration | ImportDeclaration | ExportAssignment | ExportDeclaration; 1741 readonly parent: ImportDeclaration | ExportDeclaration; 1752 readonly parent: ExportDeclaration; 1759 export interface ExportDeclaration extends DeclarationStatement, JSDocContainer { interface 1760 readonly kind: SyntaxKind.ExportDeclaration; 1777 readonly parent: ExportDeclaration; 1818 readonly parent: ExportDeclaration & { [all …]
|
| /third_party/typescript/tests/baselines/reference/api/ |
| D | typescript.d.ts | 386 ExportDeclaration = 278, enumerator 604 …tion | FunctionTypeNode | ConstructorTypeNode | JSDocFunctionType | ExportDeclaration | NamedTuple… 610 …qualsDeclaration | ImportDeclaration | NamespaceExportDeclaration | ExportDeclaration | ExportAssi… 611 …leDeclaration | ImportEqualsDeclaration | ImportDeclaration | ExportAssignment | ExportDeclaration; 1741 readonly parent: ImportDeclaration | ExportDeclaration; 1752 readonly parent: ExportDeclaration; 1759 export interface ExportDeclaration extends DeclarationStatement, JSDocContainer { interface 1760 readonly kind: SyntaxKind.ExportDeclaration; 1777 readonly parent: ExportDeclaration; 1818 readonly parent: ExportDeclaration & { [all …]
|