aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/completion/completion_context.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remove constSteffen Lyngbaek2020-03-191-5/+5
| | | | | - Add test for @ matching - Address comments
* Fixes to more accurately give complete_scope completionsSteffen Lyngbaek2020-03-191-3/+5
| | | | | | | - Exclude const, static, functions form is_pat_binding_and_path (there might be more?) - Add a check to filter out Record Fields - Fix tests
* - Exclude Local Scope for BindPatsSteffen Lyngbaek2020-03-191-7/+4
| | | | | - Exclude BindPats with @ or ref - Remove outdated test and add one testing for ref
* Completition for type name? #3418Steffen Lyngbaek2020-03-191-2/+14
| | | | | | | | Iterate through TupleStructPat's until a MatchArm if one exists. Store in a new is_pat_bind_and_path bool and allow the `complete_scope` to find matches. Added some tests to ensure it works in simple and nested cases.
* Get tests workingFlorian Diebold2020-03-161-1/+1
|
* Introduce CompletionOptionsAleksey Kladov2020-03-101-1/+4
|
* Move hypothetical expansion to hir_expandFlorian Diebold2020-03-081-1/+5
|
* Fix CompletionContext module field (by removing it)Florian Diebold2020-03-071-5/+3
| | | | | Two uses only needed the crate; one was wrong and should use the module from the scope instead.
* Add some sanity checksFlorian Diebold2020-03-071-1/+10
|
* Fix record pattern completionFlorian Diebold2020-03-071-1/+1
|
* Fix record literal completionFlorian Diebold2020-03-071-3/+8
|
* Try to complete within macrosFlorian Diebold2020-03-071-25/+62
|
* Rename ast::ImplBlock -> ast::ImplDefAleksey Kladov2020-02-291-4/+4
|
* Refactor primary IDE APIAleksey Kladov2020-02-261-27/+38
| | | | | | | | | | This introduces the new type -- Semantics. Semantics maps SyntaxNodes to various semantic info, such as type, name resolution or macro expansions. To do so, Semantics maintains a HashMap which maps every node it saw to the file from which the node originated. This is enough to get all the necessary hir bits just from syntax.
* Merge branch 'master' into kdelorey/complete-trait-implKevin DeLorey2020-02-091-3/+4
|\
| * cleanup importsAleksey Kladov2020-02-061-3/+4
| |
* | Got the magic completion working.Kevin DeLorey2020-02-081-0/+9
|/
* Create modules via SourceBinderAleksey Kladov2020-01-161-7/+3
|
* Remove imports from hirAleksey Kladov2019-12-211-0/+4
|
* Revert "Merge #2629"Aleksey Kladov2019-12-211-4/+0
| | | | | This reverts commit cdc9d682b066b110e0a44e5f8f1c574b38c16ba9, reversing changes made to 90ef070db3dce0a7acb9cd11d0b0d72de13c9d79.
* Remove hir for importsAleksey Kladov2019-12-211-0/+4
|
* Clippy lintskjeremy2019-12-201-9/+8
|
* Use different types for path with and without genericsAleksey Kladov2019-12-141-4/+3
|
* Rename Source -> InFileAleksey Kladov2019-11-281-2/+2
|
* rename ra_ide_api -> ra_ideAleksey Kladov2019-11-271-0/+274