Basic class members generation.

Split testData into 'classes' and 'expressions'.
This commit is contained in:
Dmitry Petrov
2016-08-25 18:42:24 +03:00
committed by Dmitry Petrov
parent 703d3405ed
commit 0b647ac358
102 changed files with 356 additions and 244 deletions
@@ -0,0 +1,33 @@
fun testForBreak1(ss: List<String>) {
for (s in ss) {
break
}
}
fun testForBreak2(ss: List<String>) {
OUTER@for (s1 in ss) {
INNER@for (s2 in ss) {
break@OUTER
break@INNER
break
}
break@OUTER
}
}
fun testForContinue1(ss: List<String>) {
for (s in ss) {
continue
}
}
fun testForContinue2(ss: List<String>) {
OUTER@for (s1 in ss) {
INNER@for (s2 in ss) {
continue@OUTER
continue@INNER
continue
}
continue@OUTER
}
}