mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
* 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
10 lines
267 B
Plaintext
Vendored
10 lines
267 B
Plaintext
Vendored
interface A {
|
|
var Int.foo : Double
|
|
}
|
|
|
|
class B : A {
|
|
override var Int.foo: Double
|
|
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
|
|
set(value) {}
|
|
}
|