Skip to content

Commit

Permalink
Kotlin: Fixes for 2.0.20-Beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
igfoo committed Jul 16, 2024
1 parent 06cc74f commit 91dd99d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions java/kotlin-extractor/src/main/kotlin/KotlinUsesExtractor.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1511,6 +1511,8 @@ open class KotlinUsesExtractor(
}
}
}
is IrDynamicType -> {}
is IrErrorType -> {}
}
return t
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.github.codeql.utils.versions

import org.jetbrains.kotlin.ir.types.IrSimpleType

fun getKotlinType(s: IrSimpleType) = s.originalKotlinType

0 comments on commit 91dd99d

Please sign in to comment.