KT-12852 Support breadcrumbs for Kotlin

#KT-12852 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-09-08 00:28:56 +03:00
parent dae4521c68
commit fcce1e3838
32 changed files with 992 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
fun foo() {
buildString {
with(xxx) {
with(f()) Label@ {
g()?.let Label1@ {
listOf(1, 2, 3, 4, 5).filterTo(collection) { item ->
doIt() {
val v = Label2@ { p: Int ->
x(1, Label3@ { Something().apply { <caret> } })
}
}
}
}
}
}
}
}