Refactored methods for val/var in PSI

This commit is contained in:
Valentin Kipyatkov
2015-05-29 23:14:20 +03:00
parent 034b74d3e5
commit 8fd6a64be9
71 changed files with 241 additions and 229 deletions
+2
View File
@@ -13,4 +13,6 @@ fun f() {
for (i in array(1, 2)) {
}
for ((i, j) in x) continue
}
+3 -1
View File
@@ -10,10 +10,12 @@ fun f() {
for
(i in array(1, 2)){}
for(i in array(1, 2))continue
for( i in array(1, 2) )continue
for (i in array(1, 2))
{
}
for( (i,j) in x) continue
}