Add KotlinClassConstructorInfoHandler for showing parameter info of parameterized super class constructor.

^KT-41617 Fixed
This commit is contained in:
Sebastian Kaspari
2020-09-07 13:23:08 +02:00
committed by Vladimir Dolzhenko
parent d674f519fd
commit 01143f24a4
4 changed files with 32 additions and 5 deletions
@@ -0,0 +1,11 @@
open class Parameterized<A, C: Cloneable, R: Runnable>
class AC
class CC : Cloneable
class RC : Runnable {
override fun run() {}
}
class UsageClass : Parameterized<AC, CC<caret>, RC>()
//Text: (A, <highlight>C : Cloneable</highlight>, R : Runnable), Disabled: false, Strikeout: false, Green: false