correctly implement JetSimpleNameReference.getTextRange() so that it doesn't include the @ character for references in labels
#KT-7560 Fixed
This commit is contained in:
committed by
Alexey Sedunov
parent
ca8fb53ccd
commit
093878bd06
@@ -0,0 +1,5 @@
|
||||
fun xyzzy(): Any {
|
||||
fun b<caret>ar(): Int {
|
||||
return@bar 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun xyzzy(): Any {
|
||||
fun foo(): Int {
|
||||
return@foo 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user