Home
last modified time | relevance | path

Searched refs:ClassExpression (Results 1 – 25 of 50) sorted by relevance

12

/third_party/typescript/src/services/
DnavigationBar.ts307 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:
DjsDoc.ts408 case SyntaxKind.ClassExpression:
409 return find((rightHandSide as ClassExpression).members, isConstructorDeclaration);
DcallHierarchy.ts4 | ClassExpression & { name: Identifier }
14 | ClassExpression & { name: undefined, parent: VariableDeclaration & { name: Identifier } }
496 case SyntaxKind.ClassExpression:
Dclassifier2020.ts65 case SyntaxKind.ClassExpression:
DsymbolDisplay.ts14 return getDeclarationOfKind(symbol, SyntaxKind.ClassExpression) ?
306 if (getDeclarationOfKind(symbol, SyntaxKind.ClassExpression)) {
DfindAllReferences.ts492 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:
DoutliningElementsCollector.ts190 case SyntaxKind.ClassExpression:
DdocumentHighlights.ts226 case SyntaxKind.ClassExpression:
/third_party/typescript/src/compiler/transformers/
Dutilities.ts340 …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…
Dts.ts446 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 …]
DclassFields.ts86 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…
Des2015.ts380 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/
DProblems.ts25 LambdaWithTypeParameters, ClassExpression, DestructuringAssignment, enumerator
78 faultsAttrs[FaultID.ClassExpression] = { migratable: true, cookBookRef: "50", };
DTypeScriptLinterConfig.ts64 LinterConfig.nodeDesc[FaultID.ClassExpression] = "Class expressions";
/third_party/typescript/src/compiler/
DvisitorPublic.ts739 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));
DutilitiesPublic.ts1261 …ode.kind === SyntaxKind.ClassDeclaration || node.kind === SyntaxKind.ClassExpression || node.kind …
1470 case SyntaxKind.ClassExpression:
/third_party/typescript/src/services/codefixes/
DconvertToEs6Module.ts358 case SyntaxKind.ClassExpression:
360 …return classExpressionToDeclaration(name, modifiers, exported as ClassExpression, useSitesToUnqual…
549 …: string | undefined, additionalModifiers: readonly Modifier[], cls: ClassExpression, useSitesToUn…
DfixAddMissingMember.ts216 if (classDeclaration.kind === SyntaxKind.ClassExpression) {
/third_party/typescript/src/services/formatting/
DsmartIndenter.ts436 case SyntaxKind.ClassExpression:
441 …return getList((<ClassDeclaration | ClassExpression | StructDeclaration | InterfaceDeclaration | T…
561 case SyntaxKind.ClassExpression:
Drules.ts600 case SyntaxKind.ClassExpression:
770 case SyntaxKind.ClassExpression:
/third_party/typescript/src/services/refactors/
DconvertParamsToDestructuredObject.ts576 case SyntaxKind.ClassExpression:
601 if (functionDeclaration.parent.kind === SyntaxKind.ClassExpression) {
624 parent: ClassDeclaration | (ClassExpression & { parent: ValidVariableDeclaration });
/third_party/typescript/src/compiler/factory/
DparenthesizerRules.ts257 case SyntaxKind.ClassExpression:
DnodeTests.ts352 export function isClassExpression(node: Node): node is ClassExpression {
353 return node.kind === SyntaxKind.ClassExpression;
/third_party/typescript/lib/
Dtypescript.d.ts330 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;
3381ClassExpression, 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;
7180ClassExpression, modifiers: readonly Modifier[] | undefined, name: Identifier | undefined, typePar…
DtypescriptServices.d.ts330 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;
3381ClassExpression, 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;
7180ClassExpression, modifiers: readonly Modifier[] | undefined, name: Identifier | undefined, typePar…

12