summaryrefslogtreecommitdiff
path: root/cli/tools/coverage/range_tree.rs
AgeCommit message (Collapse)Author
2023-07-13chore: update to Rust 1.71 (#19822)Matt Mastracci
2023-01-13chore: add `copyright_checker` tool and add the missing copyright (#17285)Yiyu Lin
2023-01-02chore: update copyright year to 2023 (#17247)David Sherret
Yearly tradition of creating extra noise in git.
2022-11-18chore: use Rust 1.65.0 (#16688)Aaron O'Mullan
2022-07-11fix(coverage): better handling of multi-byte characters (#15159)David Sherret
2022-01-11fix(coverage): merge coverage ranges (#13334)Bartek IwaƄczuk
Covered ranges were not merged and thus it appeared that some lines might be uncovered. To fix this I used "v8-coverage" that takes care of merging the ranges properly. With this change, coverage collected from a file by multiple entrypoints is now correctly calculated. I ended up forking https://github.com/demurgos/v8-coverage and adding "cli/tools/coverage/merge.rs" and "cli/tools/coverage/range_tree.rs".