Name suggester + tests.
Fixed commented introduce variable tests.
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
open class A {
|
||||
open class A() {
|
||||
{
|
||||
do <selection>1</selection> while (true)
|
||||
}
|
||||
}
|
||||
/*
|
||||
open class A {
|
||||
open class A() {
|
||||
{
|
||||
do {
|
||||
val i = 1
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
fun x(x: Int = <selection>1</selection>) {}
|
||||
/*
|
||||
val i = 1
|
||||
fun x(x: Int = i) {}
|
||||
*/
|
||||
@@ -1,13 +1,13 @@
|
||||
fun a() {
|
||||
when (1) {
|
||||
is 1 -> <selection>1</selection>
|
||||
is 1 -> <selection>2</selection>
|
||||
}
|
||||
}
|
||||
/*
|
||||
fun a() {
|
||||
when (1) {
|
||||
is 1 -> {
|
||||
val i = 1
|
||||
val i = 2
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
open class A {
|
||||
open class A() {
|
||||
{
|
||||
while (true) <selection>1</selection>
|
||||
}
|
||||
}
|
||||
/*
|
||||
open class A {
|
||||
open class A() {
|
||||
{
|
||||
while (true) {
|
||||
val i = 1
|
||||
|
||||
Reference in New Issue
Block a user