[LC] rename lightClasses/lightClasses to lightClasses/lightClassByFqName

This commit is contained in:
Dmitrii Gridin
2022-12-22 13:36:16 +01:00
committed by teamcity
parent 81a939409a
commit 742c3de112
235 changed files with 6 additions and 6 deletions
@@ -0,0 +1,25 @@
// Primitives
interface Primitives {
fun int(i: Int): Int
val nullableBool: Boolean?
val nullableByte: Byte?
val nullableShort: Short?
val nullableChar: Char?
val nullableInt: Int?
val nullableLong: Long?
val nullableFloat: Float?
val nullableDouble: Double?
val bool: Boolean
val byte: Byte
val short: Short
val char: Char
val int: Int
val long: Long
val float: Float
val double: Double
}
// FIR_COMPARISON