Home
last modified time | relevance | path

Searched refs:NamespaceExportDeclaration (Results 1 – 19 of 19) sorted by relevance

/third_party/typescript/src/linter/
DTypeScriptLinterConfig.ts188 [SyntaxKind.NamespaceExportDeclaration, FaultID.UMDModuleDefinition],
/third_party/typescript/src/compiler/factory/
DnodeTests.ts520 export function isNamespaceExportDeclaration(node: Node): node is NamespaceExportDeclaration {
521 return node.kind === SyntaxKind.NamespaceExportDeclaration;
DnodeFactory.ts3873 const node = createBaseNamedDeclaration<NamespaceExportDeclaration>(
3874 SyntaxKind.NamespaceExportDeclaration,
3884 … function updateNamespaceExportDeclaration(node: NamespaceExportDeclaration, name: Identifier) {
/third_party/typescript/src/compiler/
DvisitorPublic.ts942 case SyntaxKind.NamespaceExportDeclaration:
943 return factory.updateNamespaceExportDeclaration(<NamespaceExportDeclaration>node,
944 nodeVisitor((<NamespaceExportDeclaration>node).name, visitor, isIdentifier));
Dtypes.ts308 NamespaceExportDeclaration, enumerator
909 | NamespaceExportDeclaration
3025 export interface NamespaceExportDeclaration extends DeclarationStatement, JSDocContainer {
3026 readonly kind: SyntaxKind.NamespaceExportDeclaration;
7203 createNamespaceExportDeclaration(name: string | Identifier): NamespaceExportDeclaration;
7204 …updateNamespaceExportDeclaration(node: NamespaceExportDeclaration, name: Identifier): NamespaceExp…
Dbinder.ts2728 case SyntaxKind.NamespaceExportDeclaration:
2729 return bindNamespaceExportDeclaration(<NamespaceExportDeclaration>node);
2816 function bindNamespaceExportDeclaration(node: NamespaceExportDeclaration) {
Demitter.ts1512 case SyntaxKind.NamespaceExportDeclaration:
1513 return emitNamespaceExportDeclaration(<NamespaceExportDeclaration>node);
3310 function emitNamespaceExportDeclaration(node: NamespaceExportDeclaration) {
Dparser.ts406 case SyntaxKind.NamespaceExportDeclaration:
407 return visitNode(cbNode, (<NamespaceExportDeclaration>node).name);
7377 …y<Decorator> | undefined, modifiers: NodeArray<Modifier> | undefined): NamespaceExportDeclaration {
Dchecker.ts2528 || node.kind === SyntaxKind.NamespaceExportDeclaration
2896 …function getTargetOfNamespaceExportDeclaration(node: NamespaceExportDeclaration, dontResolveAlias:…
2964 case SyntaxKind.NamespaceExportDeclaration:
2965 …return getTargetOfNamespaceExportDeclaration(<NamespaceExportDeclaration>node, dontRecursivelyReso…
7119 case SyntaxKind.NamespaceExportDeclaration:
7123 …esult(factory.createNamespaceExportDeclaration(idText((node as NamespaceExportDeclaration).name)),…
7886 case SyntaxKind.NamespaceExportDeclaration:
41357 node.kind === SyntaxKind.NamespaceExportDeclaration ||
Dutilities.ts3216 node.kind === SyntaxKind.NamespaceExportDeclaration ||
/third_party/typescript/lib/
Dtypescript.d.ts369 NamespaceExportDeclaration = 262, enumerator
567 …uleDeclaration | ImportEqualsDeclaration | ImportDeclaration | NamespaceExportDeclaration | Export…
1653 export interface NamespaceExportDeclaration extends DeclarationStatement, JSDocContainer { interface
1654 readonly kind: SyntaxKind.NamespaceExportDeclaration;
3454 createNamespaceExportDeclaration(name: string | Identifier): NamespaceExportDeclaration;
3455 …updateNamespaceExportDeclaration(node: NamespaceExportDeclaration, name: Identifier): NamespaceExp…
4497 function isNamespaceExportDeclaration(node: Node): node is NamespaceExportDeclaration;
6922 … const createNamespaceExportDeclaration: (name: string | Identifier) => NamespaceExportDeclaration;
6924 …dateNamespaceExportDeclaration: (node: NamespaceExportDeclaration, name: Identifier) => NamespaceE…
DtypescriptServices.d.ts369 NamespaceExportDeclaration = 262, enumerator
567 …uleDeclaration | ImportEqualsDeclaration | ImportDeclaration | NamespaceExportDeclaration | Export…
1653 export interface NamespaceExportDeclaration extends DeclarationStatement, JSDocContainer { interface
1654 readonly kind: SyntaxKind.NamespaceExportDeclaration;
3454 createNamespaceExportDeclaration(name: string | Identifier): NamespaceExportDeclaration;
3455 …updateNamespaceExportDeclaration(node: NamespaceExportDeclaration, name: Identifier): NamespaceExp…
4497 function isNamespaceExportDeclaration(node: Node): node is NamespaceExportDeclaration;
6922 … const createNamespaceExportDeclaration: (name: string | Identifier) => NamespaceExportDeclaration;
6924 …dateNamespaceExportDeclaration: (node: NamespaceExportDeclaration, name: Identifier) => NamespaceE…
Dtsserverlibrary.d.ts369 NamespaceExportDeclaration = 262, enumerator
567 …uleDeclaration | ImportEqualsDeclaration | ImportDeclaration | NamespaceExportDeclaration | Export…
1653 export interface NamespaceExportDeclaration extends DeclarationStatement, JSDocContainer { interface
1654 readonly kind: SyntaxKind.NamespaceExportDeclaration;
3454 createNamespaceExportDeclaration(name: string | Identifier): NamespaceExportDeclaration;
3455 …updateNamespaceExportDeclaration(node: NamespaceExportDeclaration, name: Identifier): NamespaceExp…
4497 function isNamespaceExportDeclaration(node: Node): node is NamespaceExportDeclaration;
10667 … const createNamespaceExportDeclaration: (name: string | Identifier) => NamespaceExportDeclaration;
10669 …dateNamespaceExportDeclaration: (node: NamespaceExportDeclaration, name: Identifier) => NamespaceE…
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts369 NamespaceExportDeclaration = 262, enumerator
578 …uleDeclaration | ImportEqualsDeclaration | ImportDeclaration | NamespaceExportDeclaration | Export…
1664 export interface NamespaceExportDeclaration extends DeclarationStatement, JSDocContainer { interface
1665 readonly kind: SyntaxKind.NamespaceExportDeclaration;
3570 createNamespaceExportDeclaration(name: string | Identifier): NamespaceExportDeclaration;
3571 …updateNamespaceExportDeclaration(node: NamespaceExportDeclaration, name: Identifier): NamespaceExp…
4728 function isNamespaceExportDeclaration(node: Node): node is NamespaceExportDeclaration;
7169 … const createNamespaceExportDeclaration: (name: string | Identifier) => NamespaceExportDeclaration;
7171 …dateNamespaceExportDeclaration: (node: NamespaceExportDeclaration, name: Identifier) => NamespaceE…
Dtsserverlibrary.d.ts369 NamespaceExportDeclaration = 262, enumerator
578 …uleDeclaration | ImportEqualsDeclaration | ImportDeclaration | NamespaceExportDeclaration | Export…
1664 export interface NamespaceExportDeclaration extends DeclarationStatement, JSDocContainer { interface
1665 readonly kind: SyntaxKind.NamespaceExportDeclaration;
3570 createNamespaceExportDeclaration(name: string | Identifier): NamespaceExportDeclaration;
3571 …updateNamespaceExportDeclaration(node: NamespaceExportDeclaration, name: Identifier): NamespaceExp…
4728 function isNamespaceExportDeclaration(node: Node): node is NamespaceExportDeclaration;
10952 … const createNamespaceExportDeclaration: (name: string | Identifier) => NamespaceExportDeclaration;
10954 …dateNamespaceExportDeclaration: (node: NamespaceExportDeclaration, name: Identifier) => NamespaceE…
/third_party/typescript/src/services/
DsymbolDisplay.ts454 case SyntaxKind.NamespaceExportDeclaration:
DfindAllReferences.ts580 case SyntaxKind.NamespaceExportDeclaration:
Dutilities.ts2591 || kind === SyntaxKind.NamespaceExportDeclaration
/third_party/typescript/src/compiler/transformers/
Dts.ts423 case SyntaxKind.NamespaceExportDeclaration: