| /third_party/typescript/src/services/ |
| D | navigationBar.ts | 307 case SyntaxKind.ClassExpression: 685 case SyntaxKind.ClassExpression: 686 … return getFunctionOrClassName(<FunctionExpression | ArrowFunction | ClassExpression>node); 719 case SyntaxKind.ClassExpression: 727 … return getFunctionOrClassName(<ArrowFunction | FunctionExpression | ClassExpression>node); 770 case SyntaxKind.ClassExpression: 947 …nctionOrClassExpression(node: Node): node is ArrowFunction | FunctionExpression | ClassExpression { 951 case SyntaxKind.ClassExpression:
|
| D | jsDoc.ts | 408 case SyntaxKind.ClassExpression: 409 return find((rightHandSide as ClassExpression).members, isConstructorDeclaration);
|
| D | callHierarchy.ts | 4 | ClassExpression & { name: Identifier } 14 | ClassExpression & { name: undefined, parent: VariableDeclaration & { name: Identifier } } 496 case SyntaxKind.ClassExpression:
|
| D | classifier2020.ts | 65 case SyntaxKind.ClassExpression:
|
| D | symbolDisplay.ts | 14 return getDeclarationOfKind(symbol, SyntaxKind.ClassExpression) ? 306 if (getDeclarationOfKind(symbol, SyntaxKind.ClassExpression)) {
|
| D | findAllReferences.ts | 492 else if (node.kind === SyntaxKind.ClassExpression) { 566 case SyntaxKind.ClassExpression: 1236 ….kind === SyntaxKind.FunctionExpression || valueDeclaration.kind === SyntaxKind.ClassExpression)) { 1822 case SyntaxKind.ClassExpression: 1965 case SyntaxKind.ClassExpression:
|
| D | outliningElementsCollector.ts | 190 case SyntaxKind.ClassExpression:
|
| D | documentHighlights.ts | 226 case SyntaxKind.ClassExpression:
|
| /third_party/typescript/src/compiler/transformers/ |
| D | utilities.ts | 340 …export function getProperties(node: ClassExpression | ClassDeclaration, requireInitializer: true, … 341 …export function getProperties(node: ClassExpression | ClassDeclaration, requireInitializer: boolea… 342 …export function getProperties(node: ClassExpression | ClassDeclaration, requireInitializer: boolea…
|
| D | ts.ts | 446 case SyntaxKind.ClassExpression: 455 return visitClassExpression(<ClassExpression>node); 877 function visitClassExpression(node: ClassExpression): Expression { 902 function transformClassMembers(node: ClassDeclaration | ClassExpression) { 935 …function getDecoratedClassElements(node: ClassExpression | ClassDeclaration, isStatic: boolean): r… 1012 …function getAllDecoratorsOfConstructor(node: ClassExpression | ClassDeclaration): AllDecorators | … 1031 …function getAllDecoratorsOfClassElement(node: ClassExpression | ClassDeclaration, member: ClassEle… 1054 …function getAllDecoratorsOfAccessors(node: ClassExpression | ClassDeclaration, accessor: AccessorD… 1146 …function generateClassElementDecorationExpressions(node: ClassExpression | ClassDeclaration, isSta… 1169 …function generateClassElementDecorationExpression(node: ClassExpression | ClassDeclaration, member… [all …]
|
| D | classFields.ts | 86 case SyntaxKind.ClassExpression: 502 function visitClassExpression(node: ClassExpression): Expression { 572 …function transformClassMembers(node: ClassDeclaration | ClassExpression, isDerivedClass: boolean) { 603 … function transformConstructor(node: ClassDeclaration | ClassExpression, isDerivedClass: boolean) { 630 …function transformConstructorBody(node: ClassDeclaration | ClassExpression, constructor: Construct…
|
| D | es2015.ts | 380 case SyntaxKind.ClassExpression: 381 return visitClassExpression(<ClassExpression>node); 732 function visitClassExpression(node: ClassExpression): Expression { 751 …function transformClassLikeDeclarationToExpression(node: ClassExpression | ClassDeclaration): Expr… 824 …function transformClassBody(node: ClassExpression | ClassDeclaration, extendsClauseElement: Expres… 861 …function addExtendsHelperIfNeeded(statements: Statement[], node: ClassExpression | ClassDeclaratio… 881 …function addConstructor(statements: Statement[], node: ClassExpression | ClassDeclaration, name: I… 925 …function createDefaultConstructorBody(node: ClassDeclaration | ClassExpression, isDerivedClass: bo… 956 …ation & { body: FunctionBody } | undefined, node: ClassDeclaration | ClassExpression, extendsClaus… 1577 …function addClassMembers(statements: Statement[], node: ClassExpression | ClassDeclaration): void { [all …]
|
| /third_party/typescript/src/linter/ |
| D | Problems.ts | 25 LambdaWithTypeParameters, ClassExpression, DestructuringAssignment, enumerator 78 faultsAttrs[FaultID.ClassExpression] = { migratable: true, cookBookRef: "50", };
|
| D | TypeScriptLinterConfig.ts | 64 LinterConfig.nodeDesc[FaultID.ClassExpression] = "Class expressions";
|
| /third_party/typescript/src/compiler/ |
| D | visitorPublic.ts | 739 case SyntaxKind.ClassExpression: 740 return factory.updateClassExpression(<ClassExpression>node, 741 nodesVisitor((<ClassExpression>node).decorators, visitor, isDecorator), 742 nodesVisitor((<ClassExpression>node).modifiers, visitor, isModifier), 743 nodeVisitor((<ClassExpression>node).name, visitor, isIdentifier), 744 … nodesVisitor((<ClassExpression>node).typeParameters, visitor, isTypeParameterDeclaration), 745 … nodesVisitor((<ClassExpression>node).heritageClauses, visitor, isHeritageClause), 746 nodesVisitor((<ClassExpression>node).members, visitor, isClassElement));
|
| D | utilitiesPublic.ts | 1261 …ode.kind === SyntaxKind.ClassDeclaration || node.kind === SyntaxKind.ClassExpression || node.kind … 1470 case SyntaxKind.ClassExpression:
|
| /third_party/typescript/src/services/codefixes/ |
| D | convertToEs6Module.ts | 358 case SyntaxKind.ClassExpression: 360 …return classExpressionToDeclaration(name, modifiers, exported as ClassExpression, useSitesToUnqual… 549 …: string | undefined, additionalModifiers: readonly Modifier[], cls: ClassExpression, useSitesToUn…
|
| D | fixAddMissingMember.ts | 216 if (classDeclaration.kind === SyntaxKind.ClassExpression) {
|
| /third_party/typescript/src/services/formatting/ |
| D | smartIndenter.ts | 436 case SyntaxKind.ClassExpression: 441 …return getList((<ClassDeclaration | ClassExpression | StructDeclaration | InterfaceDeclaration | T… 561 case SyntaxKind.ClassExpression:
|
| D | rules.ts | 600 case SyntaxKind.ClassExpression: 770 case SyntaxKind.ClassExpression:
|
| /third_party/typescript/src/services/refactors/ |
| D | convertParamsToDestructuredObject.ts | 576 case SyntaxKind.ClassExpression: 601 if (functionDeclaration.parent.kind === SyntaxKind.ClassExpression) { 624 parent: ClassDeclaration | (ClassExpression & { parent: ValidVariableDeclaration });
|
| /third_party/typescript/src/compiler/factory/ |
| D | parenthesizerRules.ts | 257 case SyntaxKind.ClassExpression:
|
| D | nodeTests.ts | 352 export function isClassExpression(node: Node): node is ClassExpression { 353 return node.kind === SyntaxKind.ClassExpression;
|
| /third_party/typescript/lib/ |
| D | typescript.d.ts | 330 ClassExpression = 223, enumerator 1527 …readonly kind: SyntaxKind.ClassDeclaration | SyntaxKind.ClassExpression | SyntaxKind.StructDeclara… 1543 export interface ClassExpression extends ClassLikeDeclarationBase, PrimaryExpression { interface 1544 readonly kind: SyntaxKind.ClassExpression; 1546 export type ClassLikeDeclaration = ClassDeclaration | ClassExpression | StructDeclaration; 3380 …Clauses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]): ClassExpression; 3381 …ClassExpression, decorators: readonly Decorator[] | undefined, modifiers: readonly Modifier[] | un… 4456 function isClassExpression(node: Node): node is ClassExpression; 7178 …auses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]) => ClassExpression; 7180 …ClassExpression, modifiers: readonly Modifier[] | undefined, name: Identifier | undefined, typePar…
|
| D | typescriptServices.d.ts | 330 ClassExpression = 223, enumerator 1527 …readonly kind: SyntaxKind.ClassDeclaration | SyntaxKind.ClassExpression | SyntaxKind.StructDeclara… 1543 export interface ClassExpression extends ClassLikeDeclarationBase, PrimaryExpression { interface 1544 readonly kind: SyntaxKind.ClassExpression; 1546 export type ClassLikeDeclaration = ClassDeclaration | ClassExpression | StructDeclaration; 3380 …Clauses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]): ClassExpression; 3381 …ClassExpression, decorators: readonly Decorator[] | undefined, modifiers: readonly Modifier[] | un… 4456 function isClassExpression(node: Node): node is ClassExpression; 7178 …auses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]) => ClassExpression; 7180 …ClassExpression, modifiers: readonly Modifier[] | undefined, name: Identifier | undefined, typePar…
|