JVM_IR: serialize anonymous functions' descriptors

This commit is contained in:
pyos
2019-11-22 14:03:30 +01:00
committed by Alexander Udalov
parent e246c23a46
commit 98660cdf2d
11 changed files with 79 additions and 3 deletions
@@ -23648,6 +23648,16 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
public void testParameterNamesAndNullability() throws Exception {
runTest("compiler/testData/codegen/box/reflection/lambdaClasses/parameterNamesAndNullability.kt");
}
@TestMetadata("reflectOnLambdaInField.kt")
public void testReflectOnLambdaInField() throws Exception {
runTest("compiler/testData/codegen/box/reflection/lambdaClasses/reflectOnLambdaInField.kt");
}
@TestMetadata("reflectOnLambdaInStaticField.kt")
public void testReflectOnLambdaInStaticField() throws Exception {
runTest("compiler/testData/codegen/box/reflection/lambdaClasses/reflectOnLambdaInStaticField.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/reflection/mapping")