Implement serialization of inner types
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
* Copyright 2010-2015 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package test
|
||||
|
||||
class Outer<E, F> {
|
||||
inner class Inner<G, H> {
|
||||
inner class Inner3<I> {
|
||||
fun foo(
|
||||
x: Outer<String, F>.Inner<G, Int>,
|
||||
y: Inner<E, Double>,
|
||||
z: Outer<String, F>.Inner<G, Int>.Inner3<Double>,
|
||||
w: Inner3<*>) {}
|
||||
}
|
||||
}
|
||||
|
||||
inner class Inner2
|
||||
|
||||
fun bar(x: Outer<String, Double>.Inner2, y: Inner2) {}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package test
|
||||
|
||||
public final class Outer</*0*/ E, /*1*/ F> {
|
||||
/*primary*/ public constructor Outer</*0*/ E, /*1*/ F>()
|
||||
public final fun bar(/*0*/ x: test.Outer<kotlin.String, kotlin.Double>.Inner2, /*1*/ y: test.Outer<E, F>.Inner2): kotlin.Unit
|
||||
|
||||
public final inner class Inner</*0*/ G, /*1*/ H> {
|
||||
/*primary*/ public constructor Inner</*0*/ G, /*1*/ H>()
|
||||
|
||||
public final inner class Inner3</*0*/ I> {
|
||||
/*primary*/ public constructor Inner3</*0*/ I>()
|
||||
public final fun foo(/*0*/ x: test.Outer<kotlin.String, F>.Inner<G, kotlin.Int>, /*1*/ y: test.Outer<E, F>.Inner<E, kotlin.Double>, /*2*/ z: test.Outer<kotlin.String, F>.Inner<G, kotlin.Int>.Inner3<kotlin.Double>, /*3*/ w: test.Outer<E, F>.Inner<G, H>.Inner3<*>): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
public final inner class Inner2 {
|
||||
/*primary*/ public constructor Inner2()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user