[FIR] Refactoring for extended checkers
This commit is contained in:
+2
-90
@@ -5,12 +5,9 @@
|
||||
|
||||
package org.jetbrains.kotlin.fir.analysis.cfa
|
||||
|
||||
import kotlinx.collections.immutable.PersistentMap
|
||||
import kotlinx.collections.immutable.persistentMapOf
|
||||
import org.jetbrains.kotlin.contracts.description.EventOccurrencesRange
|
||||
import org.jetbrains.kotlin.fir.analysis.diagnostics.DiagnosticReporter
|
||||
import org.jetbrains.kotlin.fir.references.FirResolvedNamedReference
|
||||
import org.jetbrains.kotlin.fir.resolve.dfa.cfg.*
|
||||
import org.jetbrains.kotlin.fir.resolve.dfa.cfg.CFGNode
|
||||
import org.jetbrains.kotlin.fir.resolve.dfa.cfg.ControlFlowGraph
|
||||
import org.jetbrains.kotlin.fir.symbols.impl.FirPropertySymbol
|
||||
|
||||
abstract class AbstractFirPropertyInitializationChecker {
|
||||
@@ -20,89 +17,4 @@ abstract class AbstractFirPropertyInitializationChecker {
|
||||
data: Map<CFGNode<*>, PropertyInitializationInfo>,
|
||||
properties: Set<FirPropertySymbol>
|
||||
)
|
||||
|
||||
class PropertyInitializationInfo(
|
||||
map: PersistentMap<FirPropertySymbol, EventOccurrencesRange> = persistentMapOf()
|
||||
) : ControlFlowInfo<PropertyInitializationInfo, FirPropertySymbol, EventOccurrencesRange>(map) {
|
||||
companion object {
|
||||
val EMPTY = PropertyInitializationInfo()
|
||||
}
|
||||
|
||||
override val constructor: (PersistentMap<FirPropertySymbol, EventOccurrencesRange>) -> PropertyInitializationInfo =
|
||||
::PropertyInitializationInfo
|
||||
|
||||
fun merge(other: PropertyInitializationInfo): PropertyInitializationInfo {
|
||||
var result = this
|
||||
for (symbol in keys.union(other.keys)) {
|
||||
val kind1 = this[symbol] ?: EventOccurrencesRange.ZERO
|
||||
val kind2 = other[symbol] ?: EventOccurrencesRange.ZERO
|
||||
result = result.put(symbol, kind1 or kind2)
|
||||
}
|
||||
return result
|
||||
}
|
||||
}
|
||||
|
||||
class LocalPropertyCollector private constructor() : ControlFlowGraphVisitorVoid() {
|
||||
companion object {
|
||||
fun collect(graph: ControlFlowGraph): MutableSet<FirPropertySymbol> {
|
||||
val collector = LocalPropertyCollector()
|
||||
graph.traverse(TraverseDirection.Forward, collector)
|
||||
return collector.symbols
|
||||
}
|
||||
}
|
||||
|
||||
private val symbols: MutableSet<FirPropertySymbol> = mutableSetOf()
|
||||
|
||||
override fun visitNode(node: CFGNode<*>) {}
|
||||
|
||||
override fun visitVariableDeclarationNode(node: VariableDeclarationNode) {
|
||||
symbols += node.fir.symbol
|
||||
}
|
||||
}
|
||||
|
||||
class DataCollector(private val localProperties: Set<FirPropertySymbol>) :
|
||||
ControlFlowGraphVisitor<PropertyInitializationInfo, Collection<PropertyInitializationInfo>>() {
|
||||
override fun visitNode(node: CFGNode<*>, data: Collection<PropertyInitializationInfo>): PropertyInitializationInfo {
|
||||
if (data.isEmpty()) return PropertyInitializationInfo.EMPTY
|
||||
return data.reduce(PropertyInitializationInfo::merge)
|
||||
}
|
||||
|
||||
override fun visitVariableAssignmentNode(
|
||||
node: VariableAssignmentNode,
|
||||
data: Collection<PropertyInitializationInfo>
|
||||
): PropertyInitializationInfo {
|
||||
val dataForNode = visitNode(node, data)
|
||||
val reference = node.fir.lValue as? FirResolvedNamedReference ?: return dataForNode
|
||||
val symbol = reference.resolvedSymbol as? FirPropertySymbol ?: return dataForNode
|
||||
return if (symbol !in localProperties) {
|
||||
dataForNode
|
||||
} else {
|
||||
processVariableWithAssignment(dataForNode, symbol)
|
||||
}
|
||||
}
|
||||
|
||||
override fun visitVariableDeclarationNode(
|
||||
node: VariableDeclarationNode,
|
||||
data: Collection<PropertyInitializationInfo>
|
||||
): PropertyInitializationInfo {
|
||||
val dataForNode = visitNode(node, data)
|
||||
return if (node.fir.initializer == null && node.fir.delegate == null) {
|
||||
dataForNode
|
||||
} else {
|
||||
processVariableWithAssignment(dataForNode, node.fir.symbol)
|
||||
}
|
||||
}
|
||||
|
||||
fun getData(graph: ControlFlowGraph) =
|
||||
graph.collectDataForNode(TraverseDirection.Forward, PropertyInitializationInfo.EMPTY, DataCollector(localProperties))
|
||||
|
||||
private fun processVariableWithAssignment(
|
||||
dataForNode: PropertyInitializationInfo,
|
||||
symbol: FirPropertySymbol
|
||||
): PropertyInitializationInfo {
|
||||
val existingKind = dataForNode[symbol] ?: EventOccurrencesRange.ZERO
|
||||
val kind = existingKind + EventOccurrencesRange.EXACTLY_ONCE
|
||||
return dataForNode.put(symbol, kind)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
/*
|
||||
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
|
||||
package org.jetbrains.kotlin.fir.analysis.cfa
|
||||
|
||||
import kotlinx.collections.immutable.PersistentMap
|
||||
import kotlinx.collections.immutable.persistentMapOf
|
||||
import org.jetbrains.kotlin.contracts.description.EventOccurrencesRange
|
||||
import org.jetbrains.kotlin.fir.references.FirResolvedNamedReference
|
||||
import org.jetbrains.kotlin.fir.resolve.dfa.cfg.*
|
||||
import org.jetbrains.kotlin.fir.symbols.impl.FirPropertySymbol
|
||||
|
||||
|
||||
class PropertyInitializationInfo(
|
||||
map: PersistentMap<FirPropertySymbol, EventOccurrencesRange> = persistentMapOf()
|
||||
) : ControlFlowInfo<PropertyInitializationInfo, FirPropertySymbol, EventOccurrencesRange>(map) {
|
||||
companion object {
|
||||
val EMPTY = PropertyInitializationInfo()
|
||||
}
|
||||
|
||||
override val constructor: (PersistentMap<FirPropertySymbol, EventOccurrencesRange>) -> PropertyInitializationInfo =
|
||||
::PropertyInitializationInfo
|
||||
|
||||
fun merge(other: PropertyInitializationInfo): PropertyInitializationInfo {
|
||||
var result = this
|
||||
for (symbol in keys.union(other.keys)) {
|
||||
val kind1 = this[symbol] ?: EventOccurrencesRange.ZERO
|
||||
val kind2 = other[symbol] ?: EventOccurrencesRange.ZERO
|
||||
result = result.put(symbol, kind1 or kind2)
|
||||
}
|
||||
return result
|
||||
}
|
||||
}
|
||||
|
||||
class LocalPropertyCollector private constructor() : ControlFlowGraphVisitorVoid() {
|
||||
companion object {
|
||||
fun collect(graph: ControlFlowGraph): MutableSet<FirPropertySymbol> {
|
||||
val collector = LocalPropertyCollector()
|
||||
graph.traverse(TraverseDirection.Forward, collector)
|
||||
return collector.symbols
|
||||
}
|
||||
}
|
||||
|
||||
private val symbols: MutableSet<FirPropertySymbol> = mutableSetOf()
|
||||
|
||||
override fun visitNode(node: CFGNode<*>) {}
|
||||
|
||||
override fun visitVariableDeclarationNode(node: VariableDeclarationNode) {
|
||||
symbols += node.fir.symbol
|
||||
}
|
||||
}
|
||||
|
||||
class PropertyInitializationInfoCollector(private val localProperties: Set<FirPropertySymbol>) :
|
||||
ControlFlowGraphVisitor<PropertyInitializationInfo, Collection<PropertyInitializationInfo>>() {
|
||||
override fun visitNode(node: CFGNode<*>, data: Collection<PropertyInitializationInfo>): PropertyInitializationInfo {
|
||||
if (data.isEmpty()) return PropertyInitializationInfo.EMPTY
|
||||
return data.reduce(PropertyInitializationInfo::merge)
|
||||
}
|
||||
|
||||
override fun visitVariableAssignmentNode(
|
||||
node: VariableAssignmentNode,
|
||||
data: Collection<PropertyInitializationInfo>
|
||||
): PropertyInitializationInfo {
|
||||
val dataForNode = visitNode(node, data)
|
||||
val reference = node.fir.lValue as? FirResolvedNamedReference ?: return dataForNode
|
||||
val symbol = reference.resolvedSymbol as? FirPropertySymbol ?: return dataForNode
|
||||
return if (symbol !in localProperties) {
|
||||
dataForNode
|
||||
} else {
|
||||
processVariableWithAssignment(dataForNode, symbol)
|
||||
}
|
||||
}
|
||||
|
||||
override fun visitVariableDeclarationNode(
|
||||
node: VariableDeclarationNode,
|
||||
data: Collection<PropertyInitializationInfo>
|
||||
): PropertyInitializationInfo {
|
||||
val dataForNode = visitNode(node, data)
|
||||
return if (node.fir.initializer == null && node.fir.delegate == null) {
|
||||
dataForNode
|
||||
} else {
|
||||
processVariableWithAssignment(dataForNode, node.fir.symbol)
|
||||
}
|
||||
}
|
||||
|
||||
fun getData(graph: ControlFlowGraph) =
|
||||
graph.collectDataForNode(
|
||||
TraverseDirection.Forward,
|
||||
PropertyInitializationInfo.EMPTY,
|
||||
this
|
||||
)
|
||||
|
||||
private fun processVariableWithAssignment(
|
||||
dataForNode: PropertyInitializationInfo,
|
||||
symbol: FirPropertySymbol
|
||||
): PropertyInitializationInfo {
|
||||
val existingKind = dataForNode[symbol] ?: EventOccurrencesRange.ZERO
|
||||
val kind = existingKind + EventOccurrencesRange.EXACTLY_ONCE
|
||||
return dataForNode.put(symbol, kind)
|
||||
}
|
||||
}
|
||||
+2
-2
@@ -47,9 +47,9 @@ class FirControlFlowAnalyzer(session: FirSession) {
|
||||
}
|
||||
|
||||
private fun runAssignmentCfaCheckers(graph: ControlFlowGraph, reporter: DiagnosticReporter) {
|
||||
val properties = AbstractFirCfaPropertyAssignmentChecker.LocalPropertyCollector.collect(graph)
|
||||
val properties = LocalPropertyCollector.collect(graph)
|
||||
if (properties.isEmpty()) return
|
||||
val data = AbstractFirCfaPropertyAssignmentChecker.DataCollector(properties).getData(graph)
|
||||
val data = PropertyInitializationInfoCollector(properties).getData(graph)
|
||||
variableAssignmentCheckers.forEach { it.analyze(graph, reporter, data, properties) }
|
||||
}
|
||||
}
|
||||
|
||||
+3
-3
@@ -23,8 +23,8 @@ import org.jetbrains.kotlin.name.ClassId
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
|
||||
object FirSealedClassConstructorCallChecker : FirQualifiedAccessChecker() {
|
||||
override fun check(functionCall: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
val constructorFir = functionCall.calleeReference.safeAs<FirResolvedNamedReference>()
|
||||
override fun check(expression: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
val constructorFir = expression.calleeReference.safeAs<FirResolvedNamedReference>()
|
||||
?.resolvedSymbol
|
||||
?.fir.safeAs<FirConstructor>()
|
||||
?: return
|
||||
@@ -39,7 +39,7 @@ object FirSealedClassConstructorCallChecker : FirQualifiedAccessChecker() {
|
||||
?: return
|
||||
|
||||
if (typeFir.status.modality == Modality.SEALED) {
|
||||
reporter.report(functionCall.calleeReference.source)
|
||||
reporter.report(expression.calleeReference.source)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+4
-4
@@ -21,9 +21,9 @@ import org.jetbrains.kotlin.fir.references.FirSuperReference
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
|
||||
object FirAbstractSuperCallChecker : FirQualifiedAccessChecker() {
|
||||
override fun check(functionCall: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
override fun check(expression: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
// require the receiver to be the super reference
|
||||
functionCall.explicitReceiver.safeAs<FirQualifiedAccessExpression>()
|
||||
expression.explicitReceiver.safeAs<FirQualifiedAccessExpression>()
|
||||
?.calleeReference.safeAs<FirSuperReference>()
|
||||
?: return
|
||||
|
||||
@@ -32,7 +32,7 @@ object FirAbstractSuperCallChecker : FirQualifiedAccessChecker() {
|
||||
|
||||
if (closestClass.classKind == ClassKind.CLASS) {
|
||||
// handles all the FirSimpleFunction/FirProperty/etc.
|
||||
val item = functionCall.getDeclaration<FirCallableMemberDeclaration<*>>()
|
||||
val item = expression.getDeclaration<FirCallableMemberDeclaration<*>>()
|
||||
?: return
|
||||
|
||||
val declaration = item.getContainingClass(context).safeAs<FirRegularClass>()
|
||||
@@ -42,7 +42,7 @@ object FirAbstractSuperCallChecker : FirQualifiedAccessChecker() {
|
||||
declaration.modality == Modality.ABSTRACT &&
|
||||
item.modality == Modality.ABSTRACT
|
||||
) {
|
||||
reporter.report(functionCall.calleeReference.source)
|
||||
reporter.report(expression.calleeReference.source)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ import org.jetbrains.kotlin.fir.expressions.FirStatement
|
||||
import org.jetbrains.kotlin.fir.expressions.FirVariableAssignment
|
||||
|
||||
abstract class FirExpressionChecker<in E : FirStatement> {
|
||||
abstract fun check(functionCall: E, context: CheckerContext, reporter: DiagnosticReporter)
|
||||
abstract fun check(expression: E, context: CheckerContext, reporter: DiagnosticReporter)
|
||||
}
|
||||
|
||||
typealias FirBasicExpresionChecker = FirExpressionChecker<FirStatement>
|
||||
|
||||
+3
-3
@@ -19,8 +19,8 @@ import org.jetbrains.kotlin.fir.references.FirSuperReference
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
|
||||
object FirNotASupertypeChecker : FirQualifiedAccessChecker() {
|
||||
override fun check(functionCall: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
val superReference = functionCall.calleeReference.safeAs<FirSuperReference>()?.takeIf { it.hadExplicitTypeInSource() }
|
||||
override fun check(expression: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
val superReference = expression.calleeReference.safeAs<FirSuperReference>()?.takeIf { it.hadExplicitTypeInSource() }
|
||||
|
||||
val targetClass = superReference
|
||||
?.superTypeRef
|
||||
@@ -29,7 +29,7 @@ object FirNotASupertypeChecker : FirQualifiedAccessChecker() {
|
||||
|
||||
val surrounding = context.findClosestClass(superReference.labelName) ?: return
|
||||
if (!targetClass.isSupertypeOf(surrounding)) {
|
||||
reporter.report(functionCall.source)
|
||||
reporter.report(expression.source)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -15,8 +15,8 @@ import org.jetbrains.kotlin.fir.types.FirTypeProjectionWithVariance
|
||||
import org.jetbrains.kotlin.types.Variance
|
||||
|
||||
object FirProjectionsOnNonClassTypeArgumentChecker : FirQualifiedAccessChecker() {
|
||||
override fun check(functionCall: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
for (it in functionCall.typeArguments) {
|
||||
override fun check(expression: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
for (it in expression.typeArguments) {
|
||||
when (it) {
|
||||
is FirStarProjection -> reporter.report(it.source)
|
||||
is FirTypeProjectionWithVariance -> {
|
||||
|
||||
+2
-2
@@ -20,9 +20,9 @@ import org.jetbrains.kotlin.fir.types.FirResolvedTypeRef
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
|
||||
object FirQualifiedSupertypeExtendedByOtherSupertypeChecker : FirQualifiedAccessChecker() {
|
||||
override fun check(functionCall: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
override fun check(expression: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
// require to be called over a super reference
|
||||
val superReference = functionCall.calleeReference.safeAs<FirSuperReference>()
|
||||
val superReference = expression.calleeReference.safeAs<FirSuperReference>()
|
||||
?.takeIf { it.hadExplicitTypeInSource() }
|
||||
?: return
|
||||
|
||||
|
||||
+3
-3
@@ -16,15 +16,15 @@ import org.jetbrains.kotlin.fir.references.FirSuperReference
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
|
||||
object FirSuperNotAvailableChecker : FirQualifiedAccessChecker() {
|
||||
override fun check(functionCall: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
if (functionCall.calleeReference.safeAs<FirSuperReference>()?.hadExplicitTypeInSource() != true) return
|
||||
override fun check(expression: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
if (expression.calleeReference.safeAs<FirSuperReference>()?.hadExplicitTypeInSource() != true) return
|
||||
|
||||
val isInsideClass = context.containingDeclarations.any {
|
||||
it.source?.elementType == CLASS || it.source?.elementType == OBJECT_LITERAL
|
||||
}
|
||||
|
||||
if (!isInsideClass) {
|
||||
reporter.report(functionCall.source)
|
||||
reporter.report(expression.source)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -21,17 +21,17 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirRegularClassSymbol
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
|
||||
object FirSuperclassNotAccessibleFromInterfaceChecker : FirQualifiedAccessChecker() {
|
||||
override fun check(functionCall: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
override fun check(expression: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
val closestClass = context.findClosest<FirRegularClass>() ?: return
|
||||
|
||||
if (closestClass.classKind == ClassKind.INTERFACE) {
|
||||
val origin = getClassLikeDeclaration(functionCall, context)
|
||||
val origin = getClassLikeDeclaration(expression, context)
|
||||
?.symbol.safeAs<FirRegularClassSymbol>()
|
||||
?.fir
|
||||
?: return
|
||||
|
||||
if (origin.source != null && origin.isSuperclassOf(closestClass)) {
|
||||
reporter.report(functionCall.explicitReceiver?.source)
|
||||
reporter.report(expression.explicitReceiver?.source)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -23,10 +23,10 @@ import org.jetbrains.kotlin.fir.psi
|
||||
import org.jetbrains.kotlin.psi.KtTypeArgumentList
|
||||
|
||||
object FirTypeArgumentsNotAllowedExpressionChecker : FirQualifiedAccessChecker() {
|
||||
override fun check(functionCall: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
override fun check(expression: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
// analyze type parameters near
|
||||
// package names
|
||||
val explicitReceiver = functionCall.explicitReceiver
|
||||
val explicitReceiver = expression.explicitReceiver
|
||||
|
||||
if (explicitReceiver is FirResolvedQualifier && explicitReceiver.symbol == null) {
|
||||
if (explicitReceiver.source?.hasAnyArguments() == true) {
|
||||
|
||||
+5
-5
@@ -25,12 +25,12 @@ import org.jetbrains.kotlin.utils.addToStdlib.min
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
|
||||
object FirUpperBoundViolatedChecker : FirQualifiedAccessChecker() {
|
||||
override fun check(functionCall: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
override fun check(expression: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
// something that contains the type parameters
|
||||
// declarations with their declared bounds.
|
||||
// it may be the called function declaration
|
||||
// or the class declaration
|
||||
val calleeFir = functionCall.calleeReference.safeAs<FirResolvedNamedReference>()
|
||||
val calleeFir = expression.calleeReference.safeAs<FirResolvedNamedReference>()
|
||||
?.resolvedSymbol
|
||||
?.fir.safeAs<FirTypeParameterRefsOwner>()
|
||||
?: return
|
||||
@@ -41,10 +41,10 @@ object FirUpperBoundViolatedChecker : FirQualifiedAccessChecker() {
|
||||
)
|
||||
|
||||
val parameterPairs = mutableMapOf<FirTypeParameterSymbol, FirResolvedTypeRef>()
|
||||
val count = min(calleeFir.typeParameters.size, functionCall.typeArguments.size)
|
||||
val count = min(calleeFir.typeParameters.size, expression.typeArguments.size)
|
||||
|
||||
for (it in 0 until count) {
|
||||
functionCall.typeArguments[it].safeAs<FirTypeProjectionWithVariance>()
|
||||
expression.typeArguments[it].safeAs<FirTypeProjectionWithVariance>()
|
||||
?.typeRef.safeAs<FirResolvedTypeRef>()
|
||||
?.let { that ->
|
||||
if (that !is FirErrorTypeRef) {
|
||||
@@ -92,7 +92,7 @@ object FirUpperBoundViolatedChecker : FirQualifiedAccessChecker() {
|
||||
// typealias A<G> = B<List<G>>
|
||||
// val a = A<Int>()
|
||||
when (calleeFir) {
|
||||
is FirConstructor -> analyzeConstructorCall(functionCall, substitutor, typeCheckerContext, reporter)
|
||||
is FirConstructor -> analyzeConstructorCall(expression, substitutor, typeCheckerContext, reporter)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+7
-7
@@ -20,15 +20,15 @@ import org.jetbrains.kotlin.fir.types.classId
|
||||
import org.jetbrains.kotlin.fir.types.coneType
|
||||
|
||||
object ArrayEqualityCanBeReplacedWithEquals : FirBasicExpresionChecker() {
|
||||
override fun check(functionCall: FirStatement, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
if (functionCall !is FirEqualityOperatorCall) return
|
||||
if (functionCall.operation != FirOperation.EQ && functionCall.operation != FirOperation.NOT_EQ) return
|
||||
val left = functionCall.arguments.getOrNull(0) ?: return
|
||||
val right = functionCall.arguments.getOrNull(1) ?: return
|
||||
override fun check(expression: FirStatement, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
if (expression !is FirEqualityOperatorCall) return
|
||||
if (expression.operation != FirOperation.EQ && expression.operation != FirOperation.NOT_EQ) return
|
||||
val left = expression.arguments.getOrNull(0) ?: return
|
||||
val right = expression.arguments.getOrNull(1) ?: return
|
||||
|
||||
if (left.typeRef.coneType.classId != StandardClassIds.Array) return
|
||||
if (right.typeRef.coneType.classId != StandardClassIds.Array) return
|
||||
|
||||
reporter.report(functionCall.psi?.children?.get(1)?.toFirPsiSourceElement(), ARRAY_EQUALITY_OPERATOR_CAN_BE_REPLACED_WITH_EQUALS)
|
||||
reporter.report(expression.psi?.children?.get(1)?.toFirPsiSourceElement(), ARRAY_EQUALITY_OPERATOR_CAN_BE_REPLACED_WITH_EQUALS)
|
||||
}
|
||||
}
|
||||
}
|
||||
+8
-10
@@ -7,7 +7,7 @@ package org.jetbrains.kotlin.fir.analysis.checkers.extended
|
||||
|
||||
import com.intellij.psi.tree.IElementType
|
||||
import org.jetbrains.kotlin.fir.analysis.checkers.context.CheckerContext
|
||||
import org.jetbrains.kotlin.fir.analysis.checkers.expression.FirExpressionChecker
|
||||
import org.jetbrains.kotlin.fir.analysis.checkers.expression.FirVariableAssignmentChecker
|
||||
import org.jetbrains.kotlin.fir.analysis.diagnostics.DiagnosticReporter
|
||||
import org.jetbrains.kotlin.fir.analysis.diagnostics.FirErrors
|
||||
import org.jetbrains.kotlin.fir.expressions.FirFunctionCall
|
||||
@@ -24,17 +24,17 @@ import org.jetbrains.kotlin.psi.KtBinaryExpression
|
||||
import org.jetbrains.kotlin.psi.KtNameReferenceExpression
|
||||
import org.jetbrains.kotlin.psi.KtOperationReferenceExpression
|
||||
|
||||
object CanBeReplacedWithOperatorAssignmentChecker : FirExpressionChecker<FirVariableAssignment>() {
|
||||
override fun check(assignment: FirVariableAssignment, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
val lValue = assignment.lValue
|
||||
object CanBeReplacedWithOperatorAssignmentChecker : FirVariableAssignmentChecker() {
|
||||
override fun check(expression: FirVariableAssignment, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
val lValue = expression.lValue
|
||||
if (lValue !is FirResolvedNamedReference) return
|
||||
|
||||
val operator = assignment.psi?.children?.getOrNull(1) ?: return
|
||||
val operator = expression.psi?.children?.getOrNull(1) ?: return
|
||||
val operationSign = (operator as? KtOperationReferenceExpression)?.operationSignTokenType
|
||||
if (operationSign != KtTokens.EQ) return
|
||||
|
||||
val lValuePsi = lValue.psi as? KtNameReferenceExpression ?: return
|
||||
val rValue = assignment.rValue as? FirFunctionCall ?: return
|
||||
val rValue = expression.rValue as? FirFunctionCall ?: return
|
||||
val rValuePsi = rValue.psi as? KtBinaryExpression ?: return
|
||||
val rValueClassId = rValue.explicitReceiver?.typeRef?.coneType?.classId
|
||||
|
||||
@@ -60,11 +60,9 @@ object CanBeReplacedWithOperatorAssignmentChecker : FirExpressionChecker<FirVari
|
||||
val isLeftMatch = isHierarchicallyTrue(operationToken, leftExpression?.operationToken)
|
||||
&& leftExpression?.matcher(variable) == true
|
||||
if (isLeftMatch) return true
|
||||
val isRightMatch = isHierarchicallyTrue(operationToken, rightExpression?.operationToken)
|
||||
&& rightExpression?.matcher(variable) == true
|
||||
if (isRightMatch) return true
|
||||
|
||||
false
|
||||
return (isHierarchicallyTrue(operationToken, rightExpression?.operationToken)
|
||||
&& rightExpression?.matcher(variable) == true)
|
||||
} else {
|
||||
val leftExpression = left as? KtBinaryExpression
|
||||
|
||||
|
||||
+8
-7
@@ -16,13 +16,13 @@ import org.jetbrains.kotlin.fir.expressions.FirStatement
|
||||
import org.jetbrains.kotlin.fir.scopes.impl.FirIntegerOperatorCall
|
||||
|
||||
object EmptyRangeChecker : FirBasicExpresionChecker() {
|
||||
override fun check(functionCall: FirStatement, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
if (functionCall.source is FirFakeSourceElement<*>) return
|
||||
if (functionCall !is FirFunctionCall) return
|
||||
val left = functionCall.rangeLeft ?: return
|
||||
val right = functionCall.rangeRight ?: return
|
||||
override fun check(expression: FirStatement, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
if (expression.source is FirFakeSourceElement<*>) return
|
||||
if (expression !is FirFunctionCall) return
|
||||
val left = expression.rangeLeft ?: return
|
||||
val right = expression.rangeRight ?: return
|
||||
|
||||
val needReport = when (functionCall.calleeReference.name.asString()) {
|
||||
val needReport = when (expression.calleeReference.name.asString()) {
|
||||
"rangeTo" -> {
|
||||
left > right
|
||||
}
|
||||
@@ -36,7 +36,7 @@ object EmptyRangeChecker : FirBasicExpresionChecker() {
|
||||
}
|
||||
|
||||
if (needReport) {
|
||||
reporter.report(functionCall.source, FirErrors.EMPTY_RANGE)
|
||||
reporter.report(expression.source, FirErrors.EMPTY_RANGE)
|
||||
|
||||
}
|
||||
}
|
||||
@@ -57,6 +57,7 @@ object EmptyRangeChecker : FirBasicExpresionChecker() {
|
||||
else (arg as? FirConstExpression<*>)?.value as? Long
|
||||
}
|
||||
|
||||
// todo: add proper integer operator calls checking (e.g. (1+2)*3 transforms to 9)
|
||||
private val FirIntegerOperatorCall.asLong: Long?
|
||||
get() {
|
||||
val value = (dispatchReceiver as? FirConstExpression<*>)?.value as Long? ?: return null
|
||||
|
||||
+6
-6
@@ -26,14 +26,14 @@ import org.jetbrains.kotlin.psi.KtSafeQualifiedExpression
|
||||
import org.jetbrains.kotlin.types.expressions.OperatorConventions
|
||||
|
||||
object RedundantCallOfConversionMethod : FirQualifiedAccessChecker() {
|
||||
override fun check(functionCall: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
if (functionCall !is FirFunctionCall) return
|
||||
if (functionCall.source?.kind == FirFakeSourceElementKind.GeneratedToStringCallOnTemplateEntry) return
|
||||
val functionName = functionCall.calleeReference.name.asString()
|
||||
override fun check(expression: FirQualifiedAccessExpression, context: CheckerContext, reporter: DiagnosticReporter) {
|
||||
if (expression !is FirFunctionCall) return
|
||||
if (expression.source?.kind == FirFakeSourceElementKind.GeneratedToStringCallOnTemplateEntry) return
|
||||
val functionName = expression.calleeReference.name.asString()
|
||||
val qualifiedType = targetClassMap[functionName] ?: return
|
||||
|
||||
if (functionCall.explicitReceiver?.isRedundant(qualifiedType) == true) {
|
||||
reporter.report(functionCall.source, FirErrors.REDUNDANT_CALL_OF_CONVERSION_METHOD)
|
||||
if (expression.explicitReceiver?.isRedundant(qualifiedType) == true) {
|
||||
reporter.report(expression.source, FirErrors.REDUNDANT_CALL_OF_CONVERSION_METHOD)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
@@ -10,6 +10,7 @@ import org.jetbrains.kotlin.contracts.description.EventOccurrencesRange
|
||||
import org.jetbrains.kotlin.fir.FirFakeSourceElement
|
||||
import org.jetbrains.kotlin.fir.FirSourceElement
|
||||
import org.jetbrains.kotlin.fir.analysis.cfa.AbstractFirPropertyInitializationChecker
|
||||
import org.jetbrains.kotlin.fir.analysis.cfa.PropertyInitializationInfo
|
||||
import org.jetbrains.kotlin.fir.analysis.cfa.TraverseDirection
|
||||
import org.jetbrains.kotlin.fir.analysis.cfa.traverse
|
||||
import org.jetbrains.kotlin.fir.analysis.diagnostics.DiagnosticReporter
|
||||
|
||||
Reference in New Issue
Block a user