Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Complete names from prelude | Florian Diebold | 2019-02-13 | 2 | -4/+10 |
| | |||||
* | Handle extern crates better, so they work correctly in 2015 edition | Florian Diebold | 2019-02-13 | 3 | -15/+55 |
| | | | | (see the removed comment.) | ||||
* | Make edition handling a bit nicer and allow specifying edition in ↵ | Florian Diebold | 2019-02-13 | 2 | -16/+13 |
| | | | | crate_graph macro | ||||
* | Resolve 2015 style imports | Florian Diebold | 2019-02-13 | 3 | -8/+114 |
| | |||||
* | Keep track of crate edition | Florian Diebold | 2019-02-13 | 1 | -2/+3 |
| | |||||
* | Import the prelude | Florian Diebold | 2019-02-13 | 5 | -11/+96 |
| | |||||
* | Fix another crash | Florian Diebold | 2019-02-12 | 3 | -2/+33 |
| | |||||
* | make token trees eq | Aleksey Kladov | 2019-02-12 | 1 | -1/+1 |
| | |||||
* | Fix some typos | Pascal Hertleif | 2019-02-12 | 6 | -15/+15 |
| | |||||
* | Implement completion for associated items | Laurențiu Nicola | 2019-02-12 | 1 | -0/+20 |
| | |||||
* | replace clone with copy | Aleksey Kladov | 2019-02-12 | 1 | -1/+1 |
| | |||||
* | fix obsolete comment | Aleksey Kladov | 2019-02-12 | 1 | -2/+2 |
| | |||||
* | remove hard-coded query-group macro | Aleksey Kladov | 2019-02-11 | 2 | -24/+3 |
| | |||||
* | remove useless hash | Aleksey Kladov | 2019-02-11 | 2 | -2/+2 |
| | |||||
* | remove query_definitions | Aleksey Kladov | 2019-02-11 | 4 | -34/+20 |
| | |||||
* | rename combine -> or | Aleksey Kladov | 2019-02-11 | 2 | -3/+3 |
| | | | | | | This way we match API of Option https://doc.rust-lang.org/std/option/enum.Option.html#method.or | ||||
* | use extern prelude in Resolver | Aleksey Kladov | 2019-02-11 | 3 | -18/+43 |
| | | | | | | | This fixes two bugs: - completion for paths works again - we handle extern prelude shadowing more correctly | ||||
* | Merge #784 | bors[bot] | 2019-02-11 | 3 | -116/+146 |
|\ | | | | | | | | | | | | | | | 784: WIP: improve multi-crate fixtures r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | add graph fixture | Aleksey Kladov | 2019-02-11 | 3 | -71/+81 |
| | | |||||
| * | Handle SourceRoots automatically in fixtures | Aleksey Kladov | 2019-02-11 | 2 | -55/+75 |
| | | |||||
* | | Fix typo in Cargo.toml authors | Ville Penttinen | 2019-02-11 | 1 | -1/+1 |
| | | | | | | | | Fixes typo introduced in #782 | ||||
* | | Update authors field in Cargo.tomls to "rust-analyzer developers" | Ville Penttinen | 2019-02-11 | 1 | -1/+1 |
|/ | | | | This closes #777 | ||||
* | Implement glob imports within the same crate | Florian Diebold | 2019-02-10 | 1 | -16/+77 |
| | | | | Fixes #231. | ||||
* | Import glob imports from other crates | Florian Diebold | 2019-02-10 | 3 | -2/+17 |
| | | | | This is the easy part since we don't have to consider the fixpoint algorithm. | ||||
* | Implement glob imports from enums | Florian Diebold | 2019-02-10 | 2 | -6/+37 |
| | |||||
* | Add some tests | Florian Diebold | 2019-02-10 | 2 | -0/+120 |
| | |||||
* | Spell cases explicitly in Ty::walk{_mut} | Florian Diebold | 2019-02-10 | 1 | -2/+18 |
| | |||||
* | Add an ra_cli command that analyses all crates in the current workspace | Florian Diebold | 2019-02-10 | 3 | -2/+75 |
| | | | | ... and prints various stats about how many expressions have a type etc. | ||||
* | Add comment and mark | Florian Diebold | 2019-02-09 | 3 | -2/+10 |
| | |||||
* | Fix another crash, and try harder to prevent stack overflows | Florian Diebold | 2019-02-09 | 3 | -7/+75 |
| | |||||
* | Fix another crash found when analyzing rustc | Florian Diebold | 2019-02-09 | 3 | -7/+38 |
| | |||||
* | Fix handling of literal patterns | Florian Diebold | 2019-02-09 | 3 | -0/+29 |
| | | | | | Wrap them in a LiteralPat node so they can be distinguished from literal expressions. | ||||
* | Fix two crashes found by running inference on all of rustc | Florian Diebold | 2019-02-09 | 4 | -15/+84 |
| | |||||
* | reformat the world | Aleksey Kladov | 2019-02-08 | 24 | -780/+238 |
| | |||||
* | Some clippy cleanups | kjeremy | 2019-02-06 | 6 | -12/+12 |
| | |||||
* | move assists to a separate crate | Aleksey Kladov | 2019-02-06 | 2 | -8/+7 |
| | |||||
* | Merge #740 | bors[bot] | 2019-02-05 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | | | 740: Update dependencies r=kjeremy a=kjeremy Co-authored-by: kjeremy <[email protected]> Co-authored-by: Jeremy Kolb <[email protected]> | ||||
| * | Bump insta and proptest to latest | kjeremy | 2019-02-04 | 1 | -1/+1 |
| | | |||||
* | | Fix ReachedFixedPoint value for unresolved external prelude items | Florian Diebold | 2019-02-04 | 1 | -1/+1 |
| | | |||||
* | | Complete extern prelude (again) | Florian Diebold | 2019-02-04 | 2 | -2/+5 |
| | | |||||
* | | Make extern crates in the root module add to the extern prelude | Florian Diebold | 2019-02-04 | 4 | -39/+68 |
| | | | | | | | | To accomplish this, separate the extern prelude from the per-module item maps. | ||||
* | | Lower extern crates to imports | Florian Diebold | 2019-02-04 | 1 | -3/+16 |
| | | | | | | | | This is probably not completely correct, but it kind of works. | ||||
* | | Add test for extern crate renames | Florian Diebold | 2019-02-04 | 1 | -0/+42 |
| | | |||||
* | | Test more Self inference | kjeremy | 2019-02-04 | 2 | -3/+13 |
|/ | |||||
* | make HirDatabase object-safe | Aleksey Kladov | 2019-02-03 | 2 | -3/+6 |
| | |||||
* | Use aliases in import resolution | Florian Diebold | 2019-02-01 | 1 | -9/+12 |
| | |||||
* | Pass aliases to ImportData | Florian Diebold | 2019-02-01 | 2 | -7/+10 |
| | |||||
* | Add test for `use as` | Florian Diebold | 2019-02-01 | 1 | -0/+24 |
| | |||||
* | Some cleanup and additional tests | Florian Diebold | 2019-02-01 | 2 | -6/+18 |
| | |||||
* | Make the Resolution variants tuple variants | Florian Diebold | 2019-02-01 | 4 | -32/+24 |
| |