Extract Class: Implement 'Extract Superclass' refactoring

#KT-11017 In Progress
This commit is contained in:
Alexey Sedunov
2016-09-05 15:56:16 +03:00
parent 8f5725345f
commit af2de09840
44 changed files with 1145 additions and 125 deletions
@@ -0,0 +1,10 @@
// NAME: X
interface T {}
// SIBLING:
class <caret>A : T {
// INFO: {checked: "true"}
fun foo() {
}
}