diff --git a/compiler/src/dotty/tools/dotc/util/Signatures.scala b/compiler/src/dotty/tools/dotc/util/Signatures.scala index 5fae39a20de4..5bb79642278d 100644 --- a/compiler/src/dotty/tools/dotc/util/Signatures.scala +++ b/compiler/src/dotty/tools/dotc/util/Signatures.scala @@ -13,6 +13,7 @@ import core.NameKinds import core.Types._ import core.Symbols.NoSymbol import interactive.Interactive +import transform.SymUtils.isLocalToBlock import util.Spans.Span import reporting._ @@ -178,7 +179,8 @@ object Signatures { (alternativeIndex, alternatives) case _ => val funSymbol = fun.symbol - val alternatives = funSymbol.owner.info.member(funSymbol.name).alternatives + val alternatives = if funSymbol.isLocalToBlock then List(funSymbol.denot) else + funSymbol.owner.info.member(funSymbol.name).alternatives val alternativeIndex = alternatives.map(_.symbol).indexOf(funSymbol) max 0 (alternativeIndex, alternatives) diff --git a/presentation-compiler/test/dotty/tools/pc/tests/signaturehelp/SignatureHelpSuite.scala b/presentation-compiler/test/dotty/tools/pc/tests/signaturehelp/SignatureHelpSuite.scala index 0b3112228b83..6d8e6abca0a1 100644 --- a/presentation-compiler/test/dotty/tools/pc/tests/signaturehelp/SignatureHelpSuite.scala +++ b/presentation-compiler/test/dotty/tools/pc/tests/signaturehelp/SignatureHelpSuite.scala @@ -702,3 +702,58 @@ class SignatureHelpSuite extends BaseSignatureHelpSuite: | ^^^^^^^^^^^ |""".stripMargin ) + + @Test def `local-method` = + check( + """ + |object Main { + | def foo() = { + | def deployment( + | fst: String, + | snd: Int = 1, + | ): Option[Int] = ??? + | val abc = deployment(@@) + | } + |} + |""".stripMargin, + """|deployment(fst: String, snd: Int): Option[Int] + | ^^^^^^^^^^^ + |""".stripMargin, + ) + + @Test def `local-method2` = + check( + """ + |object Main { + | val foo = { + | def deployment( + | fst: String, + | snd: Int = 1, + | ): Option[Int] = ??? + | deployment(@@) + | } + |} + |""".stripMargin, + """|deployment(fst: String, snd: Int): Option[Int] + | ^^^^^^^^^^^ + |""".stripMargin, + ) + + @Test def `local-method3` = + check( + """ + |object Main { + | def foo = { + | object a { + | def apply(a: Int): Int = a + | def apply(b: String): String = b + | a(""@@) + | } + | } + |} + |""".stripMargin, + """|apply(b: String): String + | ^^^^^^^^^ + |apply(a: Int): Int + |""".stripMargin + ) \ No newline at end of file