summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Export new packages; minor updates to interactive.Miles Sabin2009-05-262-11/+11
|
* added missing file; hope we are done now!Martin Odersky2009-05-251-0/+20
|
* rest of collections check-inMartin Odersky2009-05-252-3/+3
|
* added SynchronizedMap; changed Set.put to Set.a...Martin Odersky2009-05-259-200/+191
| | | | | | added SynchronizedMap; changed Set.put to Set.add, implemented LinkedHashMap/Set more efficiently.
* new presentation compiler designMartin Odersky2009-05-259-173/+421
|
* Modified UniqueTypes not to interfere with thei...Paul Phillips2009-05-251-7/+4
| | | | | | Modified UniqueTypes not to interfere with their hashCode. Should fix the random build failures involving missing keys (once it's in starr.)
* Case classes use product prefix instead of clas...Iulian Dragos2009-05-251-1/+1
| | | | | | Case classes use product prefix instead of class name when computing hash codes. (see #1332).
* Removed obsolete isDetached flag from Actor trait.Philipp Haller2009-05-242-6/+11
|
* Added SimpleExecutorScheduler which does not te...Philipp Haller2009-05-244-4/+112
| | | | | Added SimpleExecutorScheduler which does not terminate automatically.
* Implemented #2012.Philipp Haller2009-05-2412-241/+246
|
* Fixed #1999.Philipp Haller2009-05-245-29/+26
|
* Fixed partest build problem.Philipp Haller2009-05-245-26/+67
|
* Fix to msil build script to use unifed scalac t...Josh Suereth2009-05-221-2/+2
| | | | | Fix to msil build script to use unifed scalac task throughout build
* Unbreak the build.Miles Sabin2009-05-221-1/+2
|
* some documentation; statistics wrt implicits; n...Martin Odersky2009-05-2213-119/+339
| | | | | some documentation; statistics wrt implicits; new presentation compiler
* new presentation compiler GlobalMartin Odersky2009-05-221-0/+243
|
* Added JDK 5 Executor-based schedulers.Philipp Haller2009-05-226-23/+134
|
* Make sure the symbol for the implementation cla...Miles Sabin2009-05-211-0/+1
| | | | | | Make sure the symbol for the implementation class of a trait has an associated source file.
* Fix and test for #1360 - when passing a sequenc...Paul Phillips2009-05-213-9/+22
| | | | | | Fix and test for #1360 - when passing a sequence to java varargs, call .toArray on it if it is not already an array.
* Fixed output directories for inner classes.Iulian Dragos2009-05-212-16/+20
|
* KMP implementation for StringBuilder and test c...Paul Phillips2009-05-201-69/+65
| | | | | | KMP implementation for StringBuilder and test case. Repaired long-standing infinite loop in lastIndexOf.
* Added java.lang.String's other format variant t...Paul Phillips2009-05-201-0/+17
| | | | | | | | | Added java.lang.String's other format variant to RichString. At a glance this may appear to create a conflict because format takes (args: Any*), but since there is no format specifier for a Locale object, the first argument being one such unambiguously means the second variant. i18n or bust!
* Unreasonably satisfying patch which sets immuta...Paul Phillips2009-05-2018-345/+89
| | | | | | Unreasonably satisfying patch which sets immutable final val inIDE = false and then performs dead code elimination (human style.)
* Replaced ExitActorException with SuspendActorEx...Philipp Haller2009-05-202-22/+2
| | | | | Replaced ExitActorException with SuspendActorException.
* Fixed NPE when restarting Scheduler.Philipp Haller2009-05-201-4/+4
|
* Fixed #2000.Philipp Haller2009-05-201-4/+8
|
* more debugging code for teh NoSuchElementExceptionLukas Rytz2009-05-203-24/+37
|
* Added :silent feature to disable automatic toSt...Paul Phillips2009-05-192-7/+10
| | | | | Added :silent feature to disable automatic toString calls in repl.
* Added support for AbstractFile subclasses other...Miles Sabin2009-05-191-13/+16
| | | | | | Added support for AbstractFile subclasses other than PlainFile and ZipArchive#FileEntry.
* small modifications to collections.Martin Odersky2009-05-1925-1386/+1239
|
* Reverting 17770 - right, that is what "map view...Paul Phillips2009-05-191-1/+6
| | | | | Reverting 17770 - right, that is what "map view" means.
* Modified filterKeys to return the same type of ...Paul Phillips2009-05-191-6/+1
| | | | | | | | Modified filterKeys to return the same type of Map as it was called upon. If this method is doing something important it should probably be documented, because right now it looks rather redundant with filter: map filterKeys (_ < 10) map filter (x => x._1 < 10)
* Fixed interpreter output directoriesIulian Dragos2009-05-193-9/+9
|
* some temporary code to find the bug (NoSuchElem...Lukas Rytz2009-05-192-1/+52
| | | | | | some temporary code to find the bug (NoSuchElementException) in LinkedHashMap
* Fixed check for output directory when multiple ...Iulian Dragos2009-05-181-2/+2
| | | | | Fixed check for output directory when multiple outputs are used.
* Added support for multiple output directories (...Iulian Dragos2009-05-183-7/+100
| | | | | Added support for multiple output directories (no support for command line, only progammatically -- i.e. IDE).
* Cleanup in aisle scala.util.automata! And fix f...Paul Phillips2009-05-183-189/+58
| | | | | Cleanup in aisle scala.util.automata! And fix for #1988.
* Fixed separate compilation of traits when not u...Iulian Dragos2009-05-181-2/+1
| | | | | | Fixed separate compilation of traits when not using the optimiser. The symbol loader will skip implementation classes unless -optimised is on.
* Switch over to new scanner/parser.Miles Sabin2009-05-1812-6406/+724
|
* Updated documentation.Paul Phillips2009-05-171-2/+3
|
* fixed .net buildLukas Rytz2009-05-1649-1838/+1006
|
* Added sequence control for multi-file tests.Philipp Haller2009-05-151-15/+37
|
* Creates XMLOptions configuration object to addr...Paul Phillips2009-05-152-44/+80
| | | | | | | Creates XMLOptions configuration object to address the proliferation of Booleans associated with XML parsing. Utilizes to address tag minimization issues described in #1118.
* 1.4-related cleanup and reorganization.Antonio Cunei2009-05-1510-47/+4
| | | | | | | Removed a bunch of now useless 1.4 code, merged back jvm5-specific partest tests into the general jvm tests, documentation updates.
* Fixed #1932.Gilles Dubochet2009-05-151-1/+0
|
* Removed further 1.4 vestiges.Antonio Cunei2009-05-156-3120/+0
|
* Minding our ps and qs in the packrat.Paul Phillips2009-05-151-1/+1
|
* more collection cleanups and better docsMartin Odersky2009-05-1425-79/+97
|
* more collection cleanups and better docsMartin Odersky2009-05-141-26/+44
|
* some minor cruft removal.Paul Phillips2009-05-141-12/+5
|