Generate Js source map embed mode type

^KT-27301 In Progress
This commit is contained in:
Yahor Berdnikau
2022-08-30 11:45:31 +02:00
parent 626bd34319
commit c1ed683ed8
3 changed files with 48 additions and 0 deletions
@@ -0,0 +1,16 @@
// DO NOT EDIT MANUALLY!
// Generated by org/jetbrains/kotlin/generators/arguments/GenerateGradleOptions.kt
package org.jetbrains.kotlin.gradle.dsl
@Suppress("DEPRECATION")
enum class JsSourceMapEmbedMode (val mode: String) {
SOURCE_MAP_SOURCE_CONTENT_INLINING("inlining"),
SOURCE_MAP_SOURCE_CONTENT_NEVER("never"),
SOURCE_MAP_SOURCE_CONTENT_ALWAYS("always");
companion object {
fun fromMode(mode: String): JsSourceMapEmbedMode =
JsSourceMapEmbedMode.values().firstOrNull { it.mode == mode }
?: throw IllegalArgumentException("Unknown JS source map embed mode: $mode")
}
}