Line markers for recursive calls.

This commit is contained in:
Evgeny Gerashchenko
2015-04-02 01:46:45 +03:00
parent 06c05193a6
commit 6041d566d9
16 changed files with 285 additions and 0 deletions
@@ -0,0 +1,7 @@
fun f(a: Int): Int {
if (a > 0) {
<lineMarker>f</lineMarker>(a - 1) + f(a + 1)
}
return <lineMarker>f</lineMarker>(a)
}