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
+40
View File
@@ -0,0 +1,40 @@
Crumbs:
foo()
when
else ->
when (x)
…isSomethingLong() ->
when (y)
y.isSomething() ->
when (z)
is VeryVeryVeryVer… ->
when (xxx)
…num.SomeLongValue ->
when (yyy)
in Int.MIN_VALUE..… ->
when (zzz)
is A,… ->
when (x1)
…yVeryVeryLongName,… ->
when (y1)
is VeryVeryVeryVer… ->
Tooltips:
function <b><code>foo()</code></b>
when
else ->
when (x)
x.isSomethingLong() ->
when (y)
y.isSomething() ->
when (z)
is VeryVeryVeryVeryLongName ->
when (xxx)
SomeEnum.SomeLongValue ->
when (yyy)
in Int.MIN_VALUE..Int.MAX_VALUE ->
when (zzz)
is A,… ->
when (x1)
A.VeryVeryVeryLongName,… ->
when (y1)
is VeryVeryVeryVeryLongClassName,… ->