Implement 'not' postfix template

#KT-4710 In Progress
This commit is contained in:
Denis Zharkov
2016-07-11 11:37:33 +03:00
committed by Nikolay Krasko
parent 1eeec18303
commit f18b9cceb3
12 changed files with 216 additions and 2 deletions
+3
View File
@@ -0,0 +1,3 @@
fun foo(x: Boolean) {
x.not<caret>
}
+3
View File
@@ -0,0 +1,3 @@
fun foo(x: Boolean) {
!x
}
+3
View File
@@ -0,0 +1,3 @@
fun foo(x: String) {
x.not<caret>
}
+3
View File
@@ -0,0 +1,3 @@
fun foo(x: String) {
x.not
}