aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/change.rs
Commit message (Collapse)AuthorAgeFilesLines
* don't cache parses twiceAleksey Kladov2019-06-021-1/+1
| | | | | | | | | 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.
* collect macro queriesAleksey Kladov2019-06-021-0/+3
|
* collect types and bodiesAleksey Kladov2019-06-011-0/+4
|
* collect impl source mapsAleksey Kladov2019-06-011-0/+1
|
* don't cache ast_id_to_nodeAleksey Kladov2019-06-011-1/+0
|
* fix typos in mbe testsAleksey Kladov2019-05-281-1/+1
|
* specifically profile cancellationAleksey Kladov2019-05-271-0/+4
|
* expand to syntax nodeAleksey Kladov2019-05-141-1/+1
|
* revert eagarly clean astd mapsAleksey Kladov2019-05-041-6/+1
| | | | This causes massive slowdown :-(
* eagarly clean astd mapsAleksey Kladov2019-05-041-0/+6
|
* add a couple of profiling pointsAleksey Kladov2019-04-141-0/+2
|
* renameAleksey Kladov2019-03-261-2/+2
|
* remove lower moduleAleksey Kladov2019-03-171-1/+1
|
* align lower module query namesAleksey Kladov2019-03-021-2/+1
|
* dont store body inside source mapAleksey Kladov2019-03-021-1/+1
|
* rename syntax-mapping -> source-mapAleksey Kladov2019-03-021-1/+1
|
* reformat the worldAleksey Kladov2019-02-081-32/+7
|
* move changes to a separate fileAleksey Kladov2019-02-081-0/+255