Fix intentions testData: types rendering changed

Some more FQ names appeared.
The reason is that earlier such types were Lazy and their `toString` method return short version.
But after type enhancement they are represented with JetTypeImpl
This commit is contained in:
Denis Zharkov
2015-06-18 13:44:13 +03:00
parent f0833d626a
commit befe025d21
6 changed files with 13 additions and 13 deletions
@@ -1,7 +1,7 @@
// WITH_RUNTIME // WITH_RUNTIME
// SUGGESTED_RETURN_TYPES: kotlin.Boolean?, kotlin.Boolean // SUGGESTED_RETURN_TYPES: kotlin.Boolean?, kotlin.Boolean
// PARAM_DESCRIPTOR: value-parameter val it: kotlin.Map.Entry<(Boolean..Boolean?), (Boolean..Boolean?)> defined in test.<anonymous> // PARAM_DESCRIPTOR: value-parameter val it: kotlin.Map.Entry<(kotlin.Boolean..kotlin.Boolean?), (kotlin.Boolean..kotlin.Boolean?)> defined in test.<anonymous>
// PARAM_TYPES: kotlin.Map.Entry<(Boolean..Boolean?), (Boolean..Boolean?)> // PARAM_TYPES: kotlin.Map.Entry<(kotlin.Boolean..kotlin.Boolean?), (kotlin.Boolean..kotlin.Boolean?)>
fun test() { fun test() {
J.getMap().filter { <selection>it.getKey()</selection> } J.getMap().filter { <selection>it.getKey()</selection> }
} }
@@ -1,7 +1,7 @@
// WITH_RUNTIME // WITH_RUNTIME
// SUGGESTED_RETURN_TYPES: kotlin.Boolean?, kotlin.Boolean // SUGGESTED_RETURN_TYPES: kotlin.Boolean?, kotlin.Boolean
// PARAM_DESCRIPTOR: value-parameter val it: kotlin.Map.Entry<(Boolean..Boolean?), (Boolean..Boolean?)> defined in test.<anonymous> // PARAM_DESCRIPTOR: value-parameter val it: kotlin.Map.Entry<(kotlin.Boolean..kotlin.Boolean?), (kotlin.Boolean..kotlin.Boolean?)> defined in test.<anonymous>
// PARAM_TYPES: kotlin.Map.Entry<(Boolean..Boolean?), (Boolean..Boolean?)> // PARAM_TYPES: kotlin.Map.Entry<(kotlin.Boolean..kotlin.Boolean?), (kotlin.Boolean..kotlin.Boolean?)>
fun test() { fun test() {
J.getMap().filter { b(it) } J.getMap().filter { b(it) }
} }
@@ -1,7 +1,7 @@
// WITH_RUNTIME // WITH_RUNTIME
// SUGGESTED_NAMES: i, getN // SUGGESTED_NAMES: i, getN
// PARAM_TYPES: String?, String, kotlin.CharSequence?, CharSequence // PARAM_TYPES: kotlin.String?, kotlin.String, kotlin.CharSequence?, CharSequence
// PARAM_DESCRIPTOR: val property: (String..String?) defined in test // PARAM_DESCRIPTOR: val property: (kotlin.String..kotlin.String?) defined in test
fun test() { fun test() {
val property = System.getProperty("some") val property = System.getProperty("some")
val n = <selection>property?.length()</selection> val n = <selection>property?.length()</selection>
@@ -1,7 +1,7 @@
// WITH_RUNTIME // WITH_RUNTIME
// SUGGESTED_NAMES: i, getN // SUGGESTED_NAMES: i, getN
// PARAM_TYPES: String?, String, kotlin.CharSequence?, CharSequence // PARAM_TYPES: kotlin.String?, kotlin.String, kotlin.CharSequence?, CharSequence
// PARAM_DESCRIPTOR: val property: (String..String?) defined in test // PARAM_DESCRIPTOR: val property: (kotlin.String..kotlin.String?) defined in test
fun test() { fun test() {
val property = System.getProperty("some") val property = System.getProperty("some")
val n = i(property) val n = i(property)
@@ -1,7 +1,7 @@
// WITH_RUNTIME // WITH_RUNTIME
// SUGGESTED_NAMES: i, getN // SUGGESTED_NAMES: i, getN
// PARAM_TYPES: String, CharSequence // PARAM_TYPES: kotlin.String, CharSequence
// PARAM_DESCRIPTOR: val property: (String..String?) defined in test // PARAM_DESCRIPTOR: val property: (kotlin.String..kotlin.String?) defined in test
fun test() { fun test() {
val property = System.getProperty("some") val property = System.getProperty("some")
val n = <selection>property.length()</selection> val n = <selection>property.length()</selection>
@@ -1,7 +1,7 @@
// WITH_RUNTIME // WITH_RUNTIME
// SUGGESTED_NAMES: i, getN // SUGGESTED_NAMES: i, getN
// PARAM_TYPES: String, CharSequence // PARAM_TYPES: kotlin.String, CharSequence
// PARAM_DESCRIPTOR: val property: (String..String?) defined in test // PARAM_DESCRIPTOR: val property: (kotlin.String..kotlin.String?) defined in test
fun test() { fun test() {
val property = System.getProperty("some") val property = System.getProperty("some")
val n = i(property) val n = i(property)