Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | simplify | Aleksey Kladov | 2019-01-08 | 1 | -33/+33 |
| | |||||
* | simplify | Aleksey Kladov | 2019-01-08 | 1 | -43/+37 |
| | |||||
* | kill FnSignatureInfo | Aleksey Kladov | 2019-01-08 | 1 | -35/+11 |
| | |||||
* | remove FnSignatureInfo from hir | Aleksey Kladov | 2019-01-08 | 2 | -11/+112 |
| | |||||
* | move tests | Aleksey Kladov | 2019-01-08 | 1 | -0/+249 |
| | |||||
* | introduce CallInfo | Aleksey Kladov | 2019-01-08 | 2 | -6/+22 |
| | |||||
* | move call-info to a separate file | Aleksey Kladov | 2019-01-08 | 3 | -118/+130 |
| | |||||
* | use real signature in completion | Aleksey Kladov | 2019-01-08 | 1 | -6/+4 |
| | |||||
* | itroduce trait for ast tokens | Aleksey Kladov | 2019-01-08 | 2 | -2/+2 |
| | |||||
* | migrate ra_analysis to new rowan | Aleksey Kladov | 2019-01-08 | 11 | -76/+65 |
| | |||||
* | Implement autoderef for field accesses | Florian Diebold | 2019-01-07 | 1 | -19/+38 |
| | |||||
* | Merge #442 | bors[bot] | 2019-01-07 | 1 | -13/+17 |
|\ | | | | | | | | | | | | | | | | | | | | | | | 442: WIP: indent on typing dot r=matklad a=simonvandel Fixes #439. The unit test passes, but I can't seem to make VS code perform the action. The existing action on "=" doesn't work either on my end either though. I didn't add any smart way of detecting the current indent level. Any ideas how I would do that? Co-authored-by: Simon Vandel Sillesen <[email protected]> | ||||
| * | indent on typing dot. fixes #439 | Simon Vandel Sillesen | 2019-01-05 | 1 | -13/+17 |
| | | |||||
* | | Improve types for node_expr / node_pat | Florian Diebold | 2019-01-06 | 2 | -10/+6 |
| | | |||||
* | | Use HIR Expr for type inference | Florian Diebold | 2019-01-06 | 2 | -6/+17 |
| | | | | | | | | | | Now we can reuse the type inference inside a function when typing whitespace etc. :) | ||||
* | | Show types when hovering patterns as well | Florian Diebold | 2019-01-06 | 1 | -4/+15 |
| | | |||||
* | | fix ra_analysis to work with the new API | Aleksey Kladov | 2019-01-06 | 4 | -7/+12 |
| | | |||||
* | | split module source into decl/defin | Aleksey Kladov | 2019-01-06 | 2 | -4/+4 |
| | | |||||
* | | fix tests | Aleksey Kladov | 2019-01-06 | 1 | -16/+13 |
| | | |||||
* | | Add fn signature query | Florian Diebold | 2019-01-06 | 1 | -0/+1 |
| | | |||||
* | | Make FnScopes use hir::Expr | Florian Diebold | 2019-01-05 | 3 | -9/+6 |
| | | | | | | | | | | | | This was a bit complicated. I've added a wrapper type for now that does the LocalSyntaxPtr <-> ExprId translation; we might want to get rid of that or give it a nicer interface. | ||||
* | | Add HIR Expr machinery | Florian Diebold | 2019-01-05 | 1 | -0/+2 |
|/ | |||||
* | fix tests | Aleksey Kladov | 2019-01-05 | 1 | -1/+49 |
| | |||||
* | show types in local variable hovers | Aleksey Kladov | 2019-01-05 | 2 | -10/+27 |
| | |||||
* | kill approximatelly_resolve_symbol | Aleksey Kladov | 2019-01-05 | 4 | -90/+11 |
| | |||||
* | inline goto_defention tests | Aleksey Kladov | 2019-01-05 | 2 | -7/+58 |
| | |||||
* | move goto_defenition to a separate file | Aleksey Kladov | 2019-01-05 | 3 | -11/+91 |
| | |||||
* | introduce separate goto_defenition | Aleksey Kladov | 2019-01-05 | 1 | -0/+7 |
| | |||||
* | kill accidentally added file | Aleksey Kladov | 2019-01-05 | 1 | -73/+0 |
| | |||||
* | move typeof to hover | Aleksey Kladov | 2019-01-05 | 3 | -18/+18 |
| | |||||
* | fold doc_comment into hover | Aleksey Kladov | 2019-01-05 | 3 | -109/+110 |
| | |||||
* | move hover implementation to ra_analysis | Aleksey Kladov | 2019-01-05 | 3 | -26/+74 |
| | |||||
* | wip | Aleksey Kladov | 2019-01-05 | 1 | -0/+26 |
| | |||||
* | split import assist | Aleksey Kladov | 2019-01-05 | 1 | -0/+73 |
| | |||||
* | Rename ImplsInCrateQuery as well | Florian Diebold | 2019-01-04 | 1 | -1/+1 |
| | |||||
* | Add a test for self field completion | Florian Diebold | 2019-01-04 | 2 | -1/+21 |
| | | | | Needed to add a default crate graph in the analysis for that. | ||||
* | Add HIR for impl blocks | Florian Diebold | 2019-01-04 | 1 | -0/+1 |
| | | | | | | | | | Since we need to be able to go from def to containing impl block, as well as the other direction, and to find all impls for a certain type, a design similar to the one for modules, where we collect all impls for the whole crate and keep them in an arena, seemed fitting. The ImplBlock type, which provides the public interface, then consists only of an Arc to the arena containing all impls, and the index into it. | ||||
* | parse doc comment for items | csmoe | 2019-01-04 | 1 | -1/+1 |
| | |||||
* | index stuff produced by macros | Aleksey Kladov | 2019-01-03 | 1 | -10/+19 |
| | |||||
* | construct index from symbols directly | Aleksey Kladov | 2019-01-03 | 1 | -13/+16 |
| | |||||
* | embed file_id into FileSymbol | Aleksey Kladov | 2019-01-03 | 3 | -35/+34 |
| | |||||
* | more enterprisey assists API | Aleksey Kladov | 2019-01-03 | 1 | -13/+3 |
| | |||||
* | split assists over several files | Aleksey Kladov | 2019-01-03 | 1 | -1/+1 |
| | |||||
* | rename code-actions -> assists | Aleksey Kladov | 2019-01-03 | 1 | -6/+6 |
| | |||||
* | hardcode vec macro | Aleksey Kladov | 2019-01-03 | 1 | -1/+9 |
| | |||||
* | docs | Aleksey Kladov | 2019-01-03 | 2 | -3/+33 |
| | |||||
* | use LocalPtr in navigation target | Aleksey Kladov | 2019-01-03 | 2 | -1/+7 |
| | |||||
* | use LocalSyntaxPtr for file symbol | Aleksey Kladov | 2019-01-03 | 3 | -53/+49 |
| | |||||
* | move some logic to navigation target | Aleksey Kladov | 2019-01-03 | 3 | -113/+127 |
| | |||||
* | explain that completion shouldn't do filtering | Aleksey Kladov | 2019-01-03 | 1 | -1/+15 |
| |