Closed epage closed 1 year ago
This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Changes Missing Coverage | Covered Lines | Changed/Added Lines | % | ||
---|---|---|---|---|---|
src/combinator/branch.rs | 10 | 11 | 90.91% | ||
<!-- | Total: | 10 | 11 | 90.91% | --> |
Files with Coverage Reduction | New Missed Lines | % | ||
---|---|---|---|---|
src/ascii/mod.rs | 2 | 52.19% | ||
<!-- | Total: | 2 | --> |
Totals | |
---|---|
Change from base Build 5650161558: | 0.4% |
Covered Lines: | 1208 |
Relevant Lines: | 2485 |
This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Changes Missing Coverage | Covered Lines | Changed/Added Lines | % | ||
---|---|---|---|---|---|
src/combinator/branch.rs | 10 | 11 | 90.91% | ||
<!-- | Total: | 10 | 11 | 90.91% | --> |
Files with Coverage Reduction | New Missed Lines | % | ||
---|---|---|---|---|
src/ascii/mod.rs | 2 | 51.82% | ||
<!-- | Total: | 2 | --> |
Totals | |
---|---|
Change from base Build 5650161558: | 0.3% |
Covered Lines: | 1207 |
Relevant Lines: | 2485 |
This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Changes Missing Coverage | Covered Lines | Changed/Added Lines | % | ||
---|---|---|---|---|---|
src/combinator/branch.rs | 10 | 11 | 90.91% | ||
<!-- | Total: | 10 | 11 | 90.91% | --> |
Files with Coverage Reduction | New Missed Lines | % | ||
---|---|---|---|---|
src/ascii/mod.rs | 2 | 51.82% | ||
<!-- | Total: | 2 | --> |
Totals | |
---|---|
Change from base Build 5650161558: | 0.3% |
Covered Lines: | 1207 |
Relevant Lines: | 2485 |
Now that min-const-generics is stabilized, it's possible to (backwards-compatibly) write a version of
alt
that uses a const array as input instead of being limited to only tuples - this allows us to lift the 21-element limitation on tuples passed toalt
.Upstream: rust-bakery/nom#1556