Home
last modified time | relevance | path

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

123

/third_party/typescript/src/compiler/transformers/
DlegacyDecorators.ts49 case SyntaxKind.ClassExpression:
50 return visitClassExpression(node as ClassExpression);
290 function visitClassExpression(node: ClassExpression) {
438 …function getDecoratedClassElements(node: ClassExpression | ClassDeclaration, isStatic: boolean): r…
450 …function generateClassElementDecorationExpressions(node: ClassExpression | ClassDeclaration, isSta…
465 …function generateClassElementDecorationExpression(node: ClassExpression | ClassDeclaration, member…
545 function generateConstructorDecorationExpression(node: ClassExpression | ClassDeclaration) {
648 function getClassPrototype(node: ClassExpression | ClassDeclaration) {
652 … function getClassMemberPrefix(node: ClassExpression | ClassDeclaration, member: ClassElement) {
Dutilities.ts336 …export function getProperties(node: ClassExpression | ClassDeclaration | StructDeclaration, requir…
337 …export function getProperties(node: ClassExpression | ClassDeclaration | StructDeclaration, requir…
338 …export function getProperties(node: ClassExpression | ClassDeclaration | StructDeclaration, requir…
346 …export function getStaticPropertiesAndClassStaticBlock(node: ClassExpression | ClassDeclaration): …
347 …export function getStaticPropertiesAndClassStaticBlock(node: ClassExpression | ClassDeclaration): …
348 …export function getStaticPropertiesAndClassStaticBlock(node: ClassExpression | ClassDeclaration): …
464 …function getAllDecoratorsOfAccessors(accessor: AccessorDeclaration, parent: ClassExpression | Clas…
DclassFields.ts225 case SyntaxKind.ClassExpression:
226 return visitClassExpression(node as ClassExpression);
1253 function visitClassExpression(node: ClassExpression): Expression {
1257 …function visitClassExpressionInNewClassLexicalEnvironment(node: ClassExpression, facts: ClassFacts…
1372 function transformClassMembers(node: ClassDeclaration | ClassExpression) {
1471 …r: ConstructorDeclaration | undefined, container: ClassDeclaration | ClassExpression | StructDecla…
1505 …function transformConstructorBody(node: ClassDeclaration | ClassExpression | StructDeclaration, co…
Des2015.ts417 case SyntaxKind.ClassExpression:
418 return visitClassExpression(node as ClassExpression);
774 function visitClassExpression(node: ClassExpression): Expression {
793 …function transformClassLikeDeclarationToExpression(node: ClassExpression | ClassDeclaration): Expr…
866 …function transformClassBody(node: ClassExpression | ClassDeclaration, extendsClauseElement: Expres…
903 …function addExtendsHelperIfNeeded(statements: Statement[], node: ClassExpression | ClassDeclaratio…
923 …function addConstructor(statements: Statement[], node: ClassExpression | ClassDeclaration, name: I…
966 …function createDefaultConstructorBody(node: ClassDeclaration | ClassExpression, isDerivedClass: bo…
997 …ation & { body: FunctionBody } | undefined, node: ClassDeclaration | ClassExpression, extendsClaus…
1671 …function addClassMembers(statements: Statement[], node: ClassExpression | ClassDeclaration): void {
[all …]
Dts.ts466 case SyntaxKind.ClassExpression:
475 return visitClassExpression(node as ClassExpression);
746 function visitClassExpression(node: ClassExpression): Expression {
766 function transformClassMembers(node: ClassDeclaration | ClassExpression) {
923 case SyntaxKind.ClassExpression:
/third_party/typescript/src/compiler/factory/
DutilitiesPublic.ts21 || kind === SyntaxKind.ClassExpression
43 || kind === SyntaxKind.ClassExpression
/third_party/typescript/src/services/
DnavigationBar.ts322 case SyntaxKind.ClassExpression:
701 case SyntaxKind.ClassExpression:
702 … return getFunctionOrClassName(node as FunctionExpression | ArrowFunction | ClassExpression);
735 case SyntaxKind.ClassExpression:
743 … return getFunctionOrClassName(node as ArrowFunction | FunctionExpression | ClassExpression);
786 case SyntaxKind.ClassExpression:
967 …nctionOrClassExpression(node: Node): node is ArrowFunction | FunctionExpression | ClassExpression {
971 case SyntaxKind.ClassExpression:
DcallHierarchy.ts4 | ClassExpression & { name: Identifier }
14 | ClassExpression & { name: undefined, parent: VariableDeclaration & { name: Identifier } }
534 case SyntaxKind.ClassExpression:
DjsDoc.ts509 case SyntaxKind.ClassExpression:
510 return find((rightHandSide as ClassExpression).members, isConstructorDeclaration);
Dclassifier2020.ts65 case SyntaxKind.ClassExpression:
DinlayHints.ts39 case SyntaxKind.ClassExpression:
DfindAllReferences.ts511 else if (node.kind === SyntaxKind.ClassExpression) {
590 case SyntaxKind.ClassExpression:
1280 ….kind === SyntaxKind.FunctionExpression || valueDeclaration.kind === SyntaxKind.ClassExpression)) {
1924 case SyntaxKind.ClassExpression:
2069 case SyntaxKind.ClassExpression:
DsymbolDisplay.ts14 return getDeclarationOfKind(symbol, SyntaxKind.ClassExpression) ?
314 if (getDeclarationOfKind(symbol, SyntaxKind.ClassExpression)) {
/third_party/typescript/src/linter/ArkTSLinter_1_1/
DTypeScriptLinterConfig.ts63 LinterConfig.nodeDesc[FaultID.ClassExpression] = "Class expressions";
178 [SyntaxKind.ClassExpression, FaultID.ClassExpression],
DProblems.ts28 LambdaWithTypeParameters, ClassExpression, DestructuringAssignment, enumerator
82 faultsAttrs[FaultID.ClassExpression] = new FaultAttributes(50, true);
/third_party/typescript/src/linter/ArkTSLinter_1_0/
DProblems.ts26 LambdaWithTypeParameters, ClassExpression, DestructuringAssignment, enumerator
79 faultsAttrs[FaultID.ClassExpression] = { migratable: true, cookBookRef: "50", };
DTypeScriptLinterConfig.ts65 LinterConfig.nodeDesc[FaultID.ClassExpression] = "Class expressions";
/third_party/typescript/src/deprecatedCompat/4.8/
DmergeDecoratorsAndModifiers.ts130 …Clauses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]): ClassExpression;
134ClassExpression, decorators: readonly Decorator[] | undefined, modifiers: readonly Modifier[] | un…
740 …lauses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]): ClassExpression {
744 …lauses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]): ClassExpression {
770ClassExpression, modifiers: readonly ModifierLike[] | undefined, name: Identifier | undefined, typ…
774ClassExpression, decorators: readonly Decorator[] | undefined, modifiers: readonly Modifier[] | un…
/third_party/typescript/src/services/codefixes/
DconvertToEsModule.ts358 case SyntaxKind.ClassExpression:
360 …return classExpressionToDeclaration(name, modifiers, exported as ClassExpression, useSitesToUnqual…
556 …: string | undefined, additionalModifiers: readonly Modifier[], cls: ClassExpression, useSitesToUn…
/third_party/typescript/src/services/formatting/
DsmartIndenter.ts462 case SyntaxKind.ClassExpression:
467 …return getList((node as ClassDeclaration | ClassExpression | StructDeclaration | InterfaceDeclarat…
587 case SyntaxKind.ClassExpression:
/third_party/typescript/src/services/refactors/
DconvertParamsToDestructuredObject.ts574 case SyntaxKind.ClassExpression:
599 if (functionDeclaration.parent.kind === SyntaxKind.ClassExpression) {
622 parent: ClassDeclaration | (ClassExpression & { parent: ValidVariableDeclaration });
/third_party/typescript/src/compiler/
DutilitiesPublic.ts1167 case SyntaxKind.ClassExpression:
1376 …ode.kind === SyntaxKind.ClassDeclaration || node.kind === SyntaxKind.ClassExpression || node.kind …
1620 case SyntaxKind.ClassExpression:
1820 || kind === SyntaxKind.ClassExpression
/third_party/typescript/lib/
Dtypescript.d.ts338 ClassExpression = 230, enumerator
609 …ethodDeclaration | GetAccessorDeclaration | SetAccessorDeclaration | ClassExpression | ClassDeclar…
611 …n | IndexSignatureDeclaration | FunctionExpression | ArrowFunction | ClassExpression | VariableSta…
905 readonly parent: ClassDeclaration | ClassExpression;
1606 …readonly kind: SyntaxKind.ClassDeclaration | SyntaxKind.ClassExpression | SyntaxKind.StructDeclara…
1624 export interface ClassExpression extends ClassLikeDeclarationBase, PrimaryExpression { interface
1625 readonly kind: SyntaxKind.ClassExpression;
1628 export type ClassLikeDeclaration = ClassDeclaration | ClassExpression | StructDeclaration;
3778 …Clauses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]): ClassExpression;
3779ClassExpression, modifiers: readonly ModifierLike[] | undefined, name: Identifier | undefined, typ…
[all …]
DtypescriptServices.d.ts338 ClassExpression = 230, enumerator
609 …ethodDeclaration | GetAccessorDeclaration | SetAccessorDeclaration | ClassExpression | ClassDeclar…
611 …n | IndexSignatureDeclaration | FunctionExpression | ArrowFunction | ClassExpression | VariableSta…
905 readonly parent: ClassDeclaration | ClassExpression;
1606 …readonly kind: SyntaxKind.ClassDeclaration | SyntaxKind.ClassExpression | SyntaxKind.StructDeclara…
1624 export interface ClassExpression extends ClassLikeDeclarationBase, PrimaryExpression { interface
1625 readonly kind: SyntaxKind.ClassExpression;
1628 export type ClassLikeDeclaration = ClassDeclaration | ClassExpression | StructDeclaration;
3778 …Clauses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]): ClassExpression;
3779ClassExpression, modifiers: readonly ModifierLike[] | undefined, name: Identifier | undefined, typ…
[all …]
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts338 ClassExpression = 230, enumerator
609 …ethodDeclaration | GetAccessorDeclaration | SetAccessorDeclaration | ClassExpression | ClassDeclar…
611 …n | IndexSignatureDeclaration | FunctionExpression | ArrowFunction | ClassExpression | VariableSta…
905 readonly parent: ClassDeclaration | ClassExpression;
1606 …readonly kind: SyntaxKind.ClassDeclaration | SyntaxKind.ClassExpression | SyntaxKind.StructDeclara…
1624 export interface ClassExpression extends ClassLikeDeclarationBase, PrimaryExpression { interface
1625 readonly kind: SyntaxKind.ClassExpression;
1628 export type ClassLikeDeclaration = ClassDeclaration | ClassExpression | StructDeclaration;
3778 …Clauses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]): ClassExpression;
3779ClassExpression, modifiers: readonly ModifierLike[] | undefined, name: Identifier | undefined, typ…
[all …]

123