aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_db
Commit message (Collapse)AuthorAgeFilesLines
* :arrow_up: salsaAleksey Kladov2019-04-041-1/+1
|
* update salsa some moreAleksey Kladov2019-03-271-1/+1
|
* :arrow_up: salsaAleksey Kladov2019-03-271-1/+1
|
* replace todo with fixmeAleksey Kladov2019-03-231-1/+1
|
* Fixed typo in `Interner`’s name (`Intener`)Vincent Esche2019-03-202-6/+6
|
* add skeleton for macro-aware name resolutionsAleksey Kladov2019-03-171-0/+4
|
* Make edition handling a bit nicer and allow specifying edition in ↵Florian Diebold2019-02-131-0/+9
| | | | crate_graph macro
* Resolve 2015 style importsFlorian Diebold2019-02-131-0/+4
|
* Keep track of crate editionFlorian Diebold2019-02-132-13/+20
|
* Fix some typosPascal Hertleif2019-02-121-1/+1
|
* Fix typo in Cargo.toml authorsVille Penttinen2019-02-111-1/+1
| | | | Fixes typo introduced in #782
* Update authors field in Cargo.tomls to "rust-analyzer developers"Ville Penttinen2019-02-111-1/+1
| | | | This closes #777
* Add an ra_cli command that analyses all crates in the current workspaceFlorian Diebold2019-02-101-0/+1
| | | | ... and prints various stats about how many expressions have a type etc.
* Move crate graph generation to ra_project_modelFlorian Diebold2019-02-091-0/+19
|
* reformat the worldAleksey Kladov2019-02-083-35/+11
|
* move assists to a separate crateAleksey Kladov2019-02-061-1/+1
|
* make HirDatabase object-safeAleksey Kladov2019-02-031-11/+16
|
* update salsaAleksey Kladov2019-01-281-1/+1
|
* use salsa from my repoAleksey Kladov2019-01-271-1/+1
|
* automatically collect garbageAleksey Kladov2019-01-271-1/+1
|
* remove dead codeAleksey Kladov2019-01-272-31/+0
|
* :arrow_up: salsaAleksey Kladov2019-01-261-1/+1
|
* rename source_file -> parseAleksey Kladov2019-01-261-2/+2
|
* rename FilesDatabase -> SourceDatabaseAleksey Kladov2019-01-261-4/+6
|
* move ide queries to ide dbAleksey Kladov2019-01-261-8/+0
|
* fold syntax database into files databaseAleksey Kladov2019-01-261-8/+5
|
* :arrow_up: salsaAleksey Kladov2019-01-252-3/+4
|
* :arrow_up salsaAleksey Kladov2019-01-253-57/+55
|
* Change ids strategyAleksey Kladov2019-01-242-1/+13
| | | | | | | this is a part of larghish hir refactoring which aims to * replace per-source-root module trees with per crate trees * switch from a monotyped DedId to type-specific ids
* move SyntaxPtr to ra_syntaxAleksey Kladov2019-01-232-54/+0
|
* :arrow_up: salsaAleksey Kladov2019-01-173-47/+30
|
* remove Canceled from API implAleksey Kladov2019-01-152-3/+1
|
* check_canceled does not return ResultAleksey Kladov2019-01-151-2/+14
|
* update salsaAleksey Kladov2019-01-152-3/+4
|
* gracefully handle cycles in crate graphAleksey Kladov2019-01-131-34/+48
| | | | | rust-lang/rust has absolutely weird setup with rustc-workspace-shim, which leads to real cycles.
* rename TreePtr -> TreeArcAleksey Kladov2019-01-112-5/+5
| | | | This is much clearer about the semantics
* explain why we use resume_unwindAleksey Kladov2019-01-101-0/+2
|
* implement RefUnwindSafeAleksey Kladov2019-01-102-4/+12
|
* use unwinding for cancelationAleksey Kladov2019-01-102-4/+9
|
* unwind on cancelAleksey Kladov2019-01-091-6/+16
|
* Fix typos in ARCHITECTURE.md and a number of cratesMarcus Klaas de Vries2019-01-094-19/+19
| | | | specifically: gen_lsp_server, ra_arena, ra_cli, ra_db, ra_hir
* fix the docsAleksey Kladov2019-01-081-1/+1
|
* ra_db is independent from editorAleksey Kladov2019-01-082-11/+0
|
* switch interner to use arenaAleksey Kladov2019-01-083-36/+15
|
* 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]>