[IR] update testdata
This commit is contained in:
committed by
teamcityserver
parent
6a1ab1b325
commit
fc5c674c60
@@ -1,9 +1,9 @@
|
||||
fun testForBreak1(ss: List<String>) {
|
||||
{ //BLOCK
|
||||
{ // BLOCK
|
||||
val tmp0_iterator: Iterator<String> = ss.iterator()
|
||||
while (tmp0_iterator.hasNext()) { //BLOCK
|
||||
while (tmp0_iterator.hasNext()) { // BLOCK
|
||||
val s: String = tmp0_iterator.next()
|
||||
{ //BLOCK
|
||||
{ // BLOCK
|
||||
break
|
||||
}
|
||||
}
|
||||
@@ -11,16 +11,16 @@ fun testForBreak1(ss: List<String>) {
|
||||
}
|
||||
|
||||
fun testForBreak2(ss: List<String>) {
|
||||
{ //BLOCK
|
||||
{ // BLOCK
|
||||
val tmp0_iterator: Iterator<String> = ss.iterator()
|
||||
while (tmp0_iterator.hasNext()) { //BLOCK
|
||||
while (tmp0_iterator.hasNext()) { // BLOCK
|
||||
val s1: String = tmp0_iterator.next()
|
||||
{ //BLOCK
|
||||
{ //BLOCK
|
||||
{ // BLOCK
|
||||
{ // BLOCK
|
||||
val tmp1_iterator: Iterator<String> = ss.iterator()
|
||||
while (tmp1_iterator.hasNext()) { //BLOCK
|
||||
while (tmp1_iterator.hasNext()) { // BLOCK
|
||||
val s2: String = tmp1_iterator.next()
|
||||
{ //BLOCK
|
||||
{ // BLOCK
|
||||
break
|
||||
break
|
||||
break
|
||||
@@ -34,11 +34,11 @@ fun testForBreak2(ss: List<String>) {
|
||||
}
|
||||
|
||||
fun testForContinue1(ss: List<String>) {
|
||||
{ //BLOCK
|
||||
{ // BLOCK
|
||||
val tmp0_iterator: Iterator<String> = ss.iterator()
|
||||
while (tmp0_iterator.hasNext()) { //BLOCK
|
||||
while (tmp0_iterator.hasNext()) { // BLOCK
|
||||
val s: String = tmp0_iterator.next()
|
||||
{ //BLOCK
|
||||
{ // BLOCK
|
||||
continue
|
||||
}
|
||||
}
|
||||
@@ -46,16 +46,16 @@ fun testForContinue1(ss: List<String>) {
|
||||
}
|
||||
|
||||
fun testForContinue2(ss: List<String>) {
|
||||
{ //BLOCK
|
||||
{ // BLOCK
|
||||
val tmp0_iterator: Iterator<String> = ss.iterator()
|
||||
while (tmp0_iterator.hasNext()) { //BLOCK
|
||||
while (tmp0_iterator.hasNext()) { // BLOCK
|
||||
val s1: String = tmp0_iterator.next()
|
||||
{ //BLOCK
|
||||
{ //BLOCK
|
||||
{ // BLOCK
|
||||
{ // BLOCK
|
||||
val tmp1_iterator: Iterator<String> = ss.iterator()
|
||||
while (tmp1_iterator.hasNext()) { //BLOCK
|
||||
while (tmp1_iterator.hasNext()) { // BLOCK
|
||||
val s2: String = tmp1_iterator.next()
|
||||
{ //BLOCK
|
||||
{ // BLOCK
|
||||
continue
|
||||
continue
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user