[IR] update testdata: print whole string concatenation at one line

This commit is contained in:
Zalim Bashorov
2020-11-10 03:15:39 +03:00
committed by teamcityserver
parent 91c9d9d25c
commit 21da2b0350
19 changed files with 31 additions and 161 deletions
+3 -27
View File
@@ -34,16 +34,7 @@ data class Test1 {
}
override fun toString(): String {
return "Test1(" +
"x=" +
<this>.#x +
", " +
"y=" +
<this>.#y +
", " +
"z=" +
<this>.#z +
")"
return "Test1(" + "x=" + <this>.#x + ", " + "y=" + <this>.#y + ", " + "z=" + <this>.#z + ")"
}
override fun hashCode(): Int {
@@ -95,10 +86,7 @@ data class Test2 {
}
override fun toString(): String {
return "Test2(" +
"x=" +
<this>.#x +
")"
return "Test2(" + "x=" + <this>.#x + ")"
}
override fun hashCode(): Int {
@@ -168,19 +156,7 @@ data class Test3 {
}
override fun toString(): String {
return "Test3(" +
"d=" +
<this>.#d +
", " +
"dn=" +
<this>.#dn +
", " +
"f=" +
<this>.#f +
", " +
"df=" +
<this>.#df +
")"
return "Test3(" + "d=" + <this>.#d + ", " + "dn=" + <this>.#dn + ", " + "f=" + <this>.#f + ", " + "df=" + <this>.#df + ")"
}
override fun hashCode(): Int {