Files
kotlin-fork/idea/resources/intentionDescriptions/InvertIfConditionIntention/after.kt.template
T
Pradyoth Kukkapalli 5550924dc5 New Intention Action: Invert If Condition
Inverts the conditional expression in an if expression.
2014-05-12 19:48:43 +04:00

5 lines
56 B
Plaintext

if (<spot>foo()</spot>) {
baz()
} else {
bar()
}