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
4
4
import org.gradle.jvm.toolchain.internal.CurrentJvmToolchainSpec
5
5
6
6
plugins {
7
- kotlin(" jvm" ) version " 2.1.0 "
7
+ kotlin(" jvm" ) version " 2.1.20 "
8
8
id(" com.github.johnrengelman.shadow" ) version " 8.1.1"
9
9
id(" com.palantir.git-version" ) version " 3.1.0"
10
10
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(
153
153
propertyAccessorRenderer = null ,
154
154
callArgumentsRenderer = FirCallNoArgumentsRenderer (),
155
155
modifierRenderer = FirAllModifierRenderer (),
156
- valueParameterRenderer = FirValueParameterRendererForReadability (),
156
+ callableSignatureRenderer = FirCallableSignatureRendererForReadability (),
157
157
declarationRenderer = FirDeclarationRenderer (" local " ),
158
158
)
159
159
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> {
118
118
when (symbol) {
119
119
is FirTypeParameterSymbol ->
120
120
return getSymbol(symbol.containingDeclarationSymbol, locals)
121
- is FirValueParameterSymbol -> return getSymbol(symbol.containingFunctionSymbol , locals)
121
+ is FirValueParameterSymbol -> return getSymbol(symbol.containingDeclarationSymbol , locals)
122
122
is FirCallableSymbol -> {
123
123
val session = symbol.fir.moduleData.session
124
124
return symbol.getContainingSymbol(session)?.let { getSymbol(it, locals) }
You can’t perform that action at this time.
0 commit comments