File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
compiler-plugin/src/main/kotlin/com/google/devtools/ksp Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -121,4 +121,8 @@ subprojects {
121121 }
122122 )
123123 }
124+
125+ tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > ().configureEach {
126+ compilerOptions.freeCompilerArgs.add(" -Xskip-prerelease-check" )
127+ }
124128}
Original file line number Diff line number Diff line change @@ -411,7 +411,7 @@ class IncrementalContext(
411411
412412 logSourceToOutputs(outputs, sourceToOutputs)
413413
414- sourceToOutputsMap.flush(false )
414+ sourceToOutputsMap.flush()
415415 }
416416
417417 private fun updateOutputs (outputs : Set <File >, cleanOutputs : Collection <File >) {
@@ -474,15 +474,15 @@ class IncrementalContext(
474474 update(symbolsMap, updatedSymbols)
475475 remove(symbolsMap, removed)
476476 } else {
477- symbolsMap.clean ()
477+ symbolsMap.clear ()
478478 update(symbolsMap, updatedSymbols)
479479
480- sealedMap.clean ()
480+ sealedMap.clear ()
481481 update(sealedMap, updatedSealed)
482482 }
483- symbolsMap.flush(false )
483+ symbolsMap.flush()
484484 symbolsMap.close()
485- sealedMap.flush(false )
485+ sealedMap.flush()
486486 sealedMap.close()
487487 }
488488
Original file line number Diff line number Diff line change 11# Copied from kotlinc
22org.gradle.jvmargs =-Duser.country=US -Dkotlin.daemon.jvm.options=-Xmx2200m -Dfile.encoding=UTF-8
33
4- kotlinBaseVersion =2.0.0-dev-4562
4+ kotlinBaseVersion =2.0.0-dev-6573
55agpBaseVersion =7.0.0
66intellijVersion =213.7172.25
77junitVersion =4.13.1
You can’t perform that action at this time.
0 commit comments