Repository: groovy Updated Branches: refs/heads/master ca72d7dd1 -> 5eb617f03
minor refactor Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/5eb617f0 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/5eb617f0 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/5eb617f0 Branch: refs/heads/master Commit: 5eb617f03733d97017b5ac21883b255c9ecf99af Parents: ca72d7d Author: paulk <[email protected]> Authored: Thu Nov 23 11:05:57 2017 +1000 Committer: paulk <[email protected]> Committed: Thu Nov 23 11:05:57 2017 +1000 ---------------------------------------------------------------------- .../parser-antlr4/src/test/resources/core/DoWhile_03x.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/5eb617f0/subprojects/parser-antlr4/src/test/resources/core/DoWhile_03x.groovy ---------------------------------------------------------------------- diff --git a/subprojects/parser-antlr4/src/test/resources/core/DoWhile_03x.groovy b/subprojects/parser-antlr4/src/test/resources/core/DoWhile_03x.groovy index abddd24..bda62c7 100644 --- a/subprojects/parser-antlr4/src/test/resources/core/DoWhile_03x.groovy +++ b/subprojects/parser-antlr4/src/test/resources/core/DoWhile_03x.groovy @@ -16,13 +16,13 @@ * specific language governing permissions and limitations * under the License. */ -int i, j = 0; +int i = 0, j = 0 do { i++ - if (i == 4) break; + if (i == 4) break - if (j == 3) continue; + if (j == 3) continue j++ } while (true)
