Remove JetTypeMapper.map{G,S}etterSignature

Merge their logic with mapSignature()
This commit is contained in:
Alexander Udalov
2013-12-24 19:58:24 +04:00
parent e531bebe06
commit ace326f4cf
6 changed files with 72 additions and 116 deletions
@@ -0,0 +1,5 @@
class GenericProperty {
void foo() {
java.util.Map<?, ?> o = a.APackage.getTest();
}
}
@@ -0,0 +1,6 @@
// Tests that type variables of properties are written to the getter signature
package a
val <K, V> test: Map<K, V>
get() = java.util.HashMap()