Slicer tree view: better highlighting range inside nodes and in the editor

This commit is contained in:
Valentin Kipyatkov
2020-04-14 22:19:38 +03:00
parent 64fec54c48
commit 91a793d575
252 changed files with 696 additions and 644 deletions
@@ -1,10 +1,10 @@
4 override fun foo() = <bold>2</bold> (in B.foo())
4 override fun <bold>foo() = 2</bold> (in B)
4 override <bold>fun foo()</bold> = 2 (in B)
2 public int <bold>foo() {</bold>
8 val x = a.<bold>foo()</bold> (in test(A, B,…))
8 val <bold>x = a.foo()</bold> (in test(A, B,…))
8 <bold>val x</bold> = a.foo() (in test(A, B,…))
9 val y = b.<bold>foo()</bold> (in test(A, B,…))
9 val <bold>y = b.foo()</bold> (in test(A, B,…))
9 <bold>val y</bold> = b.foo() (in test(A, B,…))
10 val z = c.<bold>foo()</bold> (in test(A, B,…))
10 val <bold>z = c.foo()</bold> (in test(A, B,…))
10 <bold>val z</bold> = c.foo() (in test(A, B,…))
9 DUPLICATE: val y = b.<bold>foo()</bold> (in test(A, B,…))