Add possibility to interpret and fold IrStringConcatenation expression

This commit is contained in:
Ivan Kylchik
2023-02-09 12:29:27 +01:00
committed by Space Team
parent 7cf9dda8dc
commit 63b340651d
77 changed files with 305 additions and 184 deletions
@@ -25,7 +25,7 @@ value class IT {
}
override fun toString(): String {
return "IT(" + "x=" + <this>.#x + ")"
return "IT(x=" + <this>.#x + ")"
}
}
@@ -102,7 +102,7 @@ value class InlineMutableSet : MutableSet<IT> {
}
override fun toString(): String {
return "InlineMutableSet(" + "ms=" + <this>.#ms + ")"
return "InlineMutableSet(ms=" + <this>.#ms + ")"
}
}