Do not check function names in scope to suggest name for introduce variable refactoring (local values can overload function names from upper scopes).

This commit is contained in:
Alexander.Podkhalyuzin
2012-05-21 18:29:01 +04:00
parent 37fa4a1bb8
commit 8db0546052
3 changed files with 13 additions and 1 deletions
@@ -0,0 +1,7 @@
fun main(args : Array<String>) {
<selection>ArrayList<Int></selection> // Select this expression and introduce a variable, you get arrayList1 proposed as a name
}
/*
arrayList
list
*/