-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support the Jacoco filter merge operation in Java branch coverage.
Instructions that are indicated to be merged must have their corresponding coverage expressions (`CovExp`) combined in a pairwise fashion. e.g. A pair of branch expressions that should be merged: `BranchExp(a, b)`, `BranchExp(c, d)` Becomes: `BranchExp(a | c, b | d)` This is distinct from the previous merge operation on BranchExp which simply joined the branches of the two objects (this has been renamed to concatenate). Part of #12696. Closes #13972. PiperOrigin-RevId: 396573429
- Loading branch information
1 parent
bd6a7bf
commit 908a765
Showing
3 changed files
with
98 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters