Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | :arrow_up: salsa | Aleksey Kladov | 2019-01-17 | 3 | -47/+30 |
| | |||||
* | remove Canceled from API impl | Aleksey Kladov | 2019-01-15 | 2 | -3/+1 |
| | |||||
* | check_canceled does not return Result | Aleksey Kladov | 2019-01-15 | 1 | -2/+14 |
| | |||||
* | update salsa | Aleksey Kladov | 2019-01-15 | 2 | -3/+4 |
| | |||||
* | gracefully handle cycles in crate graph | Aleksey Kladov | 2019-01-13 | 1 | -34/+48 |
| | | | | | rust-lang/rust has absolutely weird setup with rustc-workspace-shim, which leads to real cycles. | ||||
* | rename TreePtr -> TreeArc | Aleksey Kladov | 2019-01-11 | 2 | -5/+5 |
| | | | | This is much clearer about the semantics | ||||
* | explain why we use resume_unwind | Aleksey Kladov | 2019-01-10 | 1 | -0/+2 |
| | |||||
* | implement RefUnwindSafe | Aleksey Kladov | 2019-01-10 | 2 | -4/+12 |
| | |||||
* | use unwinding for cancelation | Aleksey Kladov | 2019-01-10 | 2 | -4/+9 |
| | |||||
* | unwind on cancel | Aleksey Kladov | 2019-01-09 | 1 | -6/+16 |
| | |||||
* | Fix typos in ARCHITECTURE.md and a number of crates | Marcus Klaas de Vries | 2019-01-09 | 4 | -19/+19 |
| | | | | specifically: gen_lsp_server, ra_arena, ra_cli, ra_db, ra_hir | ||||
* | fix the docs | Aleksey Kladov | 2019-01-08 | 1 | -1/+1 |
| | |||||
* | ra_db is independent from editor | Aleksey Kladov | 2019-01-08 | 2 | -11/+0 |
| | |||||
* | switch interner to use arena | Aleksey Kladov | 2019-01-08 | 3 | -36/+15 |
| | |||||
* | migrate ra_db to new rowan | Aleksey Kladov | 2019-01-08 | 2 | -10/+10 |
| | |||||
* | Add HIR Expr machinery | Florian Diebold | 2019-01-05 | 1 | -1/+1 |
| | |||||
* | :arrow_up: salsa | Aleksey Kladov | 2019-01-04 | 1 | -1/+1 |
| | |||||
* | add kind to LocalSyntaxPtr | Aleksey Kladov | 2019-01-03 | 1 | -0/+4 |
| | |||||
* | remove backtraces from Cancelled | Aleksey Kladov | 2018-12-30 | 2 | -46/+4 |
| | | | | | Hopefully we won't need them for debugging. If we do need them, it should be easy to add back. | ||||
* | Merge #350 | bors[bot] | 2018-12-28 | 1 | -1/+7 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 350: Super simple macro support r=matklad a=matklad Super simple support for macros, mostly for figuring out how to fit them into the current architecture. Expansion is hard-coded and string based (mid-term, we should try to copy-paste macro-by-example expander from rustc). Ideally, we should handle * highlighting inside the macro (done) * extend selection inside the macro * completion inside the macro * indexing structs, produced by the macro Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | introduce FileRange | Aleksey Kladov | 2018-12-28 | 1 | -1/+7 |
| | | |||||
* | | :arrow_up: salsa | Aleksey Kladov | 2018-12-28 | 1 | -1/+1 |
|/ | |||||
* | introduce hir::Name | Aleksey Kladov | 2018-12-27 | 1 | -1/+1 |
| | |||||
* | Bump parking_lot from 0.6.4 to 0.7.0 | dependabot[bot] | 2018-12-27 | 1 | -1/+1 |
| | | | | | | | | Bumps [parking_lot](https://github.com/Amanieu/parking_lot) from 0.6.4 to 0.7.0. - [Release notes](https://github.com/Amanieu/parking_lot/releases) - [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md) - [Commits](https://github.com/Amanieu/parking_lot/commits) Signed-off-by: dependabot[bot] <[email protected]> | ||||
* | add cancelation module & cancelation backtraces | Aleksey Kladov | 2018-12-27 | 3 | -14/+90 |
| | |||||
* | cancelled is not Copy | Aleksey Kladov | 2018-12-25 | 1 | -1/+1 |
| | |||||
* | Merge #310 | bors[bot] | 2018-12-22 | 1 | -5/+54 |
|\ | | | | | | | | | | | | | | | 310: When constructing a crate graph, detect and forbid cycles. r=matklad a=gfreezy fixed #300 Co-authored-by: gfreezy <[email protected]> | ||||
| * | mark as visited on entry instead of left | gfreezy | 2018-12-22 | 1 | -2/+2 |
| | | |||||
| * | not visit the same crateId only once | gfreezy | 2018-12-22 | 1 | -14/+16 |
| | | |||||
| * | add #[cfg(test)] | gfreezy | 2018-12-21 | 1 | -1/+2 |
| | | |||||
| * | rename to dfs_find | gfreezy | 2018-12-21 | 1 | -3/+3 |
| | | |||||
| * | When constructing a crate graph, detect and forbid cycles. | gfreezy | 2018-12-21 | 1 | -6/+52 |
| | | | | | | | | fixed #300 | ||||
* | | hide empty changes | Aleksey Kladov | 2018-12-21 | 1 | -0/+3 |
|/ | |||||
* | better debug impls | Aleksey Kladov | 2018-12-21 | 1 | -0/+7 |
| | |||||
* | tweak canceled message | Aleksey Kladov | 2018-12-21 | 1 | -1/+1 |
| | |||||
* | extend comment | Aleksey Kladov | 2018-12-20 | 1 | -1/+5 |
| | |||||
* | docs for input queries | Aleksey Kladov | 2018-12-20 | 1 | -11/+45 |
| | |||||
* | index all local crates | Aleksey Kladov | 2018-12-20 | 2 | -6/+8 |
| | |||||
* | kill file resolver | Aleksey Kladov | 2018-12-20 | 3 | -94/+1 |
| | |||||
* | switch analysis to vfs | Aleksey Kladov | 2018-12-20 | 3 | -22/+9 |
| | |||||
* | make it compile | Aleksey Kladov | 2018-12-20 | 2 | -1/+2 |
| | |||||
* | remove relpath from input | Aleksey Kladov | 2018-12-20 | 2 | -11/+2 |
| | |||||
* | use relpaths for module resolve | Aleksey Kladov | 2018-12-20 | 1 | -0/+14 |
| | |||||
* | resolve extern crates propertly | Aleksey Kladov | 2018-12-09 | 1 | -1/+6 |
| | |||||
* | return dependencies with names | Aleksey Kladov | 2018-12-09 | 1 | -2/+2 |
| | |||||
* | thread info about dep names | Aleksey Kladov | 2018-12-09 | 1 | -6/+7 |
| | |||||
* | more crate boilerplate | Aleksey Kladov | 2018-12-09 | 1 | -4/+16 |
| | |||||
* | propagate deps to CrateGraph | Aleksey Kladov | 2018-12-09 | 1 | -0/+3 |
| | |||||
* | First step towards crate deps | Aleksey Kladov | 2018-12-05 | 1 | -8/+35 |
| | |||||
* | make stuff private | Aleksey Kladov | 2018-12-05 | 1 | -1/+1 |
| |