[FIR] Introduce new kind of integer literal types for constant operator calls

This commit is contained in:
Dmitriy Novozhilov
2022-02-04 17:14:33 +03:00
committed by teamcity
parent bb5217be72
commit b980f5ab32
12 changed files with 185 additions and 111 deletions
@@ -40,7 +40,8 @@ fun ConeKotlinType.renderForDebugInfo(): String {
) { it.renderForDebugInfo() }
}
is ConeStubType -> "Stub: ${constructor.variable}"
is ConeIntegerLiteralType -> "ILT: $value"
is ConeIntegerLiteralConstantType -> "ILT: $value"
is ConeIntegerConstantOperatorType -> "IOT"
} + nullabilitySuffix
}