aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/nameres
Commit message (Collapse)AuthorAgeFilesLines
* add cacellation checks to expensive queriesAleksey Kladov2019-05-291-0/+1
|
* Add Test for new item resolutionEdwin Cheng2019-05-262-2/+55
|
* Use ItemOrMacro in item resolutionEdwin Cheng2019-05-261-58/+126
|
* Put back unexpaned_macros after resolveEdwin Cheng2019-05-261-0/+3
|
* add union to code_modelAleksey Kladov2019-05-232-10/+15
|
* fix odrer-of-iteration bug in testsAleksey Kladov2019-05-211-4/+12
|
* sort hash maps for testsAleksey Kladov2019-05-213-210/+194
|
* expand to syntax nodeAleksey Kladov2019-05-141-2/+5
|
* store macro kind in HirFileIdAleksey Kladov2019-05-141-2/+2
|
* make AstId untypedAleksey Kladov2019-05-131-1/+4
|
* Sidestep two-phase borrow violation signaled by ↵Felix S. Klock II2019-04-291-2/+3
| | | | | | mutable_borrow_reservation_conflict. See rust-lang/rust#59159 for further information/discussion.
* Introduced resolve_macro_call on resolverLenard Pratt2019-04-231-1/+2
| | | | | | changed to manual expansion fix for nested macros
* Added macro resolution and expansionLenard Pratt2019-04-221-3/+5
|
* Change macro stack monitor test to func ptr basedEdwin Cheng2019-04-221-40/+25
|
* Add mbe expand limit and poision macro setEdwin Cheng2019-04-221-14/+172
|
* Fix bugsEdwin Cheng2019-04-201-4/+17
|
* use either for usesAleksey Kladov2019-04-101-27/+6
|
* always produce source for importAleksey Kladov2019-04-021-17/+52
|
* fix a panic with glob-import missing a source mapAleksey Kladov2019-04-021-9/+7
|
* more realistic test for incrementalityAleksey Kladov2019-03-261-5/+22
|
* renameAleksey Kladov2019-03-261-12/+12
|
* more type safetyAleksey Kladov2019-03-262-29/+42
|
* strongy-typed ids for macrosAleksey Kladov2019-03-262-19/+11
|
* add typed idsAleksey Kladov2019-03-262-19/+16
|
* move source_id to a separate fileAleksey Kladov2019-03-262-3/+3
|
* reduce visibilityAleksey Kladov2019-03-261-23/+27
|
* store macro def inside macro idAleksey Kladov2019-03-263-101/+45
| | | | | | | | This solves the problem of "macro expansion can't call into name resolution, because name resolution calls back into macro expansion" Because we store macro def as a part of call id, macro expansion just knows the def!
* move tests to where they belongAleksey Kladov2019-03-251-0/+1
|
* test diagnosticsAleksey Kladov2019-03-251-0/+18
|
* cleanupAleksey Kladov2019-03-251-3/+6
|
* switch modules to new diagnosticsAleksey Kladov2019-03-251-34/+29
|
* rename persistent hir database -> def databaseAleksey Kladov2019-03-232-14/+8
|
* import resolution is immutableAleksey Kladov2019-03-191-1/+1
|
* remove fixmeAleksey Kladov2019-03-171-2/+1
|
* remove old macro supportAleksey Kladov2019-03-171-31/+45
|
* rename ModuleId -> CrateModuleIdAleksey Kladov2019-03-172-12/+12
|
* fix error on wrong pathAleksey Kladov2019-03-172-10/+40
|
* Reorganize name resolutionAleksey Kladov2019-03-179-416/+115
|
* remove lower moduleAleksey Kladov2019-03-173-188/+27
|
* remove ItemMapAleksey Kladov2019-03-172-11/+29
|
* move tests over to crate-def-mapAleksey Kladov2019-03-177-845/+687
|
* Replace module_tree with CrateDefMapAleksey Kladov2019-03-175-106/+234
|
* add name resolution from the old implAleksey Kladov2019-03-175-168/+724
| | | | unlike the old impl, this also handles macro imports across crates
* add skeleton for macro-aware name resolutionsAleksey Kladov2019-03-173-0/+738
|
* align lower module query namesAleksey Kladov2019-03-021-10/+3
|
* rename type to type_alias in the AST as wellAleksey Kladov2019-02-251-1/+1
|
* Rename Type => TypeAliasFlorian Diebold2019-02-241-2/+2
|
* remove ignored macro testsAleksey Kladov2019-02-191-30/+0
| | | | | we need to significantly reengineer macros, so the tests as they exist are useless
* Handle extern crates better, so they work correctly in 2015 editionFlorian Diebold2019-02-132-7/+38
| | | | (see the removed comment.)
* Make edition handling a bit nicer and allow specifying edition in ↵Florian Diebold2019-02-131-10/+4
| | | | crate_graph macro