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.
Object
1 parent ac9583b commit 41ff225Copy full SHA for 41ff225
src/main/kotlin/platform/mixin/util/AsmDfaUtil.kt
@@ -146,6 +146,9 @@ object AsmDfaUtil {
146
if (type == currentClass) {
147
return currentSuperClass
148
}
149
+ if (type.sort == Type.ARRAY) {
150
+ return Type.getType(Any::class.java)
151
+ }
152
val elementFactory = JavaPsiFacade.getElementFactory(project)
153
val psiType = type.toPsiType(elementFactory) as? PsiClassType ?: return null
154
val clazz = psiType.resolve() ?: return null
0 commit comments