Skip to content

Commit 91dd99d

Browse files
committed
Kotlin: Fixes for 2.0.20-Beta2
1 parent 06cc74f commit 91dd99d

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

java/kotlin-extractor/src/main/kotlin/KotlinUsesExtractor.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1511,6 +1511,8 @@ open class KotlinUsesExtractor(
15111511
}
15121512
}
15131513
}
1514+
is IrDynamicType -> {}
1515+
is IrErrorType -> {}
15141516
}
15151517
return t
15161518
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package com.github.codeql.utils.versions
2+
3+
import org.jetbrains.kotlin.ir.types.IrSimpleType
4+
5+
fun getKotlinType(s: IrSimpleType) = s.originalKotlinType

0 commit comments

Comments
 (0)