Detecting tail calls through CFA

This commit is contained in:
Andrey Breslav
2013-12-06 00:00:01 +04:00
parent 9f319e8b24
commit 97319808b6
16 changed files with 483 additions and 7 deletions
@@ -0,0 +1,9 @@
fun test() : Unit {
try {
test()
} catch (any : Exception) {
test()
} finally {
test()
}
}