Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 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 | |
| | ||||||
* | 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 | |
| | ||||||
* | Cleanup | Florian Diebold | 2019-02-01 | 4 | -23/+12 | |
| | ||||||
* | Use the new Resolver API for goto def | Florian Diebold | 2019-02-01 | 4 | -11/+53 | |
| | ||||||
* | Use the new Resolver API in completion | Florian Diebold | 2019-02-01 | 5 | -38/+115 | |
| | ||||||
* | Use new Resolver API in type inference | Florian Diebold | 2019-02-01 | 12 | -250/+295 | |
| | ||||||
* | Implement methods to build a resolver | Florian Diebold | 2019-02-01 | 5 | -73/+166 | |
| | ||||||
* | Sketching the resolver API | Florian Diebold | 2019-02-01 | 8 | -11/+134 | |
| | ||||||
* | split HirDatabase api | csmoe | 2019-02-01 | 20 | -105/+145 | |
| | ||||||
* | split hirdatabase | csmoe | 2019-02-01 | 1 | -20/+26 | |
| | ||||||
* | remove hard-coded support for ctry macro | Aleksey Kladov | 2019-02-01 | 1 | -29/+1 | |
| | | | | | It was used mainly to prevent HirFileId infra from bitroting, but the `vec![]` macro can serve that just as well! | |||||
* | Go To Implementation for Trait | kjeremy | 2019-01-31 | 2 | -20/+62 | |
| | ||||||
* | move test | Aleksey Kladov | 2019-01-31 | 1 | -114/+0 | |
| | ||||||
* | split macros across crates | Aleksey Kladov | 2019-01-31 | 1 | -1/+0 | |
| | ||||||
* | preserve token spacing | Aleksey Kladov | 2019-01-31 | 1 | -15/+29 | |
| | ||||||
* | first test sort-of passes | Aleksey Kladov | 2019-01-31 | 1 | -6/+25 | |
| | ||||||
* | move macros to a separate crate | Aleksey Kladov | 2019-01-31 | 3 | -299/+1 | |
| | ||||||
* | parses simple macro | Aleksey Kladov | 2019-01-31 | 3 | -23/+131 | |
| | ||||||
* | handle multibyte tokens | Aleksey Kladov | 2019-01-31 | 2 | -23/+31 | |
| | ||||||
* | add eat methods | Aleksey Kladov | 2019-01-31 | 1 | -6/+23 | |
| | ||||||
* | parsing scaffold | Aleksey Kladov | 2019-01-31 | 1 | -4/+45 | |
| | ||||||
* | debug impls | Aleksey Kladov | 2019-01-31 | 3 | -2/+47 | |
| | ||||||
* | add repeats to ast | Aleksey Kladov | 2019-01-31 | 1 | -0/+12 | |
| | ||||||
* | convert punts and literals | Aleksey Kladov | 2019-01-31 | 1 | -2/+14 | |
| | ||||||
* | start tt convertions boilerplate | Aleksey Kladov | 2019-01-31 | 2 | -7/+43 | |
| | ||||||
* | add conversion boilerplate | Aleksey Kladov | 2019-01-31 | 3 | -7/+17 | |
| | ||||||
* | add macro by example ide | Aleksey Kladov | 2019-01-31 | 2 | -0/+52 | |
| | ||||||
* | shorten name :-) | Aleksey Kladov | 2019-01-31 | 2 | -1/+1 | |
| | ||||||
* | start token tree module | Aleksey Kladov | 2019-01-31 | 2 | -0/+39 | |
| | ||||||
* | Merge #701 | bors[bot] | 2019-01-30 | 5 | -19/+46 | |
|\ | | | | | | | | | | | | | | | | | | | 701: Minor type inference tweaks r=flodiebold a=marcusklaas Pass down expectation for reference expressions and type the guard in match expressions. I wasn't able to add a test for the former addition because the type variable previously introduced would always resolve to the right type in the things I tried! Co-authored-by: Marcus Klaas de Vries <[email protected]> | |||||
| * | Add test for passing on ref expectations | Marcus Klaas de Vries | 2019-01-30 | 3 | -8/+15 | |
| | | ||||||
| * | Infer type of match guard | Marcus Klaas de Vries | 2019-01-28 | 4 | -15/+35 | |
| | | ||||||
* | | Move expr_scopes query to its module | Florian Diebold | 2019-01-30 | 3 | -11/+17 | |
| | |