Line markers for recursive calls.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
fun f(a: Int) {
|
||||
if (a > 0) {
|
||||
<lineMarker descr="Recursive call">f</lineMarker>(a - 1)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user