af941bfdf5
* Expand selection should select the comment after expression getter on the same line #KT-18158 Fixed * Fixed expand selection behavior for the declaration with comment #KT-18158 * Remove redundant code #KT-18158
9 lines
247 B
Plaintext
Vendored
9 lines
247 B
Plaintext
Vendored
interface A {
|
|
val String.prop : Int
|
|
}
|
|
|
|
class B : A {
|
|
override val String.prop: Int
|
|
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
|
}
|