[IR] update testdata: unify representation for error nodes

This commit is contained in:
Zalim Bashorov
2020-11-23 20:45:10 +03:00
committed by teamcityserver
parent ef9a901635
commit 7df6575a18
14 changed files with 73 additions and 62 deletions
@@ -9,9 +9,10 @@ fun test(): Int {
EQEQ(arg0 = y, arg1 = 42) -> 1
y is String -> y /*as String */.<get-length>()
y !is Int -> 2
error("") /* ERROR CALL */y; -> 3
error("") /* ERROR CALL */y; .not() -> 4
error("") /* ErrorCallExpression */y; -> 3
error("") /* ErrorCallExpression */y; .not() -> 4
else -> -1
}
}
}