Skip to content

Commit

Permalink
Merge pull request #62 from sourcegraph/nsc/kotlin-1.8-fix
Browse files Browse the repository at this point in the history
fix updating to kotlin 1.8
  • Loading branch information
olafurpg committed Jul 20, 2023
2 parents 8046eab + 80cbcc4 commit dc4dcb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ open class Bird : Animal {
// ^^^ reference semanticdb maven . . kotlin/Int#
get() = 42
// ^^^ definition semanticdb maven . . snapshots/Bird#getFavoriteNumber().
// documentation ```kt\npublic open fun <get-favoriteNumber>(): kotlin.Int\n```
// documentation ```kt\npublic open fun `<get-favoriteNumber>`(): kotlin.Int\n```

override fun sound(): String {
// ^^^^^ definition semanticdb maven . . snapshots/Bird#sound().
Expand All @@ -68,7 +68,7 @@ class Seagull : Bird() {
// ^^^ reference semanticdb maven . . kotlin/Int#
get() = 1337
// ^^^ definition semanticdb maven . . snapshots/Seagull#getFavoriteNumber().
// documentation ```kt\npublic open fun <get-favoriteNumber>(): kotlin.Int\n```
// documentation ```kt\npublic open fun `<get-favoriteNumber>`(): kotlin.Int\n```
override fun sound(): String {
// ^^^^^ definition semanticdb maven . . snapshots/Seagull#sound().
// documentation ```kt\npublic open fun sound(): kotlin.String\n```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class SemanticdbTextDocumentBuilder(
// first is the class itself
.drop(1)
.filter {
it.fqnString !in isIgnoredSuperClass
it.fqnString(false) !in isIgnoredSuperClass
}
.flatMap { cache[it] }
.map { it.toString() }
Expand Down

0 comments on commit dc4dcb8

Please sign in to comment.