Renamed some intentions + test data dirs

This commit is contained in:
Valentin Kipyatkov
2015-05-12 14:02:29 +03:00
parent 096df91972
commit 11812a9ece
139 changed files with 327 additions and 327 deletions
+2 -2
View File
@@ -551,12 +551,12 @@
</intentionAction>
<intentionAction>
<className>org.jetbrains.kotlin.idea.intentions.conventionNameCalls.ReplaceUnaryPrefixIntention</className>
<className>org.jetbrains.kotlin.idea.intentions.conventionNameCalls.ReplaceCallWithUnaryOperatorIntention</className>
<category>Kotlin</category>
</intentionAction>
<intentionAction>
<className>org.jetbrains.kotlin.idea.intentions.conventionNameCalls.ReplaceBinaryInfixIntention</className>
<className>org.jetbrains.kotlin.idea.intentions.conventionNameCalls.ReplaceCallWithBinaryOperatorIntention</className>
<category>Kotlin</category>
</intentionAction>
@@ -26,7 +26,7 @@ import org.jetbrains.kotlin.psi.JetPsiFactory
import org.jetbrains.kotlin.psi.createExpressionByPattern
import org.jetbrains.kotlin.resolve.calls.model.ArgumentMatch
public class ReplaceBinaryInfixIntention : JetSelfTargetingOffsetIndependentIntention<JetDotQualifiedExpression>(javaClass(), "Replace call with binary operator") {
public class ReplaceCallWithBinaryOperatorIntention : JetSelfTargetingOffsetIndependentIntention<JetDotQualifiedExpression>(javaClass(), "Replace call with binary operator") {
override fun isApplicableTo(element: JetDotQualifiedExpression): Boolean {
val operation = operation(element.functionName) ?: return false
val resolvedCall = element.toResolvedCall() ?: return false
@@ -24,7 +24,7 @@ import org.jetbrains.kotlin.psi.JetDotQualifiedExpression
import org.jetbrains.kotlin.psi.JetPsiFactory
import org.jetbrains.kotlin.psi.createExpressionByPattern
public class ReplaceUnaryPrefixIntention : JetSelfTargetingOffsetIndependentIntention<JetDotQualifiedExpression>(javaClass(), "Replace call with unary operator") {
public class ReplaceCallWithUnaryOperatorIntention : JetSelfTargetingOffsetIndependentIntention<JetDotQualifiedExpression>(javaClass(), "Replace call with unary operator") {
override fun isApplicableTo(element: JetDotQualifiedExpression): Boolean {
val operation = operation(element.functionName) ?: return false
val call = element.callExpression ?: return false
@@ -1 +1 @@
org.jetbrains.kotlin.idea.intentions.conventionNameCalls.ReplaceUnaryPrefixIntention
org.jetbrains.kotlin.idea.intentions.conventionNameCalls.ReplaceCallWithBinaryOperatorIntention
@@ -1 +1 @@
org.jetbrains.kotlin.idea.intentions.conventionNameCalls.ReplaceBinaryInfixIntention
org.jetbrains.kotlin.idea.intentions.conventionNameCalls.ReplaceCallWithUnaryOperatorIntention

Some files were not shown because too many files have changed in this diff Show More