[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
@@ -18,10 +18,7 @@ data class Test1<T : Any?> {
}
override fun toString(): String {
return "Test1(" +
"x=" +
<this>.#x +
")"
return "Test1(" + "x=" + <this>.#x + ")"
}
override fun hashCode(): Int {
@@ -67,10 +64,7 @@ data class Test2<T : Number> {
}
override fun toString(): String {
return "Test2(" +
"x=" +
<this>.#x +
")"
return "Test2(" + "x=" + <this>.#x + ")"
}
override fun hashCode(): Int {
@@ -113,10 +107,7 @@ data class Test3<T : Any?> {
}
override fun toString(): String {
return "Test3(" +
"x=" +
<this>.#x +
")"
return "Test3(" + "x=" + <this>.#x + ")"
}
override fun hashCode(): Int {
@@ -159,10 +150,7 @@ data class Test4 {
}
override fun toString(): String {
return "Test4(" +
"x=" +
<this>.#x +
")"
return "Test4(" + "x=" + <this>.#x + ")"
}
override fun hashCode(): Int {