Surround with: move declaration out from block

This commit is contained in:
Natalia.Ukhorskaya
2013-02-20 15:17:57 +04:00
parent 62266a64ee
commit 3d4a5256e6
58 changed files with 825 additions and 7 deletions
@@ -0,0 +1,6 @@
fun foo() {
<selection>object A {}
"bbb"</selection>
val myClass = A
}
@@ -0,0 +1,8 @@
fun foo() {
object A {}
if (<caret>) {
"bbb"
}
val myClass = A
}