Create From Usage ("set" operation): Support expressions of the form a[i]++

This commit is contained in:
Alexey Sedunov
2014-10-20 21:10:33 +04:00
parent b5e1fe613c
commit b2588f610a
7 changed files with 58 additions and 7 deletions
@@ -16,9 +16,10 @@
package org.jetbrains.jet.lang.psi;
import com.intellij.psi.PsiElement;
import org.jetbrains.annotations.NotNull;
public interface JetOperationExpression {
public interface JetOperationExpression extends PsiElement {
@NotNull
JetSimpleNameExpression getOperationReference();
}