Skip to content

Commit 285b72b

Browse files
committed
Fix navigation to constructors
1 parent e416950 commit 285b72b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/platform/mixin/reference/MixinSelectors.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ interface MixinSelector {
118118
}
119119

120120
fun matchMethod(method: PsiMethod, qualifier: PsiClass): Boolean {
121-
if (!canEverMatch(method.name)) {
121+
if (!canEverMatch(method.internalName)) {
122122
return false
123123
}
124124
val fqn = qualifier.fullQualifiedName ?: return false

0 commit comments

Comments
 (0)