summaryrefslogtreecommitdiff
path: root/test/files/run/lift-and-unlift.scala
Commit message (Collapse)AuthorAgeFilesLines
* Moved unlift to the Function companion object, ...Paul Phillips2011-02-201-2/+4
| | | | | | | | | | | | | | Moved unlift to the Function companion object, which might have been better in the first place. Had to make a minor change to genprod, and then I couldn't escape that unscathed. Finished the not very complete undertaking I found there to update the scaladoc. Lots of little changes to the generated text and code. I changed genprod to only put a unique stamp on Function0 so we can stop having a 100 file diff everytime an i is dotted somewhere. Closes #3825, no review.
* Proposed implementation of 'unlift' on Function...Paul Phillips2010-09-091-0/+25
Proposed implementation of 'unlift' on Function1, the inverse function of PartialFunction#lift. Review by rytz and other interested parties. References #3825, but not closing until this is further considered.