bb808b5620
Moved tests for completion and their test data into module idea-completion
11 lines
142 B
Plaintext
Vendored
11 lines
142 B
Plaintext
Vendored
class C {
|
|
var property = "abc"
|
|
get() = $property + 1
|
|
|
|
fun foo(){
|
|
"${$property<caret>}"
|
|
}
|
|
}
|
|
|
|
// ELEMENT: $property
|