correcty index escaped identifiers

#KT-8846 Fixed
This commit is contained in:
Dmitry Jemerov
2015-08-21 16:58:15 +02:00
parent d9a854608b
commit 056d8dfd9f
5 changed files with 37 additions and 2 deletions
@@ -0,0 +1,7 @@
package testing.rename
public open class C {
public fun second() = 1
public fun foo() = second()
}
@@ -0,0 +1,7 @@
package testing.rename
public open class C {
public fun `first`() = 1
public fun foo() = `first`()
}
@@ -0,0 +1,6 @@
{
"type": "KOTLIN_FUNCTION",
"classId": "testing/rename/C",
"oldName": "first",
"newName": "second"
}