group codegen test files into directories per test case

This commit is contained in:
Dmitry Jemerov
2011-05-13 12:30:28 +02:00
parent e57ed7401d
commit 5c2e90345a
24 changed files with 21 additions and 21 deletions
@@ -0,0 +1,5 @@
private var x = 0;
fun increment(): Int {
return ++x;
}
@@ -0,0 +1,7 @@
var collector: String = ""
set(it) { $collector = $collector + it }
fun append(s: String): String {
collector = s;
return collector;
}
@@ -0,0 +1,7 @@
var collector: String = ""
set(it) { $collector += it }
fun append(s: String): String {
collector = s;
return collector;
}
@@ -0,0 +1,3 @@
class PrivateVal() {
private val prop = 0;
}
@@ -0,0 +1,6 @@
class PrivateVar() {
private var x = 0;
fun setValueOfX(aValue: Int) { x = aValue }
fun getValueOfX() = x
}