summaryrefslogtreecommitdiff
path: root/test/files/run
Commit message (Collapse)AuthorAgeFilesLines
...
* Priority queue test.Aleksandar Pokopec2009-11-201-16/+266
|
* Finally completed the incredibly tedious task o...Paul Phillips2009-11-184-7/+7
| | | | | | Finally completed the incredibly tedious task of removing the lower case primitive aliases from Predef. Had to rebuild msil.jar along the way.
* More deprecation work.Paul Phillips2009-11-182-2/+2
| | | | | | since 2.7.2 (still except for lower case primitive type aliases) and removes every deprecated method which has never shipped in a release.
* Fix and test case for #2636.Paul Phillips2009-11-171-0/+35
|
* Tweaked a test which has been regularly failing...Paul Phillips2009-11-152-2/+2
| | | | | | Tweaked a test which has been regularly failing due to heap exhaustion, although what it's supposed to be testing is stack utilization.
* Fixes and test cases for #2087 and #2400.Paul Phillips2009-11-141-0/+20
| | | | | | | fixing a long-standing bug in fjbg and recompiling fjbg.jar, which had the side effect of revealing that the current fjbg jar had never been recompiled with target 1.5, so now it's smaller and (I imagine) faster.
* Bringing BigInt and BigDecimal into the club of...Paul Phillips2009-11-121-0/+36
| | | | | | | | Bringing BigInt and BigDecimal into the club of things which can be equal to one another and which will have the same hashCode. Fixed some old and some new bugs associated with equality. Note: not fully optimized.
* Merge branch 'ticket/2594'Adriaan Moors2009-11-122-0/+18
|
* avoid illegal forward references by moving synt...Lukas Rytz2009-11-121-0/+3
| | | | | | avoid illegal forward references by moving synthetics to the beginning of the statement-list. fixes #2489
* fix #2488.Lukas Rytz2009-11-122-0/+6
|
* This test for Queue passes at my computer.Aleksandar Pokopec2009-11-111-0/+297
|
* Mutable list test - passes.Aleksandar Pokopec2009-11-101-0/+126
|
* added CanBuild type alias in package object sca...Adriaan Moors2009-11-102-0/+10
| | | | | | added CanBuild type alias in package object scala.collection.generic added breakout to scala.collection test for breakout
* Breaks down the hash function in BoxesRunTime b...Paul Phillips2009-11-091-0/+28
| | | | | | | | | | | | | | | | Breaks down the hash function in BoxesRunTime by type so we can do as much as possible at compile time. Documents various trouble points I've identified with trying to get the hashCodes aligned. Test case exercises the hashCode functions. Deleted all the code associated with previous equality adventures. Don't worry, I can put anything back if it turns out we have to change course again, but for now it's noise. Also, gives return types to the box and unbox methods which are added to the primitive companions, so e.g. Int.box(5) now returns a j.l.Integer instead of an Object.
* Fixed #2504Martin Odersky2009-11-092-0/+36
| | | | | Fixed #2517
* Removed remaining invalid tests.Philipp Haller2009-11-086-332/+0
|
* - Renames filterMap to partialMapPaul Phillips2009-11-061-8/+8
| | | | | | - Renames GenericRange to NumericRange - Removes most @experimental annotations
* Moved disabled tests back into their original p...Antonio Cunei2009-11-067-0/+435
| | | | | | Moved disabled tests back into their original place. Expect 7 tests to fail.
* Fixed initial variable binding for method param...Iulian Dragos2009-11-062-0/+31
| | | | | | Fixed initial variable binding for method parameters, that caused the inliner to infer wrong types for tail recursive methods
* Scala implementation of fancier hashCode algori...Paul Phillips2009-11-042-0/+18
| | | | | | | | 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.
* Fix and test for #2527Philipp Haller2009-11-032-0/+21
|
* Applied patch for #2524.Philipp Haller2009-11-031-0/+10
|
* 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
|