summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* rewrite of positions in compilerMartin Odersky2009-07-3039-607/+523
|
* fixed ticket #2211michelou2009-07-291-3/+4
|
* A couple more positions issues caused by the pa...Miles Sabin2009-07-284-5/+6
| | | | | | | A couple more positions issues caused by the packaging changes: fixed with test cases; test.positions target now runs the explicit test cases first.
* Whitespace.Miles Sabin2009-07-281-78/+78
|
* Fixed #2183.Philipp Haller2009-07-283-3/+8
|
* Reintegrated `ImmutableMapAdaptor` and `Immutab...Philipp Haller2009-07-282-16/+19
| | | | | Reintegrated `ImmutableMapAdaptor` and `ImmutableSetAdaptor`.
* Fixed spec-List test.Philipp Haller2009-07-281-2/+2
|
* Fix for another positions issue; added some pos...Miles Sabin2009-07-2714-28/+138
| | | | | | | | Fix for another positions issue; added some positions unit tests; added test.positions target to build.xml which validates positions of all sources in the Scala tree; cleaned up -Yide-debug output for use in the previous item.
* Changed toSet to return immutable.Set, addresse...Paul Phillips2009-07-262-2/+3
| | | | | Changed toSet to return immutable.Set, addresses #2200.
* nested pacpakges for actor.wscheduler; fixed bu...Martin Odersky2009-07-2415-16/+29
| | | | | nested pacpakges for actor.wscheduler; fixed build problems
* switch to unnested packages.Martin Odersky2009-07-24497-629/+1142
|
* another attempt at fixing annotations printoutLukas Rytz2009-07-241-1/+1
|
* fixed a bug with defaults reported on mailing listLukas Rytz2009-07-242-0/+13
|
* Fixes for various invalid positions; ensure tha...Miles Sabin2009-07-233-2/+10
| | | | | | Fixes for various invalid positions; ensure that target class infos are suitably initialized.
* Commented brace patch output from parser.Philipp Haller2009-07-231-1/+1
|
* Fixes for various invalid positions.Miles Sabin2009-07-232-8/+12
|
* Fix for #2187.Paul Phillips2009-07-231-2/+2
|
* Fix and test cases for #2184.Paul Phillips2009-07-222-1/+15
|
* Proposed fix to address #2165.Philipp Haller2009-07-225-6/+21
|
* Fixed #2176.Philipp Haller2009-07-223-1/+7
|
* module settings changedilyas2009-07-211-2/+2
|
* Enabled synchronous message sends for Replyable...Philipp Haller2009-07-219-26/+269
| | | | | | Enabled synchronous message sends for ReplyableReactor. Added get(timeout: Long) method to SyncVar.
* Made Replyable more general.Philipp Haller2009-07-216-10/+33
|
* Enabled future-type message sends for reactors.Philipp Haller2009-07-215-9/+64
|
* Added test for scala.actors.ReplyReactor.Philipp Haller2009-07-212-0/+32
|
* Moved scheduler source files into new scheduler...Philipp Haller2009-07-2113-0/+0
| | | | | Moved scheduler source files into new scheduler directory.
* Added regression test for #2147.Philipp Haller2009-07-212-0/+10
|
* Moved new scheduler classes into package scala....Philipp Haller2009-07-2118-16/+25
| | | | | Moved new scheduler classes into package scala.actors.scheduler.
* Renamed outputchannelactor test to reactor.Philipp Haller2009-07-212-0/+0
|
* Made daemon-actor-termination test deterministic.Philipp Haller2009-07-211-5/+14
|
* fixed TreePrinter for annotationsLukas Rytz2009-07-211-1/+4
|
* The creation of scala.collection.mutable.Iterab...Paul Phillips2009-07-207-12/+12
| | | | | | | | | | | | The creation of scala.collection.mutable.Iterable in 2.8 means that all the other classes in scala.collection.mutable are impacted - what they once thought was scala.Iterable is now mutable Iterable. This meant such things as Stack ++= List(1,2,3) would no longer compile. This patch qualifies the relevant Iterables as collection.Iterables, though based on inspecting other classes, it's likely they should actually be Traversables.
* Fix and test case for #2168.Paul Phillips2009-07-203-1/+9
|
* Re-enabled snapshot for new ForkJoinPool.Philipp Haller2009-07-2012-1086/+165
|
* fixed #2163Adriaan Moors2009-07-193-1/+15
|
* Test case for bug #1466, which was mysteriously...Paul Phillips2009-07-181-0/+11
| | | | | | Test case for bug #1466, which was mysteriously fixed at some point in the last nine months.
* Added test case for #1764 to the test case for ...Paul Phillips2009-07-182-1/+9
| | | | | | Added test case for #1764 to the test case for #1878 (as #1764 was fixed along with it in r18343.)
* Fix and test case for #1373.Paul Phillips2009-07-182-2/+24
|
* Fix and post/neg test cases for #1878.Paul Phillips2009-07-184-0/+33
|
* Removed some identical code from the collection...Paul Phillips2009-07-185-37/+12
| | | | | | | Removed some identical code from the collections classes in hopes of finding some consistency in collections equality. Added more test cases to the sequenceComparisons test.
* Removed Vector's indexOfSeq method in favor of ...Paul Phillips2009-07-171-7/+0
| | | | | | Removed Vector's indexOfSeq method in favor of the superclass implementation, which already discriminates based on hasDefiniteSize.
* syncPaul Phillips2009-07-171-6/+6
|
* idea project files changedilyas2009-07-179-49/+44
|
* Now that there's a KMP implementation in Seq, r...Paul Phillips2009-07-173-83/+17
| | | | | | | | | Now that there's a KMP implementation in Seq, removed the Char-specific one from StringBuilder. Added lastIndexOfSeq method to SequenceTemplate - for StringBuilder primarily, but available to be enjoyed by all the world's sequences.
* Fixed build.Philipp Haller2009-07-171-1/+1
|
* Updated to newest revision of ForkJoinPool.Philipp Haller2009-07-1714-125/+275
|
* Fix for failing test t1323.Paul Phillips2009-07-171-1/+1
|
* A start on a more comprehensive test suite for ...Paul Phillips2009-07-175-16/+221
| | | | | | | | | | | A start on a more comprehensive test suite for sequences. It performs 3600 different tests attempting to exercise the potentially buggy variations of startsWith, endsWith, indexOfSeq, and sameElements. And, a KMP implementation of indexOfSeq which in addition to being a lot faster for definite sized sequences, should give the wrong answer somewhat less frequently.
* scala> Vector(1,2,3) startsWith List("I am a Su...Paul Phillips2009-07-161-1/+4
| | | | | | | | | scala> Vector(1,2,3) startsWith List("I am a Sumerian shapeshifting destruction god.") res0: Boolean = true ...is fixed.
* scala> immutable.Vector(1,2,3) endsWith immutab...Paul Phillips2009-07-162-13/+16
| | | | | | | | scala> immutable.Vector(1,2,3) endsWith immutable.Vector(2,3) res0: Boolean = false ...is fixed.