summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* doc comment fix. No review.Martin Odersky2010-09-071-1/+1
|
* Fixes infinite loop when appending a ListBuffer...Martin Odersky2010-09-071-0/+6
| | | | | | Fixes infinite loop when appending a ListBuffer to itself. Review by extempore.
* Fixes binary compatibility problem in BufferLikeMartin Odersky2010-09-071-1/+1
|
* Updated link to collections API guide.Antonio Cunei2010-09-071-2/+2
|
* Stability testing task added.moix2010-09-076-65/+144
|
* Added type alias so that Response is accessible...Miles Sabin2010-09-071-0/+2
| | | | | | | Added type alias so that Response is accessible via interactive.Global ... necessary for source compatibility with 2.8.0.final. Review by odersky.
* Brought the files in scala.collection.interface...Paul Phillips2010-09-067-71/+48
| | | | | | | | Brought the files in scala.collection.interfaces up to date, for whatever purpose they may someday serve. Also deprecated Seq.findIndexOf, which is identical to indexWhere and must have been overlooked when deprecations were being handed out. No review.
* Closes #3803. No Review.Iulian Dragos2010-09-051-3/+3
|
* Closes #3636, crash when unexpected types arriv...Iulian Dragos2010-09-051-1/+4
| | | | | | Closes #3636, crash when unexpected types arrive at specialization. no review.
* Closes #3650.Iulian Dragos2010-09-034-9/+17
|
* update sbt build files to include scalacheck.jar.Lukas Rytz2010-09-033-2/+14
|
* better error message for default arguments.Lukas Rytz2010-09-033-13/+23
|
* updated default ANT_OPTS for more speed. no reviewLukas Rytz2010-09-031-1/+1
|
* Changed the behavior of -cp for scalap.Iulian Dragos2010-09-031-4/+10
|
* Makes utility methods in the ArrayStack compani...Aleksandar Pokopec2010-09-021-2/+2
| | | | | | | Makes utility methods in the ArrayStack companion object private. No review.
* Changed version number to 2.8.1. This isAntonio Cunei2010-09-022-2/+2
| | | | | | | | | | | actually incorrect, as trunk has significantly diverged from 2.8.x, but it's better than leaving the version number in trunk at "2.8.0". We should just rename the version number in trunk at some point, so that it just lists "trunk" rather than "2.x.x".
* Partest changes - partest now uses scalacheck.j...Aleksandar Pokopec2010-09-022-1/+21
| | | | | | | Partest changes - partest now uses scalacheck.jar from the build/pack dir. Review by phaller.
* fixes #2662. Review by moors.Aleksandar Pokopec2010-09-022-14/+105
|
* Temporarily disabled collections checks to keep...Aleksandar Pokopec2010-09-0110-0/+0
| | | | | | | Temporarily disabled collections checks to keep build from breaking. No review
* Closes #1220.Iulian Dragos2010-09-013-3/+46
|
* [scaladoc] Merges Petr's changes from the colla...Gilles Dubochet2010-09-014-11/+24
| | | | | | | [scaladoc] Merges Petr's changes from the colladoc branch to only display less-important information in class comments on demand. Also fixes a bug with index filter. No review.
* New Starr, without msil classes.Iulian Dragos2010-09-013-3/+3
|
* Added scalacheck tests for parallel collections.Aleksandar Pokopec2010-09-0113-2/+1174
| | | | | Review by phaller (not urgent).
* for MSIL: now based on the latest ch.epfl.lamp....Miguel Garcia2010-09-011-1/+1
| | | | | for MSIL: now based on the latest ch.epfl.lamp.compiler.msil sources.
* Added ant tasks for strap that build scalacheck.Aleksandar Pokopec2010-08-311-1/+16
| | | | | No review yet.
* Partial fix for #3774.Martin Odersky2010-08-313-132/+182
|
* Fix for #3684. No reviewAleksandar Pokopec2010-08-311-10/+10
|
* Fix for #3765.Miles Sabin2010-08-311-0/+3
|
* Fixes #3684. Closes #3684. No review.Aleksandar Pokopec2010-08-311-20/+10
|
* Added scalacheck folder, scalacheck source upda...Aleksandar Pokopec2010-08-3120-38/+2960
| | | | | | | | | | | | | Added scalacheck folder, scalacheck source update script, and scalacheck ant tasks. Build process will now generate a scalacheck jar in the build/pack/lib directory. It generates it from the scalacheck source in the src/scalacheck dir. If the source there gets out of date, it is to be updated manually using the tools/updatescalacheck script. Review by phaller.
* Added a few overrides to prevent default implem...Aleksandar Pokopec2010-08-311-0/+8
| | | | | | | | Added a few overrides to prevent default implementation that uses 'foreach'. Fixes #3747. Closes #3747. No review.
* Correction to commit 22865 in order for sbt bui...moix2010-08-311-12/+0
| | | | | Correction to commit 22865 in order for sbt build to work
* Partest support for sbt (with failed only and s...moix2010-08-3111-130/+313
| | | | | | Partest support for sbt (with failed only and specific files only options) Support for triggered execution
* New wider interface of presentation compiler.Martin Odersky2010-08-307-44/+141
|
* removed author attribution, since no code from ...Martin Odersky2010-08-301-1/+1
| | | | | removed author attribution, since no code from Stepan remains here.
* added doc comment which makes things clearer wh...Martin Odersky2010-08-301-0/+1
| | | | | added doc comment which makes things clearer when seen from Map or Set.
* Hardened the bytecode reader.Iulian Dragos2010-08-301-1/+1
|
* Dredged some more dead code out of SyncVar.Paul Phillips2010-08-301-6/+2
|
* Some more finnessing printing in the repl.Paul Phillips2010-08-302-7/+5
|
* partial fix for see #3772.Lukas Rytz2010-08-274-21/+34
| | | | | | | | | | | | {{{ scala> def g { case class C(); object C; } <console>:5: error: C is already defined as (compiler-generated) case class companion object C def g { case class C(); object C; } ^ }}} review by odersky
* this should fix our achy breaky build. no reviewAdriaan Moors2010-08-262-2/+4
|
* documentation for scala.collection package, con...Lukas Rytz2010-08-261-1/+68
| | | | | | documentation for scala.collection package, contribution by Dave Copeland. close #3793, no review.
* documentation for scala.xml.pull, contribution ...Lukas Rytz2010-08-263-28/+77
| | | | | | documentation for scala.xml.pull, contribution by Dave Copeland. close #3786, no review.
* minor cleanups, no reviewLukas Rytz2010-08-262-24/+25
|
* Closes #3497.Iulian Dragos2010-08-263-14/+35
|
* Removed the presumably unintentional empty "1" ...Paul Phillips2010-08-261-0/+0
| | | | | | Removed the presumably unintentional empty "1" file which showed up on monday and which ocd-me cannot handle. No review.
* Closes #3776. No review.Martin Odersky2010-08-243-1/+14
|
* new tests. No review.Martin Odersky2010-08-242-0/+13
|
* Fixes #3780. No review.Martin Odersky2010-08-241-1/+1
|
* Correctly locate context tree even on the edges.Hubert Plociniczak2010-08-242-2/+2
|