Skip to content

Commit

Permalink
AA: bump Kotlin to 1.9.30-dev-1098
Browse files Browse the repository at this point in the history
  • Loading branch information
ting-yuan committed Aug 29, 2023
1 parent fcc1dae commit 6af6edb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ junit5Version=5.8.2
junitPlatformVersion=1.8.2
googleTruthVersion=1.1

aaKotlinBaseVersion=1.9.20-dev-9102
aakotlinBaseVersion=1.9.30-dev-1098
aaIntellijVersion=213.7172.25
aaGuavaVersion=29.0-jre
aaAsmVersion=9.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ import com.intellij.openapi.vfs.StandardFileSystems
import com.intellij.openapi.vfs.VirtualFile
import com.intellij.openapi.vfs.VirtualFileManager
import com.intellij.openapi.vfs.impl.jar.CoreJarFileSystem
import com.intellij.psi.PsiFile
import com.intellij.psi.PsiFileSystemItem
import com.intellij.psi.PsiJavaFile
import com.intellij.psi.PsiManager
Expand Down Expand Up @@ -262,7 +263,12 @@ class KotlinSymbolProcessing(
project.extensionArea, PsiTreeChangeListener.EP.name, PsiTreeChangeAdapter::class.java
)
return Triple(
StandaloneAnalysisAPISession(kotlinCoreProjectEnvironment, createPackagePartProvider),
StandaloneAnalysisAPISession(kotlinCoreProjectEnvironment, createPackagePartProvider) {
// This is only used by kapt4, which should query a provider, instead of have it passed here IMHO.
// kapt4's implementation is static, which may or may not work for us depending on future use cases.
// Let's implement it later if necessary.
TODO("Not implemented yet.")
},
kotlinCoreProjectEnvironment,
modules
)
Expand Down

0 comments on commit 6af6edb

Please sign in to comment.