[NI-MIGRATE] Update pseudocode tests for NI

This commit is contained in:
Mikhail Zarechenskiy
2020-02-06 11:27:38 +03:00
parent a0071885bf
commit ca57d6cd16
7 changed files with 39 additions and 42 deletions
@@ -1,7 +1,7 @@
== C ==
class C {
fun component1() = 1
fun component2() = 2
operator fun component1() = 1
operator fun component2() = 2
}
---------------------
L0:
@@ -14,7 +14,7 @@ sink:
<SINK> PREV:[<ERROR>, <END>]
=====================
== component1 ==
fun component1() = 1
operator fun component1() = 1
---------------------
L0:
1 <START>
@@ -28,7 +28,7 @@ sink:
<SINK> PREV:[<ERROR>, <END>]
=====================
== component2 ==
fun component2() = 2
operator fun component2() = 2
---------------------
L0:
1 <START>
@@ -69,4 +69,4 @@ error:
<ERROR> PREV:[]
sink:
<SINK> PREV:[<ERROR>, <END>]
=====================
=====================