DescriptorRendererImpl now writes 'inner' for inner classes

#KT-1174 In Progress
This commit is contained in:
Alexander Udalov
2012-12-03 21:56:05 +04:00
parent 0b51a6cae0
commit 65716431c4
22 changed files with 48 additions and 39 deletions
@@ -1,10 +1,10 @@
package test
public open class InnerClassesInGeneric<P, Q>() : java.lang.Object() {
public open class Inner() : java.lang.Object() {
public open inner class Inner() : java.lang.Object() {
}
public open class Inner2() : Inner() {
public open inner class Inner2() : Inner() {
public open fun iterator() : jet.MutableIterator<P>? {
throw UnsupportedOperationException()
}