summaryrefslogtreecommitdiff
path: root/test/files/run/partialfun.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-8035 Deprecate automatic () insertion in argument listsSimon Ochsenreither2014-01-091-1/+1
| | | | | | | | | | | | | This promotes the () insertion warning from -Ywarn-adapted-args to a deprecation warning. -Xfuture tunrs it into a compiler error. Auto tupling remains unchanged for now. The tests have been fixed the following way: - Warnings caused by general sloppiness (Try(), Future(), ...) have been fixed. - Warnings which raise interesting questions (x == (), ...) received an updated checkfile for now.
* Normalized line endings.Paul Phillips2012-09-201-86/+86
| | | | | | This brings all the files into line with the .gitattributes settings, which should henceforth be automatically maintained by git.
* PartialFunction polishingPavel Pavlov2012-08-231-0/+86
- ScalaDocs added - TODOs fixed - controversive method `run` deleted - not used class runtime.AbstractTotalFunction removed - small corrections & fixes - tests for `orElse` & `runWith`