Implement "Safe Delete" refactoring for named functions

Conflicts:
	idea/src/org/jetbrains/jet/plugin/refactoring/safeDelete/KotlinSafeDeleteProcessor.java
This commit is contained in:
Alexey Sedunov
2013-07-12 18:18:46 +04:00
parent 6658564bdd
commit cd6b6e4934
71 changed files with 1442 additions and 43 deletions
@@ -0,0 +1,8 @@
trait B: A {
public override fun foo() {
throw UnsupportedOperationException()
}
}
class D: C() {
}