This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix] project cache correctly deserializes kotlin modules
fixup! [fix] project cache correctly deserializes kotlin modules [fix] project cache correctly deserializes kotlin modules Co-authored-by: Xuan Son Trinh <[email protected]> Merge-request: BAZEL-MR-579 Merged-by: Marcin Abramowicz <[email protected]>
- Loading branch information
Showing
3 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
server/src/main/kotlin/org/jetbrains/bsp/bazel/server/sync/languages/kotlin/KotlinModule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
package org.jetbrains.bsp.bazel.server.sync.languages.kotlin | ||
|
||
import ch.epfl.scala.bsp4j.BuildTargetIdentifier | ||
import org.jetbrains.bsp.bazel.server.sync.languages.LanguageData | ||
import org.jetbrains.bsp.bazel.server.sync.languages.java.JavaModule | ||
import org.jetbrains.bsp.bazel.server.sync.model.Label | ||
|
||
data class KotlinModule( | ||
val languageVersion: String, | ||
val apiVersion: String, | ||
val kotlincOptions: List<String>, | ||
val associates: List<BuildTargetIdentifier>, | ||
val associates: List<Label>, | ||
val javaModule: JavaModule? | ||
) : LanguageData |