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
+7
View File
@@ -0,0 +1,7 @@
tailRecursive fun foo() {
try {
return foo()
}
catch (e: Throwable) {
}
}