summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* another attempt at fixing annotations printoutLukas Rytz2009-07-241-1/+1
|
* fixed a bug with defaults reported on mailing listLukas Rytz2009-07-241-0/+6
|
* 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-221-1/+1
|
* Proposed fix to address #2165.Philipp Haller2009-07-225-6/+21
|
* Fixed #2176.Philipp Haller2009-07-221-1/+2
|
* Enabled synchronous message sends for Replyable...Philipp Haller2009-07-213-26/+121
| | | | | | 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-213-9/+12
|
* Moved scheduler source files into new scheduler...Philipp Haller2009-07-2113-0/+0
| | | | | Moved scheduler source files into new scheduler directory.
* Moved new scheduler classes into package scala....Philipp Haller2009-07-2117-15/+23
| | | | | Moved new scheduler classes into package scala.actors.scheduler.
* 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-202-1/+4
|
* Re-enabled snapshot for new ForkJoinPool.Philipp Haller2009-07-2012-1086/+165
|
* fixed #2163Adriaan Moors2009-07-191-1/+1
|
* Fix and test case for #1373.Paul Phillips2009-07-181-2/+18
|
* Fix and post/neg test cases for #1878.Paul Phillips2009-07-182-0/+16
|
* Removed some identical code from the collection...Paul Phillips2009-07-183-29/+6
| | | | | | | 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
|
* 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-173-16/+97
| | | | | | | | | | | 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.
* scala> List(1,2,3) endsWith List(2, "I AM GOZER...Paul Phillips2009-07-161-5/+9
| | | | | | | | scala> List(1,2,3) endsWith List(2, "I AM GOZER THE DESTROYER") res0: Boolean = true ... is fixed.
* Fixed the same bug as in r18328, but in equals.Paul Phillips2009-07-161-1/+4
|
* Scalac was failing if the path to the distributionAntonio Cunei2009-07-162-2/+2
| | | | | contained whitespaces. This simple change fixes that.
* Fixed logic error reported in #2159.Paul Phillips2009-07-161-1/+4
|
* Altered some invocations of Array.copy to use c...Paul Phillips2009-07-165-18/+19
| | | | | | | | Altered some invocations of Array.copy to use compat.Platform.arraycopy instead, because profiling indicated a frightening amount of time being spent in java.lang.Class.isArray (mostly stemming from ensureCapacity in StringBuilder.)
* Fixed memory leak in remote actors.Philipp Haller2009-07-162-33/+34
|
* small improvements concerning positions and com...Martin Odersky2009-07-164-10/+25
| | | | | small improvements concerning positions and completions
* Two small performance fixes which shaved 40 sec...Paul Phillips2009-07-162-3/+3
| | | | | | Two small performance fixes which shaved 40 seconds off clean->test time.
* Fix and test case for #1141.Paul Phillips2009-07-151-33/+38
|
* minor changes (Scala comments)michelou2009-07-154-28/+78
|
* Added ControlException marker trait and update ...Miles Sabin2009-07-1511-21/+76
| | | | | | | | | Added ControlException marker trait and update various exceptions to mix it in; the typer now correctly propagates ControlExceptions rather than reporting them; the IDE reports attempts to log ControlExceptions; Global.signalDone no longer leaks ValidateErrors back into the typer; the set of compiler options offered by the IDE has been updated.
* Fix and test case for #1110.Paul Phillips2009-07-151-1/+8
|
* Fix for a RangePosition overlap bug with guards...Miles Sabin2009-07-142-2/+3
| | | | | | Fix for a RangePosition overlap bug with guards in for comprehensions; added tree node unique id to output in tree browser.
* Removed the accurately labelled combinatorold.Paul Phillips2009-07-1410-1523/+0
|
* Faster offsetToLineMartin Odersky2009-07-141-0/+28
|
* Enhanced repl based debugger to use manifests a...Paul Phillips2009-07-143-7/+39
| | | | | | | Enhanced repl based debugger to use manifests and try to get a usable type out of it. It works for at least a useful subset of the types which one might want to inspect.
* made streams and views more lazy by always skip...Martin Odersky2009-07-143-26/+50
| | | | | made streams and views more lazy by always skipping builder
* Fixed a couple of position bugs; made validatio...Miles Sabin2009-07-144-34/+57
| | | | | | Fixed a couple of position bugs; made validation output a bit more informative and readable.
* Added -Yide-debug option to exercise the intera...Miles Sabin2009-07-143-5/+35
| | | | | | Added -Yide-debug option to exercise the interactive compiler from the command-line; made validation errors a bit more informative.