Add analysisFlags of LanguageVersionSettings to toString() method

This commit is contained in:
Dmitriy Novozhilov
2021-02-09 16:33:41 +03:00
committed by TeamCityServer
parent 7e59e083d3
commit a0007bf244
@@ -382,6 +382,9 @@ class LanguageVersionSettingsImpl @JvmOverloads constructor(
}
append(" $char$feature")
}
analysisFlags.forEach { (flag, value) ->
append(" $flag:$value")
}
}
override fun isPreRelease(): Boolean = languageVersion.isPreRelease() ||