Change the way of runtime configuration in JsePsiUnifierTest

This commit is contained in:
Nikolay Krasko
2014-12-16 13:14:15 +03:00
parent 37cea8a720
commit 8f6f404f14
48 changed files with 79 additions and 110 deletions
@@ -0,0 +1,23 @@
fun foo(a: Int, b: Int) {
var t = a
<selection>while (t != (a + b)) {
println(t)
t++
}</selection>
var u = a
while (u != a + b) {
println(t)
t++
}
do {
println(t)
t++
} while (t != a + b)
while (t != a + b) {
println((t))
t++
}
}