aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_db
Commit message (Collapse)AuthorAgeFilesLines
...
* migrate ra_db to new rowanAleksey Kladov2019-01-082-10/+10
|
* Add HIR Expr machineryFlorian Diebold2019-01-051-1/+1
|
* :arrow_up: salsaAleksey Kladov2019-01-041-1/+1
|
* add kind to LocalSyntaxPtrAleksey Kladov2019-01-031-0/+4
|
* remove backtraces from CancelledAleksey Kladov2018-12-302-46/+4
| | | | | Hopefully we won't need them for debugging. If we do need them, it should be easy to add back.
* Merge #350bors[bot]2018-12-281-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 FileRangeAleksey Kladov2018-12-281-1/+7
| |
* | :arrow_up: salsaAleksey Kladov2018-12-281-1/+1
|/
* introduce hir::NameAleksey Kladov2018-12-271-1/+1
|
* Bump parking_lot from 0.6.4 to 0.7.0dependabot[bot]2018-12-271-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 backtracesAleksey Kladov2018-12-273-14/+90
|
* cancelled is not CopyAleksey Kladov2018-12-251-1/+1
|
* Merge #310bors[bot]2018-12-221-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 leftgfreezy2018-12-221-2/+2
| |
| * not visit the same crateId only oncegfreezy2018-12-221-14/+16
| |
| * add #[cfg(test)]gfreezy2018-12-211-1/+2
| |
| * rename to dfs_findgfreezy2018-12-211-3/+3
| |
| * When constructing a crate graph, detect and forbid cycles.gfreezy2018-12-211-6/+52
| | | | | | | | fixed #300
* | hide empty changesAleksey Kladov2018-12-211-0/+3
|/
* better debug implsAleksey Kladov2018-12-211-0/+7
|
* tweak canceled messageAleksey Kladov2018-12-211-1/+1
|
* extend commentAleksey Kladov2018-12-201-1/+5
|
* docs for input queriesAleksey Kladov2018-12-201-11/+45
|
* index all local cratesAleksey Kladov2018-12-202-6/+8
|
* kill file resolverAleksey Kladov2018-12-203-94/+1
|
* switch analysis to vfsAleksey Kladov2018-12-203-22/+9
|
* make it compileAleksey Kladov2018-12-202-1/+2
|
* remove relpath from inputAleksey Kladov2018-12-202-11/+2
|
* use relpaths for module resolveAleksey Kladov2018-12-201-0/+14
|
* resolve extern crates propertlyAleksey Kladov2018-12-091-1/+6
|
* return dependencies with namesAleksey Kladov2018-12-091-2/+2
|
* thread info about dep namesAleksey Kladov2018-12-091-6/+7
|
* more crate boilerplateAleksey Kladov2018-12-091-4/+16
|
* propagate deps to CrateGraphAleksey Kladov2018-12-091-0/+3
|
* First step towards crate depsAleksey Kladov2018-12-051-8/+35
|
* make stuff privateAleksey Kladov2018-12-051-1/+1
|
* switch to released id-arenaAleksey Kladov2018-11-282-9/+0
|
* Move hir tests to hitAleksey Kladov2018-11-282-0/+52
|
* introduce hir crateAleksey Kladov2018-11-281-1/+7
|
* move ids to HIRAleksey Kladov2018-11-281-0/+14
|
* move db basics to ra_dbAleksey Kladov2018-11-286-0/+382
This should allow to move hir to a separate crate