[PSI2IR] Fix parameter initialization for constructors with CR

This commit is contained in:
Anastasiya Shadrina
2021-10-29 05:19:14 +07:00
committed by TeamCityServer
parent 4caf42804a
commit 2fbfee3e11
20 changed files with 232 additions and 286 deletions
@@ -17,6 +17,6 @@ fun Matrix.plus(<this>: NumberOperations, other: Matrix): Matrix {
}
fun NumberOperations.plusMatrix(m1: Matrix, m2: Matrix) {
m1.plus(<this> = <this> /*as Matrix */, other = m2) /*~> Unit */
m2.plus(<this> = <this> /*as Matrix */, other = m1) /*~> Unit */
m1.plus(<this> = <this>, other = m2) /*~> Unit */
m2.plus(<this> = <this>, other = m1) /*~> Unit */
}