summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fix cyclic reference errors in scaladoc.Lukas Rytz2009-11-0469-218/+62
|
* bit missingAntonio Cunei2009-11-042-2/+2
|
* Clarification to scaladoc comments for "sort".Antonio Cunei2009-11-042-6/+6
|
* Fix for #2556Hubert Plociniczak2009-11-041-0/+3
|
* Some tabs I unwittingly let creep in are now sp...Paul Phillips2009-11-041-135/+135
| | | | | Some tabs I unwittingly let creep in are now spaces.
* Scala implementation of fancier hashCode algori...Paul Phillips2009-11-046-4/+220
| | | | | | | | Scala implementation of fancier hashCode algorithm. At the moment it isn't used unless you supply -Yjenkins-hashCodes to scalac. Without the flag, the supplied test case generates 12559 unique hashCodes among 90000 case class instances; with the flag it generates 89999.
* Deleted Zero, or "Nothing ventured, Nothing gai...Paul Phillips2009-11-042-82/+0
| | | | | Deleted Zero, or "Nothing ventured, Nothing gained."
* Fix and test for #2527Philipp Haller2009-11-033-3/+29
|
* Applied patch for #2524.Philipp Haller2009-11-032-3/+28
|
* Fix and test for #2530.Philipp Haller2009-11-034-1/+111
|
* fixed #2500 (second part)Adriaan Moors2009-11-035-8/+5
| | | | | missed some compile errors because I didn't do a full recompile...
* fixed #2500: refactoring collections so that a ...Adriaan Moors2009-11-0310-36/+28
| | | | | | | | | | fixed #2500: refactoring collections so that a `collection.{Map|SortedMap|SortedSet}` can be built from the corresponding collection (thus, do not require the immutable one) pulling up newBuilder method from Immutable*Factory to *Factory, and inheriting *Factory in scala.collection companion objects, instead of the Immutable*Factory this way, you can, e.g., build a collection.Map from a collection.Map (instead of requiring an immutable.Map)
* Fixed #2545.Martin Odersky2009-11-029-21/+93
|
* Fixed remove/clear/update issues in BufferWrapp...Ingo Maier2009-11-022-4/+4
| | | | | Fixed remove/clear/update issues in BufferWrapper and layout map.
* fixed problem with Vector.dropRight, added addi...Tiark Rompf2009-11-023-30/+232
| | | | | fixed problem with Vector.dropRight, added additional test case
* Vector improvements, now doing a lot less copyi...Tiark Rompf2009-11-021-392/+455
| | | | | | Vector improvements, now doing a lot less copying for single element appends/updates
* Synchronize trunk with local changes:Ingo Maier2009-11-0245-154/+393
| | | | | | | | | | | | | * Fixes for #2452, #2036, #2491 * More comments * Added paint methods * Added convenience methods and constructors * Deprecated UIApplication classes, replaced by SwingApplication classes * Replaced case class inheritance by unapplies * Introduced type aliases for AWT classes in package object * Refactored RichWindow hierarchy * Some minor code cleanup
* Some structural improvements to Either and Opti...Paul Phillips2009-11-012-56/+77
| | | | | | | | | | Some structural improvements to Either and Option which leverage recent awesomeness in constraining type parameters. In Either I was able to define joinLeft and joinRight on the instance rather than on the object, and while I didn't manage that directly with merge, it can at least be accomplished via implicit as endorsed by martin 25/Jun/09 on scala-internals.
* Corrected comment contents.Miles Sabin2009-11-011-1/+2
|
* Proper fix for #2280Hubert Plociniczak2009-10-303-76/+85
|
* Fix for spurious timeouts in partest (as observ...Philipp Haller2009-10-301-27/+48
| | | | | | Fix for spurious timeouts in partest (as observed in latest scala-nightly-args).
* Added -Ybuilder-debug:[none,simple,refined] opt...Miles Sabin2009-10-306-4/+35
| | | | | | | Added -Ybuilder-debug:[none,simple,refined] option for testing the interactive build manager; added support for reporting comments during compilation; unbroke the test.positions build target.
* separated Vector impl from IndexedSeqTiark Rompf2009-10-309-1084/+1106
|
* fixed 2544, reimplemented SeqLike.indexWhere, s...Tiark Rompf2009-10-303-26/+44
| | | | | | fixed 2544, reimplemented SeqLike.indexWhere, segmentLength and lengthCompare in terms of iterators instead of foreach and breaks
* Reverted [19310] ...Miles Sabin2009-10-294-64/+71
|
* AnnotationInfo.pos no longer in constructor.Lukas Rytz2009-10-2916-45/+48
|
* added -Yhigher-kinded-raw switch as temporary w...Adriaan Moors2009-10-292-1/+2
| | | | | added -Yhigher-kinded-raw switch as temporary workaround for #2454
* changed standard library so that it does not re...Martin Odersky2009-10-2872-26/+142
| | | | | | | | changed standard library so that it does not rely in scala package object in initial bootstrap of Predef. Disabled reading scala package during that bootstrap. This is an attempt to solve the cyclic reference errors in #2501.
* Fix for some accidentally enabled logging.Paul Phillips2009-10-281-4/+6
|
* Whole bunch of code for people interested in eq...Paul Phillips2009-10-285-291/+140
| | | | | | | | Whole bunch of code for people interested in equality. This includes four command line options you can use to alter equality semantics and the various levels of babbling and panicking which the runtime has to offer when confronted with a boxed primitive comparison.
* Fix for #1909Hubert Plociniczak2009-10-287-17/+13
|
* fixed typoMartin Odersky2009-10-281-1/+1
|
* Fixed #1342.Martin Odersky2009-10-2813-37/+177
|
* The final, tear-inducingly simple implementatio...Paul Phillips2009-10-281-8/+7
| | | | | | The final, tear-inducingly simple implementation of shape preserving shuffle.
* Made classpath do more advanced *-globbing.Paul Phillips2009-10-281-5/+13
| | | | | | of all or nothing you can give a java regexp and it will only use matching jars, example: scala -cp 'foo*bar*.jar'
* In a stunning breakthrough, shuffle preserves t...Paul Phillips2009-10-281-32/+8
| | | | | | In a stunning breakthrough, shuffle preserves the shape of the container.
* Improves Enumeration to obtain names of values ...Philipp Haller2009-10-273-8/+61
| | | | | | Improves Enumeration to obtain names of values through reflection. This addresses those parts of #2111 that we agreed on in the Scala meeting.
* Fix for #2280Hubert Plociniczak2009-10-273-62/+62
|
* Fixed #2494, plus some reorganization of swing ...Martin Odersky2009-10-2726-56/+84
| | | | | Fixed #2494, plus some reorganization of swing imports
* fixed bug in Stream::flatMap (still optimised a...Adriaan Moors2009-10-277-11/+34
| | | | | | fixed bug in Stream::flatMap (still optimised as it was needed for correctness --> added regression tests for corresponding tickets)
* Removed old fork-join library. Fixed build.Philipp Haller2009-10-275-2392/+0
|
* Fix and test for #2214.Philipp Haller2009-10-263-3/+45
|
* fixes separate compilation on .netLukas Rytz2009-10-261-1/+1
|
* Made scala.util.matching.Regex serializable.Philipp Haller2009-10-261-1/+3
|
* Reverting unwanted parts of last commit.Philipp Haller2009-10-268-25/+8
|
* Second half of fix and tests for #1518.Philipp Haller2009-10-2613-12/+136
|
* Modifications to the five accumulated ant-paras...Paul Phillips2009-10-265-1/+7
| | | | | | | | | | Modifications to the five accumulated ant-parasite files which are slowly driving me mad by being recompiled on every single run. One file renamed, one moved to the right directory, two given dummy implementations since they're completely commented out, and the actors package object changed to apply to scala.actors rather than _root_.actors.
* The arrival of scala.Zero.Paul Phillips2009-10-262-0/+81
| | | | | | existing codebase. What is it good for then? It's good for nothing. Thank you, I'll be here all night.
* First half of fix for #1518.Philipp Haller2009-10-264-15/+47
|
* Fix for #2528.Paul Phillips2009-10-261-0/+1
|