Introduce language feature: underscores in numeric literals

#KT-2964 Fixed
This commit is contained in:
Mikhail Zarechenskiy
2016-11-06 20:37:04 +03:00
parent a77290e572
commit 3df5efb236
10 changed files with 126 additions and 4 deletions
@@ -32,7 +32,8 @@ enum class LanguageFeature(val sinceVersion: LanguageVersion) {
InlineProperties(KOTLIN_1_1),
DestructuringLambdaParameters(KOTLIN_1_1),
SingleUnderscoreForParameterName(KOTLIN_1_1),
DslMarkersSupport(KOTLIN_1_1)
DslMarkersSupport(KOTLIN_1_1),
UnderscoresInNumericLiterals(KOTLIN_1_1)
;
val presentableText: String