File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
minimized/src/generatedSnapshots/resources/semanticdb-kotlinc/minimized/src/main/kotlin/snapshots
src/main/kotlin/com/sourcegraph/semanticdb_kotlinc Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ open class Bird : Animal {
44
44
// ^^^ reference semanticdb maven . . kotlin/Int#
45
45
get() = 42
46
46
// ^^^ definition semanticdb maven . . snapshots/Bird#getFavoriteNumber().
47
- // documentation ```kt\npublic open fun <get-favoriteNumber>(): kotlin.Int\n```
47
+ // documentation ```kt\npublic open fun ` <get-favoriteNumber>` (): kotlin.Int\n```
48
48
49
49
override fun sound (): String {
50
50
// ^^^^^ definition semanticdb maven . . snapshots/Bird#sound().
@@ -68,7 +68,7 @@ class Seagull : Bird() {
68
68
// ^^^ reference semanticdb maven . . kotlin/Int#
69
69
get() = 1337
70
70
// ^^^ definition semanticdb maven . . snapshots/Seagull#getFavoriteNumber().
71
- // documentation ```kt\npublic open fun <get-favoriteNumber>(): kotlin.Int\n```
71
+ // documentation ```kt\npublic open fun ` <get-favoriteNumber>` (): kotlin.Int\n```
72
72
override fun sound (): String {
73
73
// ^^^^^ definition semanticdb maven . . snapshots/Seagull#sound().
74
74
// documentation ```kt\npublic open fun sound(): kotlin.String\n```
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ class SemanticdbTextDocumentBuilder(
86
86
// first is the class itself
87
87
.drop(1 )
88
88
.filter {
89
- it.fqnString !in isIgnoredSuperClass
89
+ it.fqnString( false ) !in isIgnoredSuperClass
90
90
}
91
91
.flatMap { cache[it] }
92
92
.map { it.toString() }
You can’t perform that action at this time.
0 commit comments