19 lines
732 B
Plaintext
19 lines
732 B
Plaintext
== test ==
|
|
fun test() {
|
|
throw Exception()
|
|
test()
|
|
}
|
|
---------------------
|
|
L0:
|
|
<START> NEXT:[call(Exception, <init>)] PREV:[]
|
|
call(Exception, <init>) NEXT:[throw (throw Exception())] PREV:[<START>]
|
|
throw (throw Exception()) NEXT:[<ERROR>] PREV:[call(Exception, <init>)]
|
|
- call(test, test) NEXT:[<END>] PREV:[]
|
|
L1:
|
|
<END> NEXT:[<SINK>] PREV:[]
|
|
error:
|
|
<ERROR> NEXT:[<SINK>] PREV:[throw (throw Exception())]
|
|
sink:
|
|
<SINK> NEXT:[] PREV:[<ERROR>, <END>]
|
|
=====================
|