File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
semanticdb-kotlinc/src/main/kotlin/com/sourcegraph/semanticdb_kotlinc Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import groovy.lang.Closure
44import org.gradle.jvm.toolchain.internal.CurrentJvmToolchainSpec
55
66plugins {
7- kotlin(" jvm" ) version " 2.1.0 "
7+ kotlin(" jvm" ) version " 2.1.20 "
88 id(" com.github.johnrengelman.shadow" ) version " 8.1.1"
99 id(" com.palantir.git-version" ) version " 3.1.0"
1010 id(" io.github.gradle-nexus.publish-plugin" ) version " 1.1.0"
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ class SemanticdbTextDocumentBuilder(
153153 propertyAccessorRenderer = null ,
154154 callArgumentsRenderer = FirCallNoArgumentsRenderer (),
155155 modifierRenderer = FirAllModifierRenderer (),
156- valueParameterRenderer = FirValueParameterRendererForReadability (),
156+ callableSignatureRenderer = FirCallableSignatureRendererForReadability (),
157157 declarationRenderer = FirDeclarationRenderer (" local " ),
158158 )
159159 val renderOutput = renderer.renderElementAsString(element)
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ class GlobalSymbolsCache(testing: Boolean = false) : Iterable<Symbol> {
118118 when (symbol) {
119119 is FirTypeParameterSymbol ->
120120 return getSymbol(symbol.containingDeclarationSymbol, locals)
121- is FirValueParameterSymbol -> return getSymbol(symbol.containingFunctionSymbol , locals)
121+ is FirValueParameterSymbol -> return getSymbol(symbol.containingDeclarationSymbol , locals)
122122 is FirCallableSymbol -> {
123123 val session = symbol.fir.moduleData.session
124124 return symbol.getContainingSymbol(session)?.let { getSymbol(it, locals) }
You can’t perform that action at this time.
0 commit comments