Fix B::Concise BEGIN skip count #23714
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
B::Concise tries hard to hide its own BEGIN blocks when asked to report BEGIN blocks in end-user's code. It does this by maintaining a count of each BEGIN/use/no (and those of the dependencies) and then splicing these BEGIN blocks off before printing. However this count has drifted over time, which this commit fixes.
Before:
After:
The tests in ext/B/t/optree_specials.t now correctly only show the things being tested, but that also meant removing the bogus final test, as with this fix the code under test outputs nothing as it has no phase blocks in it.