1
0
mirror of https://github.com/chylex/IntelliJ-Inspection-Lens.git synced 2025-04-23 03:15:46 +02:00

Configure Kotlin compiler to use invokedynamic for lambdas

This commit is contained in:
chylex 2025-01-15 01:36:32 +01:00
parent 0bc85fd69b
commit 3aeeb32bef
Signed by: chylex
SSH Key Fingerprint: SHA256:WqM8X/1DDn11LbYM0H5wsqZUjbcKxVsic37L+ERcF4o

View File

@ -39,7 +39,8 @@ kotlin {
compilerOptions {
freeCompilerArgs = listOf(
"-X" + "jvm-default=all"
"-X" + "jvm-default=all",
"-X" + "lambdas=indy"
)
}
}