Files
kotlin-fork/idea/resources/intentionDescriptions/InvertIfConditionIntention/before.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
44 B
Plaintext

if (!foo()) {
bar()
} else {
baz()
}