FIR: Switch to | in fir resolved type renderer

Otherwise it clashed with qualified names
This commit is contained in:
Simon Ogorodnik
2018-03-23 19:08:54 +03:00
committed by Mikhail Glukhikh
parent 4fb321fa00
commit 6cfe935c2a
22 changed files with 68 additions and 68 deletions
@@ -458,10 +458,10 @@ class FirRenderer(builder: StringBuilder) : FirVisitorVoid() {
override fun visitResolvedType(resolvedType: FirResolvedType) {
resolvedType.annotations.renderAnnotations()
print("R/")
print("R|")
val coneType = resolvedType.type
print(coneType.asString())
print("/")
print("|")
visitTypeWithNullability(resolvedType)
}