FIR: Support callable references partially

^KT-32725 In Progress
This commit is contained in:
Denis Zharkov
2019-10-28 14:47:27 +03:00
parent cdb2bb2b45
commit 006e475a99
25 changed files with 623 additions and 24 deletions
@@ -38,6 +38,7 @@ object StandardClassIds {
val KProperty = "KProperty".reflectId()
fun byName(name: String) = name.baseId()
fun reflectByName(name: String) = name.reflectId()
val primitiveArrayTypeByElementType: Map<ClassId, ClassId> = mutableMapOf<ClassId, ClassId>().apply {
fun addPrimitive(id: ClassId) {
@@ -55,4 +56,4 @@ object StandardClassIds {
}
val elementTypeByPrimitiveArrayType = primitiveArrayTypeByElementType.map { (k, v) -> v to k }.toMap()
}
}