Eliminate redundant descriptorToDeclaration call from factory for "Change signature" quick fixes

This commit is contained in:
Pavel V. Talanov
2013-10-15 17:22:50 +04:00
parent 8c95884ad2
commit f032b6e236
9 changed files with 93 additions and 18 deletions
@@ -0,0 +1,19 @@
// "Add parameter to function 'f'" "true"
trait Z {
fun f()
}
trait ZZ {
fun f()
}
trait ZZZ: Z, ZZ {
}
trait ZZZZ : ZZZ {
override fun f()
}
fun usage(z: ZZZ) {
z.f(<caret>3)
}