[ https://issues.apache.org/jira/browse/GROOVY-11739?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18015837#comment-18015837 ]
ASF GitHub Bot commented on GROOVY-11739: ----------------------------------------- codecov-commenter commented on PR #2280: URL: https://github.com/apache/groovy/pull/2280#issuecomment-3218116826 ## [Codecov](https://app.codecov.io/gh/apache/groovy/pull/2280?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report :white_check_mark: All modified and coverable lines are covered by tests. :white_check_mark: Project coverage is 67.0944%. Comparing base ([`ba54c56`](https://app.codecov.io/gh/apache/groovy/commit/ba54c56bb4300b79b266981ba4a7a7faf8dc62b9?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)) to head ([`73a3b29`](https://app.codecov.io/gh/apache/groovy/commit/73a3b295b1d2976adae7650148724198eb623d24?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)). <details><summary>Additional details and impacted files</summary> [](https://app.codecov.io/gh/apache/groovy/pull/2280?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) ```diff @@ Coverage Diff @@ ## master #2280 +/- ## ================================================== - Coverage 67.1139% 67.0944% -0.0195% + Complexity 29281 29271 -10 ================================================== Files 1382 1382 Lines 116344 116348 +4 Branches 20345 20345 ================================================== - Hits 78083 78063 -20 - Misses 31859 31874 +15 - Partials 6402 6411 +9 ``` | [Files with missing lines](https://app.codecov.io/gh/apache/groovy/pull/2280?dropdown=coverage&src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Coverage Δ | | |---|---|---| | [.../codehaus/groovy/classgen/asm/StatementWriter.java](https://app.codecov.io/gh/apache/groovy/pull/2280?src=pr&el=tree&filepath=src%2Fmain%2Fjava%2Forg%2Fcodehaus%2Fgroovy%2Fclassgen%2Fasm%2FStatementWriter.java&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-c3JjL21haW4vamF2YS9vcmcvY29kZWhhdXMvZ3Jvb3Z5L2NsYXNzZ2VuL2FzbS9TdGF0ZW1lbnRXcml0ZXIuamF2YQ==) | `96.9945% <100.0000%> (+0.0332%)` | :arrow_up: | ... and [4 files with indirect coverage changes](https://app.codecov.io/gh/apache/groovy/pull/2280/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) </details> <details><summary> :rocket: New features to boost your workflow: </summary> - :snowflake: [Test Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, report on failures, and find test suite problems. - :package: [JS Bundle Analysis](https://docs.codecov.com/docs/javascript-bundle-analysis): Save yourself from yourself by tracking and limiting bundle sizes in JS merges. </details> > continue statement in do...while skips conditional > -------------------------------------------------- > > Key: GROOVY-11739 > URL: https://issues.apache.org/jira/browse/GROOVY-11739 > Project: Groovy > Issue Type: Bug > Components: Compiler > Affects Versions: 4.0.28 > Reporter: Christopher Smith > Assignee: Eric Milles > Priority: Major > > When the {{continue}} statement is included in a do...while loop, the loop > conditional is not evaluated. > {code} > class Groovy11739 { > static void main(String... args) { > do { > println "Hello" > continue > } while(false) > } > } > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)