Files
kotlin-fork/idea/resources/intentionDescriptions/OperatorToFunctionIntention/after.kt.template
T
Jeremy Kaplan b3842285e8 Implemented Operator To Function intention action.
Converts +a, --a, a * b, a..b, a %= b, a in b, etc. to their function call counterparts.
2014-05-12 21:04:51 +04:00

12 lines
101 B
Plaintext

a.not()
b.dec()
a.times(b)
a.get(i_1, ..., i_n)
a.set(i_1, ..., i_n, b)
a.invoke(i_1, ..., i_n)