summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Test case for #2250, which Martin fixed in r18589.Paul Phillips2009-08-271-0/+12
|
* error messge when ANT_OPTS is not setLukas Rytz2009-08-271-0/+6
|
* added manifests to most parts of standard libra...Martin Odersky2009-08-2740-1807/+2012
| | | | | | | added manifests to most parts of standard library which deal with arrays. One test is temporarily disabled, as it shows a deep problem with multi-dimensional arrays (which was present all along).
* Fix and test case for #2187 and its duplicate #...Paul Phillips2009-08-272-1/+9
| | | | | Fix and test case for #2187 and its duplicate #2192.
* Fix for #2240.Paul Phillips2009-08-271-1/+4
|
* Removed debugging printlnIulian Dragos2009-08-271-3/+1
|
* Swapped some Eithers around to try to get every...Paul Phillips2009-08-275-24/+19
| | | | | | Swapped some Eithers around to try to get everyone in line with the convention, which is failure in Left, success in Right.
* Removed ComparableTraversableOps and NumericTra...Paul Phillips2009-08-272-54/+32
| | | | | | | | Removed ComparableTraversableOps and NumericTraversableOps in favor of methods directly on Traversable. We can revisit this, but for the time being I think it'd be wise to reduce the use of implicits wherever we can easily do so.
* Exposed stdin as a PrintWriter.Paul Phillips2009-08-261-3/+7
|
* Fixed the stream threads so you should get all ...Paul Phillips2009-08-261-22/+53
| | | | | Fixed the stream threads so you should get all your process output.
* Initial implementation of scala.io.Process.Paul Phillips2009-08-262-0/+124
|
* Fixed faulty constant propagation in the optimi...Iulian Dragos2009-08-261-5/+10
| | | | | Fixed faulty constant propagation in the optimizer (#2279)
* Some functionalization achieved while trying to...Paul Phillips2009-08-261-24/+20
| | | | | | Some functionalization achieved while trying to figure out if we can make reduceLeft work right on Stream.
* Tail recursive foldLeft for Stream.Paul Phillips2009-08-261-0/+11
|
* Fix for #2275 with tests.Miles Sabin2009-08-256-8/+52
|
* Really fixed #2294.Miles Sabin2009-08-251-1/+1
|
* Fixed #2294.Miles Sabin2009-08-251-1/+1
|
* Small tweak to nextString to unhose the distrib...Paul Phillips2009-08-251-1/+1
| | | | | Small tweak to nextString to unhose the distribution.
* Added nextString(length: Int) to util.Random.Paul Phillips2009-08-251-0/+17
|
* new starr with class manifestsMartin Odersky2009-08-2517-29/+35
|
* Added 'foreach' method in Stream that is tail-c...Iulian Dragos2009-08-251-0/+16
| | | | | | Added 'foreach' method in Stream that is tail-call optimized, and which does not hold references to stream elements (fix for #692).
* fixed io test on windowsLukas Rytz2009-08-251-1/+1
|
* fixed #2291Lukas Rytz2009-08-251-1/+1
|
* using ANT_OPTS as jvm arguments for scalacforkLukas Rytz2009-08-241-1/+1
|
* new starr with better Manifest handlingMartin Odersky2009-08-243-3/+3
|
* Fixed #2160.Philipp Haller2009-08-241-1/+1
|
* Added Console.setErr and Console.withErr methods.Philipp Haller2009-08-241-4/+40
|
* another missing file, sorry.Martin Odersky2009-08-241-0/+148
|
* checked in missing file.Martin Odersky2009-08-241-0/+6
|
* Refined manifest checking in preparation for ar...Martin Odersky2009-08-245-102/+123
| | | | | | Refined manifest checking in preparation for arrays with manifests change.
* updated checkfile for neg/viewtestAdriaan Moors2009-08-241-1/+7
|
* another starr, based on r18539 and Martin's cha...Adriaan Moors2009-08-243-3/+3
| | | | | another starr, based on r18539 and Martin's changes -- hopefully this one works in Windows
* fixing bootstrapping problem wrt removing ident...Adriaan Moors2009-08-244-5/+8
| | | | | fixing bootstrapping problem wrt removing identity as an implicit
* Taking a little more advantage of some recent a...Paul Phillips2009-08-244-86/+96
| | | | | Taking a little more advantage of some recent abstractions.
* Generalized pattern matcher generated null test.Paul Phillips2009-08-232-1/+12
|
* Tweaked a concurrent.ops method to adhere to th...Paul Phillips2009-08-232-20/+15
| | | | | Tweaked a concurrent.ops method to adhere to the Either convention.
* Cleaner sameElements implementation for linear ...Paul Phillips2009-08-232-20/+27
| | | | | Cleaner sameElements implementation for linear seq, and fix for #2040.
* Some minor logic simplifying falling out of equ...Paul Phillips2009-08-232-82/+61
| | | | | Some minor logic simplifying falling out of equality work.
* Fix and test case for #2241.Paul Phillips2009-08-232-1/+9
|
* Numeric implementations for Short and Byte now ...Paul Phillips2009-08-231-0/+30
| | | | | | Numeric implementations for Short and Byte now that I'm hearing of the occasional Numeric user.
* A few straggler deprecations with straightforwa...Paul Phillips2009-08-227-18/+12
| | | | | A few straggler deprecations with straightforward enough resolutions.
* These might be the last of the deprecation warn...Paul Phillips2009-08-228-12/+14
| | | | | | | | | | | | | | | | These might be the last of the deprecation warnings I can obey in good conscience without doing some less robotic work first. Most of the remaining deprecations do any of: * deprecate in favor of non-existent function * deprecate in favor of function which doesn't quite work yet e.g. List.{ map2, forall2 } * deprecate in favor of function which blows the stack (Iterator.append says to use ++ but this ends poorly, see nsc's TreeSet) * deprecate in favor of a function which doesn't do the same thing e.g. List.-- says to use diff instead, but List(1,1) -- List(1) != List(1,1) diff List(1)
* Deprecation patrol continues patrolling.Paul Phillips2009-08-2226-50/+48
|
* Deprecation patrol.Paul Phillips2009-08-2213-38/+38
|
* A few minor documentation fixes.Paul Phillips2009-08-225-12/+12
|
* Fixed #2283.Paul Phillips2009-08-221-1/+1
|
* The fruit of a bunch of iteration on Iterator.Paul Phillips2009-08-222-48/+154
| | | | | Flexible yet simple/clean API for grouped and sliding.
* Better scaladocsIngo Maier2009-08-221-4/+9
|
* Fix for the discovery that .get on a non-existe...Paul Phillips2009-08-211-1/+1
| | | | | | Fix for the discovery that .get on a non-existent Map key returns None, even if a default value has been declared.
* Reverted r18344 as it is interacting badly with...Paul Phillips2009-08-212-24/+2
| | | | | Reverted r18344 as it is interacting badly with package objects.