diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 9d4410a88b1..8ee811fc38b 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -14,17 +14,10 @@ - - - + - - - - - - - + + @@ -44,10 +37,10 @@ org.jetbrains.k2js.translate.* - + org.jetbrains.k2js.* - + org.jetbrains.k2js.* @@ -273,8 +266,8 @@ - + @@ -282,13 +275,76 @@ - + - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -297,11 +353,8 @@ - - - - - + + @@ -309,70 +362,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -412,7 +402,7 @@ - + @@ -458,9 +448,7 @@ - - - + @@ -488,17 +476,17 @@ + @@ -727,6 +717,16 @@ + + + + + + + + @@ -813,7 +813,51 @@ + + + + + + + + + + + + + + + + + + + + + @@ -834,10 +878,6 @@ - - - - - - - - @@ -964,9 +994,9 @@ - - + + @@ -985,7 +1015,7 @@ - + @@ -1297,12 +1327,12 @@ - - - - - - + + + + + + localhost @@ -1342,7 +1372,11 @@ 1327420478272 1327420478272 - @@ -1367,32 +1401,32 @@ - + + - + + - - - - - + + - + + @@ -1434,7 +1468,7 @@ @@ -1481,119 +1515,114 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/translator/testFiles/stdlib/cases/Filter.kt b/translator/testFiles/stdlib/cases/Filter.kt index 6b1f89f2f89..cf7c659d96e 100644 --- a/translator/testFiles/stdlib/cases/Filter.kt +++ b/translator/testFiles/stdlib/cases/Filter.kt @@ -43,11 +43,11 @@ private class FilterIterator(val original: Iterator, val filter: (T)-> Boo if((filter)(candidate)) { nextElement = candidate state = 1 - return true + true } } state = 2 - return false + false }()} }