aa26db0538
instead of callee expression
23 lines
659 B
Plaintext
23 lines
659 B
Plaintext
== test ==
|
|
fun test() {
|
|
throw Exception()
|
|
test()
|
|
}
|
|
---------------------
|
|
L0:
|
|
1 <START>
|
|
2 mark({ throw Exception() test() })
|
|
mark(throw Exception())
|
|
mark(Exception())
|
|
call(Exception(), <init>) -> <v0>
|
|
throw (throw Exception()|<v0>) NEXT:[<ERROR>]
|
|
- mark(test()) PREV:[]
|
|
- call(test(), test) -> <v1> PREV:[]
|
|
L1:
|
|
1 <END> NEXT:[<SINK>] PREV:[]
|
|
error:
|
|
<ERROR> PREV:[throw (throw Exception()|<v0>)]
|
|
sink:
|
|
<SINK> PREV:[<ERROR>, <END>]
|
|
=====================
|