aboutsummaryrefslogtreecommitdiff
path: root/crates/vfs/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* Document vfs private itemsArnaud2021-01-121-0/+20
|
* Document vfs public itemsArnaud2021-01-121-0/+50
|
* Use `file_set::FileSet` and `FileSet` consistently in docArnaud2021-01-071-5/+5
| | | | | The first occurrence of `FileSet` has the full path (`file_set::FileSet`), while every other is simply `FileSet`.
* Use intra-doc links in `vfs` crate documentationArnaud2021-01-071-20/+26
|
* Remove the reference to `WalkdirLoaderHandle` in vfs documentationArnaud2021-01-071-3/+0
| | | | This structure was deleted in commit #dad1333
* Merge #6785bors[bot]2020-12-091-4/+5
|\ | | | | | | | | | | | | | | | | | | | | | | 6785: Fix "no value set for FileTextQuery(FileId(..))" r=jonas-schievink a=jonas-schievink Fixes https://github.com/rust-analyzer/rust-analyzer/issues/6622 Let's hope I got it right this time, but I feel like I slowly begin to understand the main loop logic. bors r+ Co-authored-by: Jonas Schievink <[email protected]>
| * Fix "no value set for FileTextQuery(FileId(..))"Jonas Schievink2020-12-091-4/+5
| |
* | .Aleksey Kladov2020-12-091-1/+5
|/
* Minor, push allocations downAleksey Kladov2020-07-141-2/+2
|
* Optimize VFS processingAleksey Kladov2020-07-101-1/+1
|
* Also reload when adding new examples, tests, etcAleksey Kladov2020-07-101-1/+1
|
* New VFSAleksey Kladov2020-06-231-1/+0
|
* Speedup VFS::partitionAleksey Kladov2020-06-191-0/+3
| | | | | | | | | | The task of `partition` function is to bin the flat list of paths into disjoint filesets. Ideally, it should be incremental -- each new file should be added to a specific fileset. However, preliminary measurnments show that it is actually fast enough if we just optimize this to use a binary search instead of a linear scan.
* New VFS APIAleksey Kladov2020-06-161-0/+138