Skip to content

Commit

Permalink
fix(javascript): fix for siganture issue
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Sep 29, 2024
1 parent c646e4c commit 94ebee5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class JavaScriptMethodStructureProvider : MethodStructureProvider {
if (gatherUsages) JavaScriptClassStructureProvider.findUsages(psiElement as PsiNameIdentifierOwner) else emptyList()

return MethodStructure(
psiElement, psiElement.text, psiElement.name!!, functionSignature, containingClass, languageDisplayName,
psiElement, psiElement.text, psiElement.name!!, psiElement.name + functionSignature, containingClass, languageDisplayName,
returnTypeText, parameterNames, includeClassContext, usages
)
}
Expand Down

0 comments on commit 94ebee5

Please sign in to comment.