Skip to content

Commit

Permalink
Implement go-to-definition for qualified types
Browse files Browse the repository at this point in the history
  • Loading branch information
rvanasa committed Aug 16, 2023
1 parent 3ce64fe commit e473a08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,9 @@ function getTypeSearchPath(node: Node): Search[] {
},
]) ||
matchNode(node, 'DotH', (qual: Node, name: string) => [
...getTypeSearchPath(qual),
...getQualifierSearchPath(qual),
{
type: 'type',
type: 'variable',
name,
},
]) ||
Expand Down

0 comments on commit e473a08

Please sign in to comment.