summaryrefslogtreecommitdiff
path: root/test/files
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Fix for #1909Hubert Plociniczak2009-10-285-8/+11
|
* Fixed #1342.Martin Odersky2009-10-283-0/+15
|
* 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-273-1/+6
| | | | | 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)
* Fix and test for #2214.Philipp Haller2009-10-262-0/+42
|
* Reverting unwanted parts of last commit.Philipp Haller2009-10-266-6/+6
|
* Second half of fix and tests for #1518.Philipp Haller2009-10-2610-6/+101
|
* new classpaths.Lukas Rytz2009-10-2611-8/+20
|
* Fix and test for #2515.Philipp Haller2009-10-252-0/+50
|
* 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-232-10/+14
|
* The last patch to work around #1909 caught one ...Paul Phillips2009-10-224-4/+16
| | | | | | The last patch to work around #1909 caught one brand of lifts but not another. Better now and another test case.
* Tickets #1909 and #2508 involve code which comp...Paul Phillips2009-10-222-0/+10
| | | | | | | Tickets #1909 and #2508 involve code which compiles but then fails at runtime due to invalid bytecode. This commit turns those into compile time errors. Includes negative test case.
* the essence of tcpoly inference + test casesAdriaan Moors2009-10-2210-3/+162
| | | | | | fixes to check files and removed nonapplicable test case Tuple2 impl, but commented out so that we can bootstrap whitespace...
* 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.
* A pending test for #2087, and a script test whichPaul Phillips2009-10-228-0/+8
| | | | | | | | is supposed to exercise r19165, except that I discovered that no script tests have been run since July 2008: r15658 says "remove script tests for now - they seem to block in certain configurations."
* fixed breakage caused by r19219 -- sorry!Adriaan Moors2009-10-221-1/+1
| | | | | (thanks for alerting me, Toni)
* Revert "added CanBuild type alias in package ob...Adriaan Moors2009-10-221-1/+1
| | | | | | | Revert "added CanBuild type alias in package object scala.collection.generic" because it broke scaladoc (I consider that a bug -- filing ticket) This reverts commit 5b3ba1c27cdce76d8aef2bfb9aa5a836237521a9.
* built new starr and fixed test casesTiark Rompf2009-10-217-14/+15
|
* renamed Vector to IndexedSeqTiark Rompf2009-10-212-2/+2
|
* refactoring of TypeVar to set the stage for tcp...Adriaan Moors2009-10-211-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | refactoring of TypeVar to set the stage for tcpoly inference (also touched UndoLog, isHigherKinded logic in TypeRef) added <:< implicit, should bootstrap selection from squashed commit messages: commented out stuff so that this can be used to bootstrap and build a new starr merged/cherry picked refactorings unrelated to #2261 (undoLog, cloneInternal, NoImplicitInfo) made conforms implicit, identity explicit replaced the implicit `identity` coercion by `conforms`, which can be used to encode generalised constraints the introduction of `conforms` revealed a bug in adaptToMember, which was inferring views while already inferring one, which gave rise to diverging implicits. Predef.identity is no longer special as far as the compiler is concerned. cleaned up isHigherKinded logic in TypeRef, and implemented it in TypeVar along with normalize added <:< to Predef: use as evidence for encoding generalized constraints (BTW: extractUndetparams clears undetparams: don't use in debug output -- I learned the hard way...) added todo about ticket 2066 -- branching from master to explicitkinds for fix refactoring: moved bounds tracking logic to TypeVar introduced typeConstructor in Type because we can't use appliedType(tp, List())) to strip a type's type arguments (appliedType is a no-op for empty args) -- don't want to pattern match on type either removed unused overrides in TypeVar (TODO double check) making appliedType more robust since it is now used more liberally -- neg/t0226 should no longer fail now merged in appliedType refactoring and added TypeVar logic to appliedType
* added CanBuild type alias in package object sca...Adriaan Moors2009-10-211-1/+1
| | | | | added CanBuild type alias in package object scala.collection.generic
* Fixed #2429.Martin Odersky2009-10-211-0/+21
|
* fixed failing testcases due to previous commit ...Adriaan Moors2009-10-214-7/+10
| | | | | | fixed failing testcases due to previous commit (renaming of BuilderFactory)
* renamed BuilderFactory[El, To, From] -> CanBuil...Adriaan Moors2009-10-211-0/+14
| | | | | | | | | | | | | | | | | | | | | renamed BuilderFactory[El, To, From] -> CanBuildFrom[From, El, To] and added apply() overload to create collections from scratch generically added def apply() overload to BuilderFactory so that we can also create collections from scratch generically (see test test/files/pos/collectGenericCC.scala) renaming: - BuilderFactory[El, To, From] -> CanBuildFrom[From, El, To] bulk type-param reordering using: s/CanBuildFrom\[\s*([^,()\s]*)\s*,(\s+[^\s,()]*)\s*,\s+([^\s,()]*)\s*\]/CanBuildFrom[$3, $1,$2]/ some argument lists got mixed up because they contained 4 comma's... - builderFactory -> canBuildFrom removed explicit implicit value in DocDriver that was renamed renamed collection/generic/BuilderFactory.scala -> collection/generic/CanBuildFrom.scala tested with clean build using ant strap.done -- everything went well on my machine
* 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.
* Updated remaining test case to reflect the slig...Paul Phillips2009-10-204-22/+26
| | | | | | Updated remaining test case to reflect the slightly differing semantics of the Ordering fix.
* Fixes for 66.67% of the tests failing from the ...Paul Phillips2009-10-202-4/+4
| | | | | | Fixes for 66.67% of the tests failing from the Ordering commit. Other third is going to take a closer look.
* Fix and test case for #2260. Hooray for thePaul Phillips2009-10-201-0/+10
| | | | | ability to influence the priority of implicits.
* Relaxing a check for ticket #2486, plus test case.Paul Phillips2009-10-191-0/+3
| | | | | | proposing this as the long-term fix (unless by some miracle it is the right fix, in which case good for me.)
* 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
|
* Fix and test for #1674; we aren't supposed to b...Miles Sabin2009-10-191-0/+3
| | | | | | | Fix and test for #1674; we aren't supposed to be validating positions if there are syntax errors ... ensure that's so; we are supposed to be validating positions when -Yide-debug is set ... ensure that's so.
* Fixing failing test from exhaustiveness patch.Paul Phillips2009-10-181-2/+2
|
* Fix and test cases for ticket #443.Paul Phillips2009-10-173-5/+33
| | | | | | | flags on AnyVal from FINAL|SEALED to ABSTRACT|SEALED. This appears correct and without ill effect, but if anyone spots new anyval oddness you know where to look.
* Fixed new implementation of Range.Martin Odersky2009-10-161-1/+1
|
* moved Range and GenericRange to collection.immu...Martin Odersky2009-10-161-2/+2
| | | | | | | moved Range and GenericRange to collection.immutable, with alias for Range in scala package object; made Range strict. moved from filter to withFilter in translation for for expressions.
* Removed long dead AST Node Sequence.Paul Phillips2009-10-151-2/+1
| | | | | | | | detritus from regular expression patterns, but Star still depends on REGPATmode existing -- nothing checks for that mode specifically, but not having it set causes failure. So it is renamed to STARmode.
* Scaladoc comment position fixes with tests; sca...Miles Sabin2009-10-147-0/+92
| | | | | | | Scaladoc comment position fixes with tests; scaladoc comment postions are now accessible by symbol; respond retry in interactive Global is now handled properly.
* Fixed #2234.Philipp Haller2009-10-131-0/+4
|
* Fixed #2422 abd #2461Martin Odersky2009-10-132-0/+34
|
* Test case for #2127.Paul Phillips2009-10-131-0/+5
|
* Fix for disabled test t2359.Philipp Haller2009-10-122-0/+26
|
* Fixed #2444Martin Odersky2009-10-122-0/+69
|
* reverted immutable.Vector because it gave rando...Martin Odersky2009-10-1215-2/+240
| | | | | | reverted immutable.Vector because it gave random build errors on my machine. Fixed various tickets, updated test and check files.
* Definite fix for #2060; fix for #2392.Martin Odersky2009-10-081-1/+3
| | | | | Added aliases for Vector and Traversable to scala package object.