Add support for gradle option useFir and appropriate property...

`kotlin.useFir`
This commit is contained in:
Ilya Chernikov
2021-03-22 12:52:06 +01:00
parent 3400911d97
commit a11f6d2e50
8 changed files with 52 additions and 2 deletions
@@ -17,4 +17,10 @@ interface KotlinCommonOptions : org.jetbrains.kotlin.gradle.dsl.KotlinCommonToo
* Default value: null
*/
var languageVersion: kotlin.String?
/**
* Compile using Front-end IR. Warning: this feature is far from being production-ready
* Default value: false
*/
var useFir: kotlin.Boolean
}