summaryrefslogtreecommitdiff
path: root/test/files/run
Commit message (Collapse)AuthorAgeFilesLines
* fixed problem with Vector.dropRight, added addi...Tiark Rompf2009-11-022-0/+205
| | | | | fixed problem with Vector.dropRight, added additional test case
* separated Vector impl from IndexedSeqTiark Rompf2009-10-302-0/+12
|
* fixed 2544, reimplemented SeqLike.indexWhere, s...Tiark Rompf2009-10-302-0/+29
| | | | | | fixed 2544, reimplemented SeqLike.indexWhere, segmentLength and lengthCompare in terms of iterators instead of foreach and breaks
* Improves Enumeration to obtain names of values ...Philipp Haller2009-10-272-0/+26
| | | | | | Improves Enumeration to obtain names of values through reflection. This addresses those parts of #2111 that we agreed on in the Scala meeting.
* Fixed #2494, plus some reorganization of swing ...Martin Odersky2009-10-271-1/+1
| | | | | Fixed #2494, plus some reorganization of swing imports
* fixed bug in Stream::flatMap (still optimised a...Adriaan Moors2009-10-276-0/+17
| | | | | | fixed bug in Stream::flatMap (still optimised as it was needed for correctness --> added regression tests for corresponding tickets)
* new classpaths.Lukas Rytz2009-10-265-1/+10
|
* Fix and test case for #2512, plus lots of time ...Paul Phillips2009-10-251-0/+14
| | | | | | | | Fix and test case for #2512, plus lots of time expended tuning HashSet starting sizes and growth rate, with almost nothing to show for it (but I did determine that "shadowed" is constructed identically something like 10,000 times, so there is probably a cache to be had there.)
* Parser fix involving backquoted identifiers (#2...Paul Phillips2009-10-231-0/+15
| | | | | Parser fix involving backquoted identifiers (#2514) plus test case.
* fixed #2428 for good.Martin Odersky2009-10-231-10/+10
|
* Added (a variation on) jorge ortiz's sortBy to ...Paul Phillips2009-10-221-0/+5
| | | | | | Added (a variation on) jorge ortiz's sortBy to SeqLike, added docs and test case. Added map to Ordering.
* built new starr and fixed test casesTiark Rompf2009-10-214-10/+11
|
* renamed Vector to IndexedSeqTiark Rompf2009-10-212-2/+2
|
* Fix and test for #2446.Philipp Haller2009-10-212-0/+10
|
* Implementation of martin's suggested fix for #1...Paul Phillips2009-10-202-0/+13
| | | | | Implementation of martin's suggested fix for #1503.
* Another bunch of work on Numeric, Range, Generi...Paul Phillips2009-10-191-7/+47
| | | | | | Another bunch of work on Numeric, Range, GenericRange, BigDecimal, and a pile of test cases for various aspects of GenericRange.
* A new and better fix for ticket #1373.Paul Phillips2009-10-191-0/+6
|
* Fixed new implementation of Range.Martin Odersky2009-10-161-1/+1
|
* Fixed #2422 abd #2461Martin Odersky2009-10-131-0/+22
|
* reverted immutable.Vector because it gave rando...Martin Odersky2009-10-123-0/+96
| | | | | | reverted immutable.Vector because it gave random build errors on my machine. Fixed various tickets, updated test and check files.
* Looked through the .disabled tests which are st...Paul Phillips2009-10-084-765/+26
| | | | | | | Looked through the .disabled tests which are still under files (as opposed to those moved to disabled.) Brought some back to life, put a stake through the heart of others, left two as they were.
* Moved a pile of passing tests from pending to f...Paul Phillips2009-10-071-0/+10
| | | | | | Moved a pile of passing tests from pending to files, fixed some untesty tests, and will now close the associated tickets.
* Test case for #2175.Paul Phillips2009-10-061-0/+20
|
* Test cases for some tickets fixed by recent arr...Paul Phillips2009-10-052-0/+21
| | | | | | Test cases for some tickets fixed by recent array and implicit activity: #1038, #1005, #1272.
* Test case for #298.Paul Phillips2009-10-052-0/+19
|
* Test case for #1609 and the first half of #2361.Paul Phillips2009-10-042-0/+15
|
* Sequence->SeqMartin Odersky2009-10-022-20/+20
|
* Fixed #1939,plus some moving things around.Martin Odersky2009-10-021-0/+34
|
* Fix and test case for #2075.Paul Phillips2009-10-011-0/+7
|
* Test case for #2030 and #2056.Paul Phillips2009-10-012-0/+10
|
* Fixed 'finally'.Iulian Dragos2009-09-302-0/+25
|
* fixed #2311.Martin Odersky2009-09-302-2/+2
|
* fixed #2316: No longer cache entire SearchResul...Adriaan Moors2009-09-291-0/+32
| | | | | | | | | | | | | | | | | | | | | | | fixed #2316: No longer cache entire SearchResult when looking for implicits in the parts of the expected type. (patch by retronym -- see ticket) A SearchResult may contain symbols local to the scope of the search that were used as implicit parameters, so they are not safely cacheable. The fix for #2101 does not suffice. That patch avoided bound symbols being duplicated, but the problem is much worse. The implicits for an expected type depend on more than just that type, so we cannot cache them using the expected type as a key. The neg/t2316 test illustrates this: T1 may provide two implicits, one requires an implicit T2, another an implicit T3. If an implicit T1 is first required when only a T2 is in scope, the SearchResult will describe the corresponding implicit. Now, if we enter an implicit value of type T3 into scope, the search should fail (it is ambiguous), but the cache does not take this new fact into account. The patch replaces the erroneous aggressive caching with a more conservative version that only caches ImplicitInfo's.
* Lazy fields null out fields that are used only ...Iulian Dragos2009-09-281-0/+18
| | | | | | | | Lazy fields null out fields that are used only in their initializer. When the lazy value is forced, it will null out all private fields that are used only by the current lazy value. This should reduce memory leaks, see #720
* fixed up testsMartin Odersky2009-09-282-3/+3
|
* refined implicit resolution.Martin Odersky2009-09-283-0/+11
|
* Reverted r18215 at martin's request.Paul Phillips2009-09-253-18/+2
|
* Collections refactoring.Martin Odersky2009-09-252-2/+7
|
* fix #2390Lukas Rytz2009-09-241-1/+3
|
* fix for #2382Lukas Rytz2009-09-241-0/+3
|
* [no content change] Fixed all SVN properties: m...Gilles Dubochet2009-09-2473-66/+28
| | | | | | | | [no content change] Fixed all SVN properties: mimes, EOL, executable. Id expansion is consistently enabled for Scala/Java/C# sources in 'src/' and consistently disabled and removed from everywhere else: there should not be any dead Id tags anymore.
* fixed #2290 and #2325Lukas Rytz2009-09-241-0/+7
|
* Test case for #1309 (fixed in Array rewrite.)Paul Phillips2009-09-231-0/+7
|
* Proxy.equals catches null case (fix for #2366)Ingo Maier2009-09-232-0/+13
|
* new arrays are done.Martin Odersky2009-09-2124-76/+71
|
* fixed headers/comments/svn props, made some pro...michelou2009-09-151-2/+2
| | | | | | fixed headers/comments/svn props, made some progress with serializable classes
* Deprecated case classes inheriting from other c...Paul Phillips2009-09-115-34/+6
| | | | | | Deprecated case classes inheriting from other case classes, and updated all the tests which did so.
* fix #2268Lukas Rytz2009-09-112-0/+11
|
* Massive redesign so that: scala> "hi" == "hi".r...Martin Odersky2009-09-102-0/+23
| | | | | | Massive redesign so that: scala> "hi" == "hi".reverse.reverse gives: res0: Boolean = true Preparing to do similar things to arrays.
* Created plausibly sensible equals and hashCode ...Paul Phillips2009-09-092-3/+2
| | | | | | | | | | Created plausibly sensible equals and hashCode methods in collection.{ Set, Map, Sequence } and made sure that none of the derived collections is getting too excited about doing its own thing and in so doing either breaking equals/hashCode consistency or creating an asymmetric equals (or both.)