1
1
package dotty .tools .pc
2
2
3
+ import java .net .URI
3
4
import java .nio .file .Paths
4
5
import java .util .ArrayList
5
6
@@ -16,6 +17,7 @@ import dotty.tools.dotc.core.Contexts.Context
16
17
import dotty .tools .dotc .core .Flags .{Exported , ModuleClass }
17
18
import dotty .tools .dotc .core .Symbols .*
18
19
import dotty .tools .dotc .interactive .Interactive
20
+ import dotty .tools .dotc .interactive .Interactive .Include
19
21
import dotty .tools .dotc .interactive .InteractiveDriver
20
22
import dotty .tools .dotc .util .SourceFile
21
23
import dotty .tools .dotc .util .SourcePosition
@@ -51,10 +53,10 @@ class PcDefinitionProvider(
51
53
given ctx : Context = driver.localContext(params)
52
54
val indexedContext = IndexedContext (ctx)
53
55
val result =
54
- if findTypeDef then findTypeDefinitions(path, pos, indexedContext)
55
- else findDefinitions(path, pos, indexedContext)
56
+ if findTypeDef then findTypeDefinitions(path, pos, indexedContext, uri )
57
+ else findDefinitions(path, pos, indexedContext, uri )
56
58
57
- if result.locations().nn.isEmpty() then fallbackToUntyped(pos)(using ctx)
59
+ if result.locations().nn.isEmpty() then fallbackToUntyped(pos, uri )(using ctx)
58
60
else result
59
61
end definitions
60
62
@@ -70,32 +72,35 @@ class PcDefinitionProvider(
70
72
* @param pos cursor position
71
73
* @return definition result
72
74
*/
73
- private def fallbackToUntyped (pos : SourcePosition )(
75
+ private def fallbackToUntyped (pos : SourcePosition , uri : URI )(
74
76
using ctx : Context
75
77
) =
76
78
lazy val untpdPath = NavigateAST
77
79
.untypedPath(pos.span)
78
80
.collect { case t : untpd.Tree => t }
79
81
80
- definitionsForSymbol(untpdPath.headOption.map(_.symbol).toList, pos)
82
+ definitionsForSymbol(untpdPath.headOption.map(_.symbol).toList, uri, pos)
81
83
end fallbackToUntyped
82
84
83
85
private def findDefinitions (
84
86
path : List [Tree ],
85
87
pos : SourcePosition ,
86
- indexed : IndexedContext
88
+ indexed : IndexedContext ,
89
+ uri : URI ,
87
90
): DefinitionResult =
88
91
import indexed .ctx
89
92
definitionsForSymbol(
90
93
MetalsInteractive .enclosingSymbols(path, pos, indexed),
94
+ uri,
91
95
pos
92
96
)
93
97
end findDefinitions
94
98
95
99
private def findTypeDefinitions (
96
100
path : List [Tree ],
97
101
pos : SourcePosition ,
98
- indexed : IndexedContext
102
+ indexed : IndexedContext ,
103
+ uri : URI ,
99
104
): DefinitionResult =
100
105
import indexed .ctx
101
106
val enclosing = path.expandRangeToEnclosingApply(pos)
@@ -108,24 +113,25 @@ class PcDefinitionProvider(
108
113
case Nil =>
109
114
path.headOption match
110
115
case Some (value : Literal ) =>
111
- definitionsForSymbol(List (value.typeOpt.widen.typeSymbol), pos)
116
+ definitionsForSymbol(List (value.typeOpt.widen.typeSymbol), uri, pos)
112
117
case _ => DefinitionResultImpl .empty
113
118
case _ =>
114
- definitionsForSymbol(typeSymbols, pos)
119
+ definitionsForSymbol(typeSymbols, uri, pos)
115
120
116
121
end findTypeDefinitions
117
122
118
123
private def definitionsForSymbol (
119
124
symbols : List [Symbol ],
125
+ uri : URI ,
120
126
pos : SourcePosition
121
127
)(using ctx : Context ): DefinitionResult =
122
128
symbols match
123
129
case symbols @ (sym :: other) =>
124
130
val isLocal = sym.source == pos.source
125
131
if isLocal then
132
+ val include = Include .definitions | Include .local
126
133
val (exportedDefs, otherDefs) =
127
- Interactive .findDefinitions(List (sym), driver, false , false )
128
- .filter(_.source == sym.source)
134
+ Interactive .findTreesMatching(driver.openedTrees(uri), include, sym)
129
135
.partition(_.tree.symbol.is(Exported ))
130
136
131
137
otherDefs.headOption.orElse(exportedDefs.headOption) match
0 commit comments