Highlighting: Add line markers for suspend function calls in coroutines

#KT-14689 Fixed
This commit is contained in:
Alexey Sedunov
2016-12-06 17:09:27 +03:00
parent 9e79293a12
commit 612dffb893
7 changed files with 99 additions and 0 deletions
@@ -0,0 +1,7 @@
suspend fun fff() {
}
suspend fun ggg() {
return <lineMarker descr="Suspend function call">fff</lineMarker>()
}