show local functions in structure view

#KT-13473 Fixed
This commit is contained in:
Dmitry Jemerov
2016-08-24 20:15:00 +02:00
parent 509142089c
commit 8ff0814221
4 changed files with 36 additions and 0 deletions
@@ -0,0 +1,5 @@
-LocalElements.kt
-foo(): Unit
bar(): Unit
-X
xyzzy(): Unit
@@ -0,0 +1,8 @@
fun foo() {
fun bar() { }
class X {
fun xyzzy() {
}
}
}