Implement if/else/null/notnull/when/try postfix templates

#KT-4710 In Progress
This commit is contained in:
Denis Zharkov
2016-07-10 19:41:51 +03:00
committed by Nikolay Krasko
parent 09266b222b
commit 4d28199cc2
33 changed files with 252 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
fun foo(x: String) {
when (x) {
<caret> -> {
}
else -> {
}
}
}