aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/ids.rs
Commit message (Collapse)AuthorAgeFilesLines
* Move ids to hir_def crateAleksey Kladov2019-10-301-164/+3
|
* flatten hir_expandAleksey Kladov2019-10-291-3/+1
|
* rename hir_def -> hir_expandAleksey Kladov2019-10-291-1/+1
|
* move expansion-related code to a separate crateAleksey Kladov2019-10-291-190/+16
|
* start ra_hir_def crateAleksey Kladov2019-10-291-1/+1
|
* weaken requirements of AstDefAleksey Kladov2019-10-281-23/+23
|
* Prepare SourceDatabase API for lazy file loadingAleksey Kladov2019-10-141-34/+1
|
* Remove `as_original_file`Shotaro Yamada2019-10-101-10/+0
|
* Added test for check doc strings in crates.Alexander Andreev2019-09-301-0/+2
| | | | #1856
* Support `$crate` in item and expr place.uHOOCCOOHu2019-09-261-0/+11
|
* Store crate info in `MacroDefId`uHOOCCOOHu2019-09-261-3/+6
|
* cleanup expansion to item listAleksey Kladov2019-09-101-1/+1
|
* cleanup hir db importsAleksey Kladov2019-09-081-1/+4
|
* flip syntax text to use internal iterationAleksey Kladov2019-07-191-1/+10
|
* migrate ra_hir to the new rowanAleksey Kladov2019-07-191-7/+7
|
* use Parse in mbeAleksey Kladov2019-07-181-7/+7
|
* make Parse fields privateAleksey Kladov2019-07-121-1/+1
| | | | this is in preparation for the new rowan API
* Clippy trivially_copy_pass_by_refJeremy Kolb2019-07-051-2/+2
|
* allow rustfmt to reorder importsAleksey Kladov2019-07-041-6/+4
| | | | | | This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway
* make sure that CrateDefMap is independent from syntaxAleksey Kladov2019-06-261-9/+9
|
* check for cancellation when executing queriesAleksey Kladov2019-06-121-1/+0
| | | | | | | Note that we can't just remove CheckCanceled trait altogether: sometimes it's useful to check for cancellation while the query is running! We do this, for example, in the name resolution fixed-point loop.
* remove unneded From(..) implAleksey Kladov2019-06-111-3/+3
|
* don't cache parses twiceAleksey Kladov2019-06-021-25/+28
| | | | | | | | | Before this commit, `Parse`s for original file ended up two times in salsa's db: first, when we parse original file, and second, when we parse macro or a file. Given that parse trees are the worst ofenders in terms of memory, it makes sense to make sure we store them only once.
* add AstDatabaseAleksey Kladov2019-06-021-14/+17
|
* fix syntax errors in testsAleksey Kladov2019-05-281-1/+1
|
* check cancellation when expanding macrosAleksey Kladov2019-05-271-0/+1
|
* add profile calls to parsing/expansion routinesAleksey Kladov2019-05-221-0/+2
|
* allow expanding expressionsAleksey Kladov2019-05-141-0/+4
|
* expand to syntax nodeAleksey Kladov2019-05-141-12/+12
|
* store macro kind in HirFileIdAleksey Kladov2019-05-141-15/+28
|
* Move Chalk conversion code to its own moduleFlorian Diebold2019-05-041-46/+4
|
* Chalk integrationFlorian Diebold2019-05-041-0/+54
| | | | | - add proper canonicalization logic - add conversions from/to Chalk IR
* make macro expansion into a proper queryAleksey Kladov2019-05-041-21/+22
|
* minor, moveAleksey Kladov2019-05-041-19/+19
|
* introduce macro_arg intermediate queryAleksey Kladov2019-05-041-5/+9
| | | | | | | | | | | | Currently, when expanding macros, we look at the source code directly (we invoke ast_id_to_node query via to_node method). This is less then ideal, because it make us re-expand macros after every source change. This commit establishes a salsa-firewall: a query to get macro call's token tree. Unlike the syntax tree, token tree changes only if we actually modify the macro itself.
* Add more information on macro rules fail to parseEdwin Cheng2019-04-251-2/+8
|
* Add mbe expand limit and poision macro setEdwin Cheng2019-04-221-0/+7
|
* Add more information on parse_macro failEdwin Cheng2019-04-211-10/+27
|
* Fix bugsEdwin Cheng2019-04-201-2/+22
|
* migrate to salsas interningAleksey Kladov2019-04-091-68/+77
|
* reduce visibilityAleksey Kladov2019-03-261-10/+10
|
* renameAleksey Kladov2019-03-261-1/+1
|
* simplifyAleksey Kladov2019-03-261-3/+4
|
* more type safetyAleksey Kladov2019-03-261-20/+12
|
* strongy-typed ids for macrosAleksey Kladov2019-03-261-12/+6
|
* move source_id to a separate fileAleksey Kladov2019-03-261-111/+3
|
* make macro parsing a queryAleksey Kladov2019-03-261-3/+3
|
* store macro def inside macro idAleksey Kladov2019-03-261-5/+19
| | | | | | | | 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!
* rename persistent hir database -> def databaseAleksey Kladov2019-03-231-17/+11
|
* Fixed typo in `Interner`’s name (`Intener`)Vincent Esche2019-03-201-17/+17
|