Implement "Safe Delete" refactoring for properties

This commit is contained in:
Alexey Sedunov
2013-07-19 19:01:34 +04:00
parent 9c60637ef3
commit 639336b2f5
109 changed files with 1287 additions and 85 deletions
@@ -0,0 +1,17 @@
trait A {
var <caret>foo: String
}
trait Z {
var foo: String
}
class B: A, Z {
override val foo: String
get() {
return "B"
}
set(value: String) {
}
}