File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
packages/experimental-utils/src/ast-utils/eslint-utils Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ namespace ReferenceTracker {
83
83
node : TSESTree . Node ;
84
84
path : readonly string [ ] ;
85
85
type : ReferenceType ;
86
- entry : T ;
86
+ info : T ;
87
87
}
88
88
}
89
89
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ const getFunctionNameWithKind = eslintUtils.getFunctionNameWithKind as (
25
25
| TSESTree . FunctionDeclaration
26
26
| TSESTree . FunctionExpression
27
27
| TSESTree . ArrowFunctionExpression ,
28
+ sourceCode ?: TSESLint . SourceCode ,
28
29
) => string ;
29
30
30
31
/**
@@ -38,7 +39,8 @@ const getPropertyName = eslintUtils.getPropertyName as (
38
39
node :
39
40
| TSESTree . MemberExpression
40
41
| TSESTree . Property
41
- | TSESTree . MethodDefinition ,
42
+ | TSESTree . MethodDefinition
43
+ | TSESTree . PropertyDefinition ,
42
44
initialScope ?: TSESLint . Scope . Scope ,
43
45
) => string | null ;
44
46
You can’t perform that action at this time.
0 commit comments