RecursiveMethodCallMarkerInfo and SuspendCallMarkerInfo forced to target Leaf-elements

because of restriction added in IDEA 173
This commit is contained in:
Nicolay Mitropolsky
2017-10-25 19:44:51 +03:00
committed by Nikolay Krasko
parent 34bdc04fbe
commit dd45780de9
3 changed files with 18 additions and 9 deletions
@@ -1,6 +1,6 @@
operator fun Any.get(a: Int) {
if (a > 0) {
<lineMarker descr="Recursive call">this[a - 1]</lineMarker>
<lineMarker descr="Recursive call">this</lineMarker>[a - 1]
}
}