OperatorToFunctionIntention and SwapBinaryExpressionIntention: more narrow availability range + no i18n

This commit is contained in:
Valentin Kipyatkov
2015-04-14 15:10:51 +03:00
parent 00a4beae1d
commit dc6c6f13d5
25 changed files with 117 additions and 91 deletions
@@ -1,3 +1,3 @@
fun neq(a: Int, b: Int) {
if (<caret>a !== b) {}
if (a <caret>!== b) {}
}