We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
export default
1 parent fb7091f commit a01f80fCopy full SHA for a01f80f
src/index.ts
@@ -149,6 +149,8 @@ export async function run(configuration: Configuration) {
149
150
if (declaration.isKind(ts.SyntaxKind.Identifier)) {
151
identifier = declaration;
152
+ } else if (declaration.isKind(ts.SyntaxKind.ArrowFunction)) {
153
+ // TODO No ReferenceFindableNode/Identifier available?
154
} else if (
155
declaration.isKind(ts.SyntaxKind.FunctionDeclaration) ||
156
declaration.isKind(ts.SyntaxKind.ClassDeclaration) ||
0 commit comments