Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a92e20e commit 055e9b7Copy full SHA for 055e9b7
1 file changed
java/kotlin-extractor/src/main/kotlin/KotlinExtractorExtension.kt
@@ -509,7 +509,7 @@ class X {
509
}
510
*/
511
512
- (s.isArray() || s.isNullableArray()) && s.arguments.isNotEmpty() -> {
+ ((s.isArray() || s.isNullableArray()) && s.arguments.isNotEmpty()) || s.isPrimitiveArray() -> {
513
// TODO: fix this, this is only a dummy implementation to let the tests pass
514
val elementType = useType(s.getArrayElementType(pluginContext.irBuiltIns))
515
val id = tw.getLabelFor<DbArray>("@\"array;1;{$elementType}\"")
0 commit comments