Fast search of contains operator
This commit is contained in:
@@ -63,8 +63,8 @@ public class KtBinaryExpression extends KtExpressionImpl implements KtOperationE
|
||||
|
||||
@Override
|
||||
@NotNull
|
||||
public KtSimpleNameExpression getOperationReference() {
|
||||
return (KtSimpleNameExpression) findChildByType(KtNodeTypes.OPERATION_REFERENCE);
|
||||
public KtOperationReferenceExpression getOperationReference() {
|
||||
return (KtOperationReferenceExpression) findChildByType(KtNodeTypes.OPERATION_REFERENCE);
|
||||
}
|
||||
|
||||
@NotNull
|
||||
|
||||
@@ -53,7 +53,7 @@ public class KtWhenConditionInRange extends KtWhenCondition {
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public KtSimpleNameExpression getOperationReference() {
|
||||
return (KtSimpleNameExpression) findChildByType(KtNodeTypes.OPERATION_REFERENCE);
|
||||
public KtOperationReferenceExpression getOperationReference() {
|
||||
return (KtOperationReferenceExpression) findChildByType(KtNodeTypes.OPERATION_REFERENCE);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user