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,5 @@
fun f(a: Int) {
run {
<lineMarker>f</lineMarker>(a - 1)
}
}