IDE: folding imports

This commit is contained in:
Natalia.Ukhorskaya
2013-03-07 12:15:51 +04:00
parent 220682afe2
commit 3cb3f00562
8 changed files with 145 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
class A <fold text='{...}'>{
val a = 1
val b = 1
}</fold>
+4
View File
@@ -0,0 +1,4 @@
fun foo() <fold text='{...}'>{
val a = 1
val b = 1
}</fold>
+6
View File
@@ -0,0 +1,6 @@
import <fold text='...'>kotlin.*
import kotlin.*
import kotlin.*
import kotlin.*</fold>
fun foo() {}
+4
View File
@@ -0,0 +1,4 @@
object A <fold text='{...}'>{
val a = 1
val b = 1
}</fold>