Skip to content

Commit

Permalink
UPDATE_KOTLIN_VERSION: 2.0.0-dev-10501
Browse files Browse the repository at this point in the history
(cherry picked from commit 8828398)
  • Loading branch information
neetopia committed Jan 18, 2024
1 parent c14a671 commit 3fa43cd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Copied from kotlinc
org.gradle.jvmargs=-Duser.country=US -Dkotlin.daemon.jvm.options=-Xmx2200m -Dfile.encoding=UTF-8

kotlinBaseVersion=2.0.0-dev-9013
kotlinBaseVersion=2.0.0-dev-10501
agpBaseVersion=7.2.0
intellijVersion=213.7172.25
junitVersion=4.13.1
junit5Version=5.8.2
junitPlatformVersion=1.8.2
googleTruthVersion=1.1

aaKotlinBaseVersion=2.0.0-dev-9013
aaKotlinBaseVersion=2.0.0-dev-10501
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 @@ -19,9 +19,10 @@ import org.jetbrains.kotlin.psi.KtScript
import org.jetbrains.kotlin.psi.KtTypeAlias

class IncrementalKotlinDeclarationProvider(var del: KotlinDeclarationProvider) : KotlinDeclarationProvider() {
override fun computePackageSetWithTopLevelCallableDeclarations(): Set<String>? {
return del.computePackageSetWithTopLevelCallableDeclarations()
}
override val hasSpecificCallablePackageNamesComputation: Boolean
get() = del.hasSpecificCallablePackageNamesComputation
override val hasSpecificClassifierPackageNamesComputation: Boolean
get() = del.hasSpecificClassifierPackageNamesComputation

override fun findFilesForFacade(facadeFqName: FqName): Collection<KtFile> {
return del.findFilesForFacade(facadeFqName)
Expand Down
2 changes: 0 additions & 2 deletions kotlin-analysis-api/testData/parent.kt
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@
// parent of Enum: Enum<(RGB..RGB?)>
// parent of Enum<(RGB..RGB?)>: RGB
// parent of RGB: File: B.java
// parent of RGB: synthetic constructor for RGB
// parent of synthetic constructor for RGB: RGB
// parent of R: RGB
// parent of G: RGB
// parent of B: RGB
Expand Down
1 change: 0 additions & 1 deletion kotlin-analysis-api/testData/signatureMapper.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
// intParam: I
// <init>: (I)V
// LJavaEnum;
// <init>: ()V
// VAL1: LJavaEnum;
// VAL2: LJavaEnum;
// DEFAULT: LJavaEnum;
Expand Down

0 comments on commit 3fa43cd

Please sign in to comment.