-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Interactive] Include scope completions for synthic select tree
Previously, in case if query matches on existing class member the returned completions were not returning symbols from scope. Fixes the following case: ```scala class Y { def bar: Unit = val argument: Int = 42 arg@@ // should return both `local.argument` and `this.arg` // but tree looks like select - `Select(This(Ident(Y)), Ident("arg"))` def arg: String = ??? } ``
- Loading branch information
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters