summaryrefslogtreecommitdiff
path: root/test/files/run/t9546c.scala
Commit message (Collapse)AuthorAgeFilesLines
* Refactor transform of case apply in refchecksJason Zaugg2016-03-021-0/+13
I've identified a dead call to `transformCaseApply` that seems to date back to Scala 2.6 vintages, in which case factory methods were a fictional companion method, rather than a real apply method in a companion module. This commit adds an abort in that code path to aide code review (if our test suite still passes, we know that I've removed dead code, rather than silently changing behaviour.) The following commit will remove it altogether I then inlined a slightly clunky abstraction in the two remaining calls to `transformCaseApply`. It was getting in the way of a clean fix to SI-9546, the topic of the next commit.