summaryrefslogtreecommitdiff
path: root/test/files/jvm/t9044.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-9044 Fix order of interfaces in classfilesLukas Rytz2014-12-181-0/+6
It was reversed since ced3ca8ae1. The reason is that the backend used `mixinClasses` to obtain the parents of a class, which returns them in linearization order. `mixinClasses` als returns all ancestors (not only direct parents), which means more work for `minimizeInterfaces`. This was introduced in cd62f52 for unclear reasons. So we switch back to using `parents`.