Add language version 1.5

This commit is contained in:
Alexander Udalov
2020-01-20 13:51:39 +01:00
parent 8e2b76698a
commit b6feec4115
3 changed files with 5 additions and 3 deletions
@@ -240,7 +240,9 @@ enum class LanguageVersion(val major: Int, val minor: Int) : DescriptionAware {
KOTLIN_1_1(1, 1),
KOTLIN_1_2(1, 2),
KOTLIN_1_3(1, 3),
KOTLIN_1_4(1, 4);
KOTLIN_1_4(1, 4),
KOTLIN_1_5(1, 5),
;
val isStable: Boolean
get() = this <= LATEST_STABLE