Fix TypeAliasConstructorDescriptor's to create only once when required

Some IDE features relates onto that same descriptors will remain same
between resolve calls
Fix it to be true for TypeAliasConstructorDescriptor's

 #KT-16265 fixed
This commit is contained in:
Simon Ogorodnik
2017-03-14 15:51:20 +03:00
parent 23cbb83c75
commit f56af41d1e
12 changed files with 113 additions and 46 deletions
@@ -0,0 +1,14 @@
class A(val a: Int) {
constructor(val b: String) : this(b.toInt())
}
typealias TA = A
fun usage() {
val x = TA(<caret>)
}
/*
Text: (<highlight>a: Int</highlight>), Disabled: false, Strikeout: false, Green: false
Text: (<highlight>b: String</highlight>), Disabled: false, Strikeout: false, Green: false
*/