summaryrefslogtreecommitdiff
path: root/test/files/run/delambdafy_uncurry_inline.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-8960 Bring back the SerialVersionUID to anonymous function classesLukas Rytz2014-11-051-1/+1
| | | | | | | | | | | | | | | In PR #1673 / 4267444, the annotation `SerialVersionId` was changed from a `StaticAnnotation` to `ClassFileAnnotation` in order to enforce annotation arguments to be constants. That was 2.11.0. The ID value in the AnnotationInfo moved from `args` to `assocs`, but the backend was not adjusted. This was fixed in PR #3711 / ecbc9d0 for 2.11.1. Unfortunately, the synthetic AnnotationInfo that is added to anonymous function classes still used the old constructor (`args` instead of `assocs`), so extracting the value failed, and no field was added to the classfile.
* Adds a setting to delay delambdafication. If set then uncurry liftsJames Iry2013-11-061-0/+23
the body of a lambda into a local def. Tests are included to show the different tree shapes.