/third_party/typescript_eslint/packages/eslint-plugin/src/rules/ |
D | no-useless-constructor.ts | 14 function checkAccessibility(node: TSESTree.MethodDefinition): boolean { 37 function checkParams(node: TSESTree.MethodDefinition): boolean { 65 MethodDefinition(node): void { 73 rules.MethodDefinition(node);
|
D | unified-signatures.ts | 37 type OverloadNode = MethodDefinition | SignatureDefinition; 50 type MethodDefinition = alias 51 | TSESTree.MethodDefinition 149 (overloads[0] as MethodDefinition).value || overloads[0]; 151 (overloads[1] as MethodDefinition).value || overloads[1]; 163 const signature0 = (a as MethodDefinition).value || a; 164 const signature1 = (b as MethodDefinition).value || b; 545 MethodDefinition(node): void { 578 ((node as MethodDefinition).computed ? '0' : '1') + 579 ((node as MethodDefinition).static ? '0' : '1') + [all …]
|
D | prefer-readonly.ts | 22 AST_NODE_TYPES.MethodDefinition, 140 ): node is TSESTree.MethodDefinition { 142 node.type === AST_NODE_TYPES.MethodDefinition && 152 | TSESTree.MethodDefinition, 233 | TSESTree.MethodDefinition, 248 | TSESTree.MethodDefinition,
|
D | no-dupe-class-members.ts | 27 MethodDefinition(node): void { 36 return rules.MethodDefinition(node);
|
D | explicit-member-accessibility.ts | 115 methodDefinition: TSESTree.MethodDefinition, 165 | TSESTree.MethodDefinition 279 MethodDefinition: checkMethodAccessibilityModifier,
|
D | promise-function-async.ts | 98 | TSESTree.MethodDefinition 123 node.parent.type === AST_NODE_TYPES.MethodDefinition) &&
|
D | no-empty-function.ts | 104 parent?.type === AST_NODE_TYPES.MethodDefinition && 132 node.parent?.type === AST_NODE_TYPES.MethodDefinition
|
D | explicit-module-boundary-types.ts | 233 node.type === AST_NODE_TYPES.MethodDefinition || 351 case AST_NODE_TYPES.MethodDefinition: 433 node.parent?.type === AST_NODE_TYPES.MethodDefinition && 437 node.parent?.type === AST_NODE_TYPES.MethodDefinition) &&
|
D | class-literal-property-style.ts | 61 MethodDefinition(node: TSESTree.MethodDefinition): void {
|
D | no-extra-semi.ts | 28 rules.MethodDefinition(node as never);
|
D | lines-between-class-members.ts | 54 node.type === AST_NODE_TYPES.MethodDefinition &&
|
D | member-ordering.ts | 176 case AST_NODE_TYPES.MethodDefinition: 213 case AST_NODE_TYPES.MethodDefinition:
|
/third_party/typescript_eslint/packages/experimental-utils/src/ast-utils/ |
D | predicates.ts | 153 AST_NODE_TYPES.MethodDefinition, 172 ): node is TSESTree.MethodDefinition { 174 node?.type === AST_NODE_TYPES.MethodDefinition && 184 ): node is TSESTree.MethodDefinition | TSESTree.Property { 187 (node.type === AST_NODE_TYPES.MethodDefinition ||
|
/third_party/typescript_eslint/packages/eslint-plugin/typings/ |
D | eslint-rules.d.ts | 216 MethodDefinition: RuleFunction<TSESTree.MethodDefinition>; 233 MethodDefinition(node: TSESTree.MethodDefinition): void; 491 MethodDefinition(node: TSESTree.MethodDefinition): void; 636 MethodDefinition(node: TSESTree.MethodDefinition): void;
|
/third_party/flatbuffers/tests/ |
D | monster_test_grpc.d.ts | 14 interface IMonsterStorageService_IStore extends grpc.MethodDefinition<MyGame_Example_Monster, MyGam… 24 interface IMonsterStorageService_IRetrieve extends grpc.MethodDefinition<MyGame_Example_Stat, MyGam… 34 interface IMonsterStorageService_IGetMaxHitPoint extends grpc.MethodDefinition<MyGame_Example_Monst… 44 interface IMonsterStorageService_IGetMinMaxHitPoints extends grpc.MethodDefinition<MyGame_Example_M…
|
/third_party/flatbuffers/grpc/examples/ts/greeter/src/ |
D | greeter_grpc.d.ts | 12 interface IGreeterService_ISayHello extends grpc.MethodDefinition<models_HelloRequest, models_Hello… 22 interface IGreeterService_ISayManyHellos extends grpc.MethodDefinition<models_HelloRequest, models_…
|
/third_party/typescript_eslint/packages/eslint-plugin/src/util/ |
D | explicitReturnTypeUtils.ts | 42 (parent.type === AST_NODE_TYPES.MethodDefinition || 277 parent.type !== AST_NODE_TYPES.MethodDefinition &&
|
/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/ |
D | no-useless-constructor.test.ts | 15 type: AST_NODE_TYPES.MethodDefinition,
|
/third_party/typescript_eslint/packages/scope-manager/src/referencer/ |
D | Referencer.ts | 339 | TSESTree.MethodDefinition 350 const isMethodDefinition = node.type === AST_NODE_TYPES.MethodDefinition; 613 protected MethodDefinition(node: TSESTree.MethodDefinition): void { method in Referencer
|
/third_party/typescript_eslint/packages/typescript-estree/tests/snapshots/typescript/basics/ |
D | class-with-optional-methods.src.ts.shot | 46 "type": "MethodDefinition", 108 "type": "MethodDefinition", 205 "type": "MethodDefinition",
|
D | class-with-optional-computed-method.src.ts.shot | 384 "type": "MethodDefinition", 446 "type": "MethodDefinition", 526 "type": "MethodDefinition", 589 "type": "MethodDefinition", 669 "type": "MethodDefinition", 732 "type": "MethodDefinition", 848 "type": "MethodDefinition", 964 "type": "MethodDefinition", 1045 "type": "MethodDefinition",
|
D | class-with-method.src.ts.shot | 45 "type": "MethodDefinition", 157 "type": "MethodDefinition", 291 "type": "MethodDefinition",
|
/third_party/typescript_eslint/packages/experimental-utils/src/ast-utils/eslint-utils/ |
D | astUtilities.ts | 41 | TSESTree.MethodDefinition,
|
/third_party/typescript_eslint/packages/types/src/ |
D | ts-estree.ts | 201 | MethodDefinition 318 | MethodDefinition 418 export type MethodDefinition = alias 432 | MethodDefinition 1125 type: AST_NODE_TYPES.MethodDefinition; 1130 type: AST_NODE_TYPES.MethodDefinition;
|
/third_party/typescript_eslint/packages/typescript-estree/tests/snapshots/javascript/classes/ |
D | class-static-methods-and-accessor-properties.src.js.shot | 45 "type": "MethodDefinition", 123 "type": "MethodDefinition", 201 "type": "MethodDefinition",
|