summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* 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-204-10/+27
| | | | | ability to influence the priority of implicits.
* Some reworking of command line option parsing b...Paul Phillips2009-10-202-62/+61
| | | | | | | | | | | | | | Some reworking of command line option parsing because it was not possible to say scala -i include1.scala include2.scala -e 'code to execute' and it should be. And now it is. This required changing MultiStringSetting to only accept arguments until it runs into one starting with '-' rather than blindly swallowing all the rest of the command line as it used to, which was terribly unfriendly parsing behavior regardless.
* Do not use ForkJoinPool when running on IBM J9;...Philipp Haller2009-10-2041-6/+12579
| | | | | | Do not use ForkJoinPool when running on IBM J9; in this case use 1.5 ThreadPoolScheduler.
* Ordering delegates Float/Double comparisons to ...Paul Phillips2009-10-201-8/+2
| | | | | Ordering delegates Float/Double comparisons to java.lang. Ticket #2498.
* Relaxing a check for ticket #2486, plus test case.Paul Phillips2009-10-192-5/+20
| | | | | | 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-196-47/+150
| | | | | | 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-196-35/+73
|
* Fix and test for #1674; we aren't supposed to b...Miles Sabin2009-10-195-3/+11
| | | | | | | 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.
* Repaired some impressively wrong isEmpty logic ...Paul Phillips2009-10-191-3/+3
| | | | | Repaired some impressively wrong isEmpty logic (ticket #2483.)
* Fixing failing test from exhaustiveness patch.Paul Phillips2009-10-181-2/+2
|
* Made GenericRange covariant.Paul Phillips2009-10-182-22/+41
| | | | | Added additional equality logic I realized was necessary.
* Fix for #1687.Paul Phillips2009-10-171-1/+4
|
* Fix and test cases for ticket #443.Paul Phillips2009-10-175-13/+37
| | | | | | | 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 a bunch of issues with GenericRange.Paul Phillips2009-10-163-58/+53
|
* Expanded shadowing warnings to include block st...Paul Phillips2009-10-161-10/+46
| | | | | | Expanded shadowing warnings to include block statements, and cleaned it up a ways.
* Fixed typo from last commit.Paul Phillips2009-10-161-1/+1
|
* added isInclusive to Range.Martin Odersky2009-10-162-0/+4
|
* Fixed new implementation of Range.Martin Odersky2009-10-163-82/+50
|
* Created -Xstrict-warnings and got the ball roll...Paul Phillips2009-10-162-25/+49
| | | | | | | Created -Xstrict-warnings and got the ball rolling with an attempt at spotting variable shadowing. Has to get less noisy but plenty useful as-is.
* moved Range and GenericRange to collection.immu...Martin Odersky2009-10-1612-137/+304
| | | | | | | 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.
* Fix for #2467.Paul Phillips2009-10-161-2/+3
|
* Removed long dead AST Node Sequence.Paul Phillips2009-10-1515-95/+19
| | | | | | | | 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-1412-18/+146
| | | | | | | Scaladoc comment position fixes with tests; scaladoc comment postions are now accessible by symbol; respond retry in interactive Global is now handled properly.
* A hard fought distillation of sequence patterns.Paul Phillips2009-10-142-136/+107
| | | | | | I can fix #1697 without making other things break (fix not included but should be forthcoming.)
* added methods updated +: :+ to SeqLikeTiark Rompf2009-10-143-184/+240
|
* scala.collection.Vector defaults to immutableTiark Rompf2009-10-142-11/+10
|
* ++: replaced by ++=:Martin Odersky2009-10-144-15/+16
|
* Re-enabled optimised nightly buildsIulian Dragos2009-10-141-2/+1
|
* Fixed stability issues for the optimised build,...Iulian Dragos2009-10-142-8/+8
| | | | | Fixed stability issues for the optimised build, this time for real.
* use arraycopy from Platform (for msil)Lukas Rytz2009-10-141-2/+3
|
* You might think someone would eventually weary ...Paul Phillips2009-10-132-20/+63
| | | | | | | You might think someone would eventually weary of polishing the debugging code, but there comes a point when it seems like the lesser evil.
* Yet more tracing code.Paul Phillips2009-10-135-29/+81
|
* Yet more code for scrutinizing the pattern matc...Paul Phillips2009-10-137-51/+70
| | | | | | Yet more code for scrutinizing the pattern matcher, and a couple minor duplication/dead-code cleanups seen elsewhere.
* Changed mutable +: to +=:Martin Odersky2009-10-139-11/+14
|
* Fixed #2234.Philipp Haller2009-10-132-0/+5
|
* Fixed #2422 abd #2461Martin Odersky2009-10-137-7/+72
|
* Test case for #2127.Paul Phillips2009-10-131-0/+5
|
* vectors encore un foisTiark Rompf2009-10-131-9/+1043
|
* Fix for disabled test t2359.Philipp Haller2009-10-123-1/+2
|
* Fixed #2444Martin Odersky2009-10-1210-78/+27
|
* Fixed #2099.Martin Odersky2009-10-122-1036/+18
|
* reverted immutable.Vector because it gave rando...Martin Odersky2009-10-1239-179/+444
| | | | | | reverted immutable.Vector because it gave random build errors on my machine. Fixed various tickets, updated test and check files.
* Taking a first crack at straightening out MixTy...Paul Phillips2009-10-122-106/+60
| | | | | Taking a first crack at straightening out MixTypes.
* Renamed definedVars to deepBoundVariables.Paul Phillips2009-10-127-45/+68
| | | | | tracing code for the long haul.
* Added the concepts of "necessary type" and "suf...Paul Phillips2009-10-113-13/+21
| | | | | | Added the concepts of "necessary type" and "sufficient type" to Pattern to assist in creating sensible matching logic.
* Further iteration related to patterns and bindi...Paul Phillips2009-10-113-46/+68
| | | | | Further iteration related to patterns and bindings.
* More transitioning bindings to pattern vars.Paul Phillips2009-10-113-40/+41
|
* Created PatternVarGroup to hold a sequence of p...Paul Phillips2009-10-112-65/+86
| | | | | | | Created PatternVarGroup to hold a sequence of patternvars. Soon all the variable binding code will be swallowed and each action related to variables will happen at one location only.
* use arraycopy from Platform (for msil)Lukas Rytz2009-10-111-2/+3
|