Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect goto definition for overloaded apply in another file #4769

Closed
ckipp01 opened this issue Dec 24, 2022 · 8 comments
Closed

Incorrect goto definition for overloaded apply in another file #4769

ckipp01 opened this issue Dec 24, 2022 · 8 comments
Assignees
Labels
bug Something that is making a piece of functionality unusable fixed-upstream Tag a ticket with this when a fix upstream has been completed and we can now address the ticket navigation Related to goto definition, find references, open symbol Scala 3 Generic ticket relating to Scala 3
Milestone

Comments

@ckipp01
Copy link
Member

ckipp01 commented Dec 24, 2022

Describe the bug

This might be a result of the fix for #4255 and also might be a duplicate of #4484, but in the following scenario:

// Main.scala
object Main:
  List(1).map(Foo.apply)
// Foo.scala
case class Foo(a: Int, b: Int)

object Foo:
  def apply(a: Int): Foo = Foo(a, 1)

When you trigger a goto definition on the explicit apply in Main.scala it brings you to the case class Foo instead of the overloaded apply definition in object Foo

Expected behavior

In this scenario I'd expect it to bring you to def apply in object Foo.

NOTE that if they are in the same file, it works as expected. It's only a problem when they are in a different file.

Operating system

macOS

Editor/Extension

Nvim (nvim-metals)

Version of Metals

0.11.9+234-2d64131d-SNAPSHOT

Extra context or search terms

No response

@tgodzik tgodzik added bug Something that is making a piece of functionality unusable navigation Related to goto definition, find references, open symbol labels Dec 27, 2022
@tgodzik tgodzik added this to To do in Metals Issue Board Dec 27, 2022
@tgodzik tgodzik moved this from To do to In progress in Metals Issue Board Dec 30, 2022
@tgodzik tgodzik moved this from In progress to To do in Metals Issue Board Jan 18, 2023
@kasiaMarek kasiaMarek assigned kasiaMarek and unassigned kasiaMarek Jan 27, 2023
@kasiaMarek kasiaMarek added the upstream-fix-needed Waiting on a fix upstream label Jan 30, 2023
@kasiaMarek
Copy link
Contributor

case class Foo(a: Int, b: Int)

object Foo {
  def apply(a: Int): Foo = Foo(a, 1)
 }

In SemanticDB the synthetic apply is added in companion object on different position with regard to other methods in Scala 2 and 3:

  • for Scala 3 it's added at the begging
_empty_/Foo.apply(). => method apply(a: Int, b: Int): Foo
_empty_/Foo.apply(+1). => method apply(a: Int): Foo
  • for Scala 2 it's added at the end
_empty_/Foo.apply(). => method apply(a: Int): Foo
_empty_/Foo.apply(+1). => method apply(a: Int, b: Int): Foo

The indexing in ScalaMtags is compatible with Scala 2, thus we see THIS BUG in Scala 3.

I created a workaround in the linked PR for Scala 3 dialects, so the indexing is compatible with SemanticDB. However, this is insufficient and won't work for projects that use both Scala 2 and Scala 3.

We need an upstream-fix of the SementicDB inconsistency.

@tanishiking
Copy link
Member

I can take a look at the SemanticDB part in Scala3 👍, but I don't have time this month, and going to check in March.

@tanishiking
Copy link
Member

I will take a look :)

@tanishiking tanishiking self-assigned this Mar 9, 2023
@tanishiking tanishiking added the Scala 3 Generic ticket relating to Scala 3 label Mar 9, 2023
@tanishiking
Copy link
Member

tanishiking commented Mar 9, 2023

⚠️ The theory in this comment wasn't correct, skip it ⚠️

It looks like the problem is that Metals is looking for an apply symbol with the wrong disambiguator In Scala3.
So the problem might be a SemanticDB in call-site, instead of

// Main.scala
object Main extends App {
  List(1.toString).map(Foo.apply)
}

// Foo.scala
case class Foo(a: Int)

object Foo {
  def apply(a: String): Foo = Foo(a.toInt)
}

In this case, we should jump from Foo.appl@y to the def apply(a: String): Foo, but we jump to case class Foo(a: Int) (in Scala3).

In this setting, Scala3 generate the following SemanticDB, and it generates correct symbol (and occurrences) with right disambiguator.
Why we jump to wrong apply method then? My hunch is, Metals wrongly convert it for synthetic apply method (since Scala3 anyway generates Synthetics apply) here

private def syntheticApplyOccurrence(
queryPositionOpt: Option[semanticdb.Range],
snapshot: TextDocument,
) = {
snapshot.synthetics.collectFirst {
case Synthetic(
Some(range),
SelectTree(_: OriginalTree, Some(IdTree(symbol))),
)
if queryPositionOpt
.exists(queryPos => range == queryPos) =>
SymbolOccurrence(Some(range), symbol, SymbolOccurrence.Role.REFERENCE)
}
}
nevermind, this shouldn't be an issue since we combine the result.

# Main.scala
Occurrences:
...
[3:23..3:26) => hello/Foo.
[3:27..3:32) => hello/Foo.apply(+1).

Synthetics:
[3:2..3:6) => *.apply[String]
[3:2..3:22) => *[Foo]

# Foo.scala
Symbols:
...
hello/Foo.apply(). => method apply(a: Int): Foo
...
hello/Foo.apply(+1). => method apply(a: String): Foo
outdated

The wired thing is,

when we have

// Main.scala
object Main extends App {
  List(1).map(Foo.apply)
}

Foo.apply jump to def apply(a: String): Foo while it should jump to case class Foo(a: Int) 🤔

I'll keep taking a look

@tanishiking
Copy link
Member

tanishiking commented Mar 9, 2023

Ah, ok so the problem is indeed GlobalSymbolIndex#definitions returns
the wrong SymbolDefinition for the right Symbol string here


Indeed the mtags indexer seems the culprit 👀

Now, I think I'm on the same page as @kasiaMarek

@tanishiking
Copy link
Member

What we should do is making the disambiguator compatible with mtags indexer and SemanticDB as @kasiaMarek tried to do in #4914

But, is it possible? Is disambiguators are determined syntactically? (otherwise, it's not possible to align mtags indexer and SemanticDB generated by compiler because former is based on parser, and latter knows the all semantic information).
According to the scalameta specification, it should be possible: they say

https://scalameta.org/docs/semanticdb/specification.html#symbol-1

Empty string for the definition that appears first.
+1 for the definition that appears second.
+2 for the definition that appears third.

So, if we follow the specification, we should fix the SemanticDB plugin for Scala2, instead of Scala3.

Of course, we should make sure Scala3 compiler, mtags indexers for all dialects properly follow the specifications around disambiguator.

@tgodzik
Copy link
Contributor

tgodzik commented Mar 16, 2023

So, if we follow the specification, we should fix the SemanticDB plugin for Scala2, instead of Scala3.

Of course, we should make sure Scala3 compiler, mtags indexers for all dialects properly follow the specifications around disambiguator.

I think it's not clear for synthetic applies, since it doesn't appear in the code at all. We should make that more clear in the definition and it might be easier to change the Scala 3 compiler instead since the Scala 2 behaviour might be usedalready in a number of places.

@kasiaMarek kasiaMarek added fixed-upstream Tag a ticket with this when a fix upstream has been completed and we can now address the ticket and removed upstream-fix-needed Waiting on a fix upstream labels Dec 8, 2023
@tgodzik tgodzik moved this from To do to In progress in Metals Issue Board Dec 13, 2023
@kasiaMarek
Copy link
Contributor

Works with 3.4.0-RC1-bin-20231223-938d405-NIGHTLY.

Metals Issue Board automation moved this from In progress to Done Dec 27, 2023
@kasiaMarek kasiaMarek added this to the Metals v1.2.1 milestone Feb 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something that is making a piece of functionality unusable fixed-upstream Tag a ticket with this when a fix upstream has been completed and we can now address the ticket navigation Related to goto definition, find references, open symbol Scala 3 Generic ticket relating to Scala 3
Projects
Archived in project
5 participants