[JS IR] Add flag with writing base class to metadata

This commit is contained in:
Ilya Goncharov
2021-05-11 12:04:40 +03:00
committed by TeamCityServer
parent 228c6879f5
commit 18cb8a1b9b
5 changed files with 14 additions and 2 deletions
@@ -154,6 +154,9 @@ class K2JSCompilerArguments : CommonCompilerArguments() {
@Argument(value = "-Xir-legacy-property-access", description = "Force property access via JS properties (requires -Xir-export-all)")
var irLegacyPropertyAccess: Boolean by FreezableVar(false)
@Argument(value = "-Xir-base-class-in-metadata", description = "Write base class into metadata")
var irBaseClassInMetadata: Boolean by FreezableVar(false)
@Argument(value = "-Xir-per-module", description = "Splits generated .js per-module")
var irPerModule: Boolean by FreezableVar(false)