summaryrefslogtreecommitdiff
path: root/test/files/presentation/ide-bug-1000349.check
Commit message (Collapse)AuthorAgeFilesLines
* Maintenance of Predef.Paul Phillips2013-02-121-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1) Deprecates much of Predef and scala.Console, especially: - the read* methods (see below) - the set{Out,Err,In} methods (see SI-4793) 2) Removed long-deprecated: - Predef#exit - Predef#error should have gone, but could not due to sbt At least the whole source base has now been future-proofed against the eventual removal of Predef#error. The low justification for the read* methods should be readily apparent: they are little used and have no call to be in global namespace, especially given their weird ad hoc semantics and unreasonably tempting names such as readBoolean(). 3) Segregated the deprecated elements in Predef from the part which still thrives. 4) Converted all the standard Predef implicits into implicit classes, value classes where possible: - ArrowAssoc, Ensuring, StringFormat, StringAdd, RichException (value) - SeqCharSequence, ArrayCharSequence (non-value) Non-implicit deprecated stubs prop up the names of the formerly converting methods.
* SI-6811 Remove primitive widenings and /:\Simon Ochsenreither2013-01-171-2/+1
|
* A whole bunch of checkfile updates.Paul Phillips2012-05-101-3/+3
| | | | | Wasn't me this time (I don't think!) Mr. Robot can't get here too soon for me.
* Presentation Compiler tests for visibility of members.Iulian Dragos2012-04-301-34/+34
| | | | Removed some unneeded indirection in the testing framework.
* Enabled Presentation Compiler test for IDE tick...Micro Dotta2011-11-111-0/+40
Enabled Presentation Compiler test for IDE ticket #1000349, which has been fixed by odersky in r25625. no review.