diff options
author | Hana Dusíková <hanicka@hanicka.net> | 2024-06-17 21:30:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-17 21:30:50 +0200 |
commit | 06aa078d68380bc775f0a903204fe330d50f4f1f (patch) | |
tree | 2f4fe6d8219559162866e22a4a2833de8a0556bd /llvm/tools/llvm-cov/SourceCoverageView.h | |
parent | c22d3917b93a6d54613d2e5b2ea4c97546144c46 (diff) | |
download | llvm-06aa078d68380bc775f0a903204fe330d50f4f1f.zip llvm-06aa078d68380bc775f0a903204fe330d50f4f1f.tar.gz llvm-06aa078d68380bc775f0a903204fe330d50f4f1f.tar.bz2 |
[llvm-cov] Coverage report HTML UI to jump between uncovered parts of code (#95662)
I replaced "jump to first uncovered line" with UI buttons and keyboard
shortcut to jump between uncovered parts of code: lines (key L), branchs
(key B), regions (key R).
User can also jump in reverse direction with shift+key.
Diffstat (limited to 'llvm/tools/llvm-cov/SourceCoverageView.h')
-rw-r--r-- | llvm/tools/llvm-cov/SourceCoverageView.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/tools/llvm-cov/SourceCoverageView.h b/llvm/tools/llvm-cov/SourceCoverageView.h index a874f7c..d255f8c 100644 --- a/llvm/tools/llvm-cov/SourceCoverageView.h +++ b/llvm/tools/llvm-cov/SourceCoverageView.h @@ -262,8 +262,7 @@ protected: virtual void renderTitle(raw_ostream &OS, StringRef CellText) = 0; /// Render the table header for a given source file. - virtual void renderTableHeader(raw_ostream &OS, unsigned FirstUncoveredLineNo, - unsigned IndentLevel) = 0; + virtual void renderTableHeader(raw_ostream &OS, unsigned IndentLevel) = 0; /// @} |