added 'INVOKE' CallType
This commit is contained in:
@@ -58,7 +58,7 @@ public interface Call {
|
||||
PsiElement getCallElement();
|
||||
|
||||
enum CallType {
|
||||
DEFAULT, ARRAY_GET_METHOD, ARRAY_SET_METHOD
|
||||
DEFAULT, ARRAY_GET_METHOD, ARRAY_SET_METHOD, INVOKE
|
||||
}
|
||||
|
||||
@NotNull
|
||||
|
||||
@@ -253,5 +253,15 @@ public class CallTransformer<D extends CallableDescriptor, F extends D> {
|
||||
return invokeExpression;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public CallType getCallType() {
|
||||
return CallType.INVOKE;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public Call getOuterCall() {
|
||||
return outerCall;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user