aboutsummaryrefslogtreecommitdiff
path: root/tests/pos-java-interop/innerClass
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade backend to fix Java interop for inner classesGuillaume Martres2017-01-271-2/+1
| | | | | | The upgraded backend contains a single new PR: https://github.com/DarkDimius/scala/pull/4 which fixes Java interop with Dotty-emitted inner classes in objects.
* Partially fix Java interop for emitted inner classesGuillaume Martres2017-01-112-0/+17
The backend uses `rawname` to define the "inner name" of an InnerClass entry in a classfile, this should be the simple name of the class before any mangling takes place. Fixing this allows Java code to reference dotty inner classes, except if they're defined in objects which is still broken until https://github.com/DarkDimius/scala/pull/4 is merged and a new backend is published.