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 {
4444// ^^^ reference semanticdb maven . . kotlin/Int#
4545 get() = 42
4646// ^^^ 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```
4848
4949 override fun sound (): String {
5050// ^^^^^ definition semanticdb maven . . snapshots/Bird#sound().
@@ -68,7 +68,7 @@ class Seagull : Bird() {
6868// ^^^ reference semanticdb maven . . kotlin/Int#
6969 get() = 1337
7070// ^^^ 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```
7272 override fun sound (): String {
7373// ^^^^^ definition semanticdb maven . . snapshots/Seagull#sound().
7474// 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(
8686 // first is the class itself
8787 .drop(1 )
8888 .filter {
89- it.fqnString !in isIgnoredSuperClass
89+ it.fqnString( false ) !in isIgnoredSuperClass
9090 }
9191 .flatMap { cache[it] }
9292 .map { it.toString() }
You can’t perform that action at this time.
0 commit comments