Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Clearer naming | Aleksey Kladov | 2021-04-06 | 1 | -0/+7 |
| | |||||
* | Document `paths` items | Arnaud | 2021-01-22 | 1 | -1/+50 |
| | |||||
* | Be more explicit about absolute paths at various places | Aleksey Kladov | 2020-06-24 | 1 | -3/+23 |
| | |||||
* | New VFS | Aleksey Kladov | 2020-06-23 | 1 | -4/+1 |
| | |||||
* | Add paths::RelPath[Buf] | Aleksey Kladov | 2020-06-22 | 1 | -0/+74 |
| | |||||
* | Speedup VFS::partition | Aleksey Kladov | 2020-06-19 | 1 | -1/+4 |
| | | | | | | | | | | 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. | ||||
* | Introduce paths crate | Aleksey Kladov | 2020-06-14 | 1 | -0/+123 |
It's a good idea to distinguish between absolute and relative paths at the type level, to avoid accidental dependency on the cwd, which really shouldn't matter for rust-analyzer service |