[FIR] Ignore the operator keyword when checking conflicting overloads

^KT-59880
This commit is contained in:
Nikolay Lunyak
2023-10-10 15:05:47 +03:00
committed by Space Team
parent 09436d0480
commit df6f51b49f
2 changed files with 3 additions and 6 deletions
@@ -75,9 +75,6 @@ internal object FirRedeclarationPresenter {
fun represent(it: FirNamedFunctionSymbol) = buildString {
appendRepresentationBeforeCallableId(it)
if (it.isOperator) {
append("operator ")
}
appendRepresentation(it.callableId)
appendValueParameters(it)
}