FIR Java: reuse StandardClassIds

This commit is contained in:
Mikhail Glukhikh
2019-03-26 12:38:25 +03:00
parent a0fa9e6b48
commit 4213a4c7e2
2 changed files with 8 additions and 5 deletions
@@ -16,6 +16,7 @@ object StandardClassIds {
val Nothing = "Nothing".baseId()
val Any = "Any".baseId()
val Array = "Array".baseId()
val Boolean = "Boolean".baseId()
val Char = "Char".baseId()
@@ -30,4 +31,5 @@ object StandardClassIds {
val Float = "Float".baseId()
val Double = "Double".baseId()
fun byName(name: String) = name.baseId()
}