summaryrefslogtreecommitdiff
path: root/src/library
Commit message (Collapse)AuthorAgeFilesLines
* A variety of bugfixes discovered by findbugs.Paul Phillips2010-01-133-5/+6
| | | | | | examples of equality comparisons which are guaranteed to return false because someone is not comparing what they think they're comparing.
* Overrode slice in the StringLike derivatives to...Paul Phillips2010-01-132-0/+6
| | | | | | Overrode slice in the StringLike derivatives to use substring. Closes #2895. Review by community.
* Updated attempt at removing @inline warnings:Iulian Dragos2010-01-123-4/+4
| | | | | | | - fixed a bug in closure elimination causing VerifyErrors - fixed a broken assert in GenICode that fired when -Ydebug was used - added final modifiers
* Deprecated "=>?". Closes #2860 (see #2819).Antonio Cunei2010-01-121-1/+1
|
* A fix for at least one manifestation of #2865.Paul Phillips2010-01-121-1/+5
| | | | | collections and "size" don't mix!
* Added toMap to TraversableLike.Paul Phillips2010-01-121-3/+17
|
* Fix and test case for #2364, which regressed wi...Paul Phillips2010-01-111-1/+3
| | | | | Fix and test case for #2364, which regressed with the fix to #2721.
* Fix for #2883, a regression introduced in r18789.Paul Phillips2010-01-111-12/+18
| | | | | | a regression because the pattern matcher has extractor bugs which don't manifest for case classes. Underlying bug remains. No review.
* Fixed #2810.Aleksandar Pokopec2010-01-111-1/+1
| | | | | no review
* Revised List#mapConserve so that it tests wrt e...Martin Odersky2010-01-111-4/+4
| | | | | Revised List#mapConserve so that it tests wrt eq not ==.
* Red black tree patch and test.Aleksandar Pokopec2010-01-111-8/+69
| | | | | no review
* Reverting r20406 (dragos)Antonio Cunei2010-01-082-3/+3
|
* Added final modifiers to several classes used b...Iulian Dragos2010-01-072-3/+3
| | | | | | Added final modifiers to several classes used by Predef implicits. Review by community.
* Added warning for failed inlining when the targ...Iulian Dragos2010-01-071-1/+1
| | | | | | Added warning for failed inlining when the target is @inline annotated. No review necessary.
* Fixed #2844 with dpp's patch. review by xmlteam.Martin Odersky2010-01-071-1/+1
|
* Fixes #2857. No review.Hubert Plociniczak2010-01-061-1/+3
|
* Closes #2853. No review necessary.Martin Odersky2010-01-051-1/+1
|
* Fixed #2852 and #2854.Philipp Haller2010-01-045-25/+35
|
* Added an XML.load overload which takes an URL.Paul Phillips2009-12-311-1/+3
|
* Created team of private[collection] abstract cl...Paul Phillips2009-12-236-117/+163
| | | | | | | | | | | | Created team of private[collection] abstract classes and traits in scala.collection.views. Factored boilerplate and base Transformed traits out of *ViewLike classes. Executive summary and motivation: 4812029 Dec 23 09:47 scala-library.jar // before 4604150 Dec 23 09:24 scala-library.jar // after Direct size savings of 4.5%. Review by odersky.
* Took full advantage of the new =>? alias for th...Paul Phillips2009-12-2210-31/+31
| | | | | | | Took full advantage of the new =>? alias for the superverbosely named PartialFunction by renaming every usage of the latter except when in comments.
* Closes #2819, #2705, #2805. Review by community.Martin Odersky2009-12-221-0/+2
|
* fixed #2548 - reverse, reverseIterator for view...Aleksandar Pokopec2009-12-221-1/+10
| | | | | | fixed #2548 - reverse, reverseIterator for views bug. Also - reverseMap for views now should work. review by phaller.
* (1) Added some classes to allow arbitrary patch...Martin Odersky2009-12-211-3/+39
| | | | | | | | (1) Added some classes to allow arbitrary patches to source buffers. (These are not yet complete so do not need a review yet I think. (2) Avoided reflexive array operations in ScalaRunTime. review by (community.
* closed #2181. no review.Philipp Haller2009-12-211-1/+2
|
* Improved deprecated warnings. No review necessary.Martin Odersky2009-12-211-16/+16
|
* Minimally integrated the semi-orphaned immutabl...Paul Phillips2009-12-211-46/+20
| | | | | | | Minimally integrated the semi-orphaned immutable.Stack into the collections hierarchy and enabled it in the sequence tests. Closes #2822. review by community.
* Began the process of consolidating all the code...Paul Phillips2009-12-172-173/+112
| | | | | | | | Began the process of consolidating all the code which is painfully duplicated between MarkupParsers and MarkupParser. This motivated by the reappearance of bug #2354 in the exact same form as the one I already fixed. no review.
* Fixed build problem caused by r20203.Martin Odersky2009-12-172-0/+24
|
* Closed #2795. review by dubochet.Martin Odersky2009-12-172-4/+4
|
* hardening the compiler to avoid exceptions I ob...Martin Odersky2009-12-171-1/+1
| | | | | | hardening the compiler to avoid exceptions I observed when used under Eclipse.
* Moved takeDestructively into GroupedIterator.Paul Phillips2009-12-151-17/+15
|
* more docs. noreview.Martin Odersky2009-12-155-188/+288
|
* corrected @usecase and imports in plugin examplemichelou2009-12-151-1/+1
|
* lost of documentation and some small adjustment...Martin Odersky2009-12-1434-969/+1160
| | | | | lost of documentation and some small adjustments to collection classes.
* Took advantage of package object fix to factor ...Paul Phillips2009-12-123-265/+148
| | | | | | | Took advantage of package object fix to factor the duplicated code out of scala.Math and scala.math.`package`. This required a new starr which exposes inherited package object members (starr is based on r20110.)
* allowed $super variables in doc comment; some m...Martin Odersky2009-12-115-281/+367
| | | | | | allowed $super variables in doc comment; some more documentation of collection classes.
* Don't NPE on null hashtable entries.Paul Phillips2009-12-102-2/+2
|
* Modified partialMap to take PartialFunction[A, ...Paul Phillips2009-12-105-5/+6
| | | | | | | | | Modified partialMap to take PartialFunction[A, B] instead of Any => B. There was definitely some reason I didn't do this in the first place, but either that reason no longer applies or it's not easily induced. However please consider this change slightly tentative as I feel like that other shoe may still be out there and we might have to reconsider.
* Remedying the fact that I swapped which version...Paul Phillips2009-12-101-10/+22
| | | | | | | Remedying the fact that I swapped which version of List.fromString was to be deprecated and which was to be deleted, plus some better deprecation advice.
* refined doc comments generation; refactored cod...Martin Odersky2009-12-103-136/+118
| | | | | | | refined doc comments generation; refactored code into new Chars, DocStrings classes in util. Added some more doc comments to collection classes.
* Gave all the manifest singletons a readResolve ...Paul Phillips2009-12-091-9/+23
| | | | | | Gave all the manifest singletons a readResolve so they unserialize to themselves.
* Renamed AbstractFunction to AbstractFunction0 t...Paul Phillips2009-12-091-0/+0
| | | | | Renamed AbstractFunction to AbstractFunction0 to keep ant happy.
* Removed productPrefix from case class hashCode ...Paul Phillips2009-12-091-1/+1
| | | | | | Removed productPrefix from case class hashCode consideration. (It is not used in equality and therefore should not be used in hashCode either.)
* Took manifests a little closer to the finish line.Paul Phillips2009-12-092-25/+47
| | | | | | doesn't work but the relationships between all the top, nearly top, and bottom types should all be all correct. (See lengthy test case.)
* Re-deleted a method which snuck back in on the ...Paul Phillips2009-12-071-15/+6
| | | | | Re-deleted a method which snuck back in on the last commit.
* new doc comment generation, including some new ...Martin Odersky2009-12-078-337/+560
| | | | | | new doc comment generation, including some new style doc comments in collection classes.
* Added lift method to PartialFunctionMartin Odersky2009-12-071-0/+2
|
* Updated copyright notices to 2010Antonio Cunei2009-12-07521-525/+525
|
* close #2708Lukas Rytz2009-12-041-0/+51
|