[FIR generator] Use more type-safe field builders

This commit is contained in:
Sergej Jaskiewicz
2023-09-14 12:43:42 +02:00
committed by Space Team
parent 8be455649c
commit a909a28f29
5 changed files with 16 additions and 26 deletions
@@ -6,5 +6,9 @@
package org.jetbrains.kotlin.generators.tree
object StandardTypes {
val boolean = type<Boolean>()
val string = type<String>()
val int = type<Int>()
val collection = type<Collection<*>>()
val map = type<Map<*, *>>()
}