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

Backport from Metals #22491

Merged
merged 2 commits into from
Feb 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package dotty.tools.pc

import java.net.URI
import java.nio.file.Paths
import java.util.ArrayList

@@ -16,6 +17,7 @@ import dotty.tools.dotc.core.Contexts.Context
import dotty.tools.dotc.core.Flags.{Exported, ModuleClass}
import dotty.tools.dotc.core.Symbols.*
import dotty.tools.dotc.interactive.Interactive
import dotty.tools.dotc.interactive.Interactive.Include
import dotty.tools.dotc.interactive.InteractiveDriver
import dotty.tools.dotc.util.SourceFile
import dotty.tools.dotc.util.SourcePosition
@@ -51,10 +53,10 @@ class PcDefinitionProvider(
given ctx: Context = driver.localContext(params)
val indexedContext = IndexedContext(ctx)
val result =
if findTypeDef then findTypeDefinitions(path, pos, indexedContext)
else findDefinitions(path, pos, indexedContext)
if findTypeDef then findTypeDefinitions(path, pos, indexedContext, uri)
else findDefinitions(path, pos, indexedContext, uri)

if result.locations().nn.isEmpty() then fallbackToUntyped(pos)(using ctx)
if result.locations().nn.isEmpty() then fallbackToUntyped(pos, uri)(using ctx)
else result
end definitions

@@ -70,32 +72,35 @@ class PcDefinitionProvider(
* @param pos cursor position
* @return definition result
*/
private def fallbackToUntyped(pos: SourcePosition)(
private def fallbackToUntyped(pos: SourcePosition, uri: URI)(
using ctx: Context
) =
lazy val untpdPath = NavigateAST
.untypedPath(pos.span)
.collect { case t: untpd.Tree => t }

definitionsForSymbol(untpdPath.headOption.map(_.symbol).toList, pos)
definitionsForSymbol(untpdPath.headOption.map(_.symbol).toList, uri, pos)
end fallbackToUntyped

private def findDefinitions(
path: List[Tree],
pos: SourcePosition,
indexed: IndexedContext
indexed: IndexedContext,
uri: URI,
): DefinitionResult =
import indexed.ctx
definitionsForSymbol(
MetalsInteractive.enclosingSymbols(path, pos, indexed),
uri,
pos
)
end findDefinitions

private def findTypeDefinitions(
path: List[Tree],
pos: SourcePosition,
indexed: IndexedContext
indexed: IndexedContext,
uri: URI,
): DefinitionResult =
import indexed.ctx
val enclosing = path.expandRangeToEnclosingApply(pos)
@@ -108,24 +113,25 @@ class PcDefinitionProvider(
case Nil =>
path.headOption match
case Some(value: Literal) =>
definitionsForSymbol(List(value.typeOpt.widen.typeSymbol), pos)
definitionsForSymbol(List(value.typeOpt.widen.typeSymbol), uri, pos)
case _ => DefinitionResultImpl.empty
case _ =>
definitionsForSymbol(typeSymbols, pos)
definitionsForSymbol(typeSymbols, uri, pos)

end findTypeDefinitions

private def definitionsForSymbol(
symbols: List[Symbol],
uri: URI,
pos: SourcePosition
)(using ctx: Context): DefinitionResult =
symbols match
case symbols @ (sym :: other) =>
val isLocal = sym.source == pos.source
if isLocal then
val include = Include.definitions | Include.local
val (exportedDefs, otherDefs) =
Interactive.findDefinitions(List(sym), driver, false, false)
.filter(_.source == sym.source)
Interactive.findTreesMatching(driver.openedTrees(uri), include, sym)
.partition(_.tree.symbol.is(Exported))

otherDefs.headOption.orElse(exportedDefs.headOption) match
Original file line number Diff line number Diff line change
@@ -57,7 +57,7 @@ class PcInlayHintsProvider(
.headOption
.getOrElse(unit.tpdTree)
.enclosedChildren(pos.span)
.flatMap(tpdTree => deepFolder(InlayHints.empty, tpdTree).result())
.flatMap(tpdTree => deepFolder(InlayHints.empty(params.uri()), tpdTree).result())

private def adjustPos(pos: SourcePosition): SourcePosition =
pos.adjust(text)._1
Loading
Loading