FIR: Rename parameters for (ASSIGNMENT|RESULT)_TYPE_MISMATCH.

This commit is contained in:
Mark Punzalan
2021-05-27 21:24:35 +00:00
committed by teamcityserver
parent b6b983aa2a
commit eddc590aaf
3 changed files with 12 additions and 12 deletions
@@ -331,13 +331,13 @@ object DIAGNOSTICS_LIST : DiagnosticList("FirErrors") {
}
val ASSIGNMENT_TYPE_MISMATCH by error<KtExpression> {
parameter<ConeKotlinType>("expected")
parameter<ConeKotlinType>("actual")
parameter<ConeKotlinType>("expectedType")
parameter<ConeKotlinType>("actualType")
}
val RESULT_TYPE_MISMATCH by error<KtExpression> {
parameter<ConeKotlinType>("expected")
parameter<ConeKotlinType>("actual")
parameter<ConeKotlinType>("expectedType")
parameter<ConeKotlinType>("actualType")
}
val MANY_LAMBDA_EXPRESSION_ARGUMENTS by error<KtValueArgument>()