summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* 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-133-0/+59
|
* Test case for #2127.Paul Phillips2009-10-131-0/+5
|
* Fix for disabled test t2359.Philipp Haller2009-10-122-0/+0
|
* Fixed #2444Martin Odersky2009-10-129-72/+15
|
* reverted immutable.Vector because it gave rando...Martin Odersky2009-10-1230-81/+320
| | | | | | 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.
* Looked through the .disabled tests which are st...Paul Phillips2009-10-085-768/+33
| | | | | | | 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.
* Disabling another test trying to unhang the tes...Paul Phillips2009-10-072-0/+0
| | | | | Disabling another test trying to unhang the test suite.
* Accidentally checked in a not-quite-working test.Paul Phillips2009-10-073-9/+1
|
* Moved a pile of passing tests from pending to f...Paul Phillips2009-10-0719-70/+17
| | | | | | Moved a pile of passing tests from pending to files, fixed some untesty tests, and will now close the associated tickets.
* Fixed #1000, #2060Martin Odersky2009-10-071-0/+14
|
* "Fix" and test case for #1333.Paul Phillips2009-10-072-0/+5
|
* Disabled an actor test which is hanging the tes...Paul Phillips2009-10-062-0/+0
| | | | | Disabled an actor test which is hanging the test suite.
* Restored type of receiver in OutputChannel and ...Philipp Haller2009-10-064-6/+6
| | | | | | | Restored type of receiver in OutputChannel and Channel to Actor. ReplyReactor inherits from ReplyableReactor. ReplyableReactor is now private.
* Test case for #1357.Paul Phillips2009-10-061-0/+21
|
* fixed #2421: checkBounds in typedImplicit0 to f...Adriaan Moors2009-10-062-0/+0
| | | | | | fixed #2421: checkBounds in typedImplicit0 to filter out implicit searchresults that result in nonsenical type instantiations
* test for #1355, which has been fixed earlierAdriaan Moors2009-10-062-0/+5
|
* Test case for #2175.Paul Phillips2009-10-061-0/+20
|
* Test cases for some tickets fixed by recent arr...Paul Phillips2009-10-055-0/+43
| | | | | | Test cases for some tickets fixed by recent array and implicit activity: #1038, #1005, #1272.
* Reverted the BigDecimal implicits added for tic...Paul Phillips2009-10-051-3/+3
| | | | | Reverted the BigDecimal implicits added for ticket #1813.
* 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-0239-30/+573
|
* 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-013-2/+4
|
* Fix and tests for positions issues with context...Miles Sabin2009-10-014-0/+12
| | | | | | | | Fix and tests for positions issues with context/view bounds and multiple definitions; extended the ranges for defns/decls to cover their introducing keywords; removed an unused IDE hook; some whitespace cleanup.
* meh.Adriaan Moors2009-10-011-1/+1
|