Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | 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 | 2 | -2/+2 |
| | |||||
* | 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 | 4 | -299/+2 |
| | |||||
* | 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 |
| | | |||||
* | | Rename FnScopes -> ExprScopes | Florian Diebold | 2019-01-30 | 8 | -26/+26 |
| | | | | | | | | | | The reason for this is that it describes scopes for any body expression, not just that of a function. It did not actually refer to functions at all anymore. | ||||
* | | Use Crate instead of CrateId | Aleksey Kladov | 2019-01-30 | 9 | -45/+36 |
| | | |||||
* | | move item_map_query | Aleksey Kladov | 2019-01-30 | 3 | -35/+29 |
| | | |||||
* | | Resolve crate | kjeremy | 2019-01-30 | 1 | -1/+1 |
| | |