summaryrefslogtreecommitdiff
path: root/src/library
Commit message (Collapse)AuthorAgeFilesLines
* removed warning (Random)michelou2008-07-292-5/+6
|
* moved class Random to package scala.utilmichelou2008-07-293-1/+78
|
* Added -Ycheckinit, which causes all getters to ...Iulian Dragos2008-07-281-0/+29
| | | | | | | | Added -Ycheckinit, which causes all getters to check that fields are initialized before being used. It reuses the same machinery (and bitmaps) as lazy values. For now it requires the new initialization order (-Xexperimental) to work.
* Fixed initialization order issues (when -Xexper...Iulian Dragos2008-07-283-5/+5
| | | | | Fixed initialization order issues (when -Xexperimental is turned on).
* fixed #842, #945, #83, #996, #1016, + some perf...Martin Odersky2008-07-281-22/+42
| | | | | fixed #842, #945, #83, #996, #1016, + some performace tuning.
* generating java generics signaturesMartin Odersky2008-07-251-1/+0
|
* Fixed typo.Geoffrey Washburn2008-07-252-2/+2
|
* Renamed 2nd variant of spawn to spawnNamed.Philipp Haller2008-07-241-1/+1
|
* Fixed #853.Philipp Haller2008-07-241-3/+21
|
* Fixed #775.Philipp Haller2008-07-241-1/+7
|
* Changes/deprecation of Console.format. Geoffrey Washburn2008-07-242-5/+28
| | | | | | Added RichString.format. Started on better documentation in ModelAdditions.
* Deprecated slice(n).Geoffrey Washburn2008-07-221-1/+2
|
* added Iterator.flatten method; refactoring: clo...Martin Odersky2008-07-211-0/+16
| | | | | added Iterator.flatten method; refactoring: closure -> baseTypeSeq
* fixed #1100Adriaan Moors2008-07-151-7/+11
|
* early initialization fixes.Martin Odersky2008-07-094-10/+8
| | | | | | | fix: interface methods read by JavaParser are now deferred. fix: List extends Product. fixes to Java : _* that make it possible to compile ObjectRunner without warnings. NEW STARR
* Applied Ross Judson's patch to fix #1072.Gilles Dubochet2008-07-081-1/+1
|
* Fixed (most of) the varargs warnings in the com...Miles Sabin2008-07-013-11/+9
| | | | | | | Fixed (most of) the varargs warnings in the compiler and libraries. Fixing the remaining ones in scala.tools.nsc.ObjectRunner will have to wait on a fix to #1003.
* fix for #1064pradel2008-06-291-1/+1
|
* Refactor proxies: IterableProxy, SeqProxy, Rand...stepancheg2008-06-284-43/+120
| | | | | | | | Refactor proxies: IterableProxy, SeqProxy, RandomAccessSeqProxy, MapProxy: not all methods were proxied previously; proxy methods are now declared in the same order as in proxied traits (to make maintaining easier)
* mutable.Set: fix scaladoc param namesstepancheg2008-06-281-2/+2
|
* fix for #1060pradel2008-06-281-3/+3
|
* Add RandomAccessSeqProxystepancheg2008-06-274-7/+36
|
* Seq.apply, RandomAccessSeq.applystepancheg2008-06-252-0/+12
|
* Fix initialization when constructing a MarkupPa...Geoffrey Washburn2008-06-241-4/+4
| | | | | Fix initialization when constructing a MarkupParser.
* speed up ArrayBuffer by replacing BoxedAnyArray...stepancheg2008-06-203-22/+22
| | | | | speed up ArrayBuffer by replacing BoxedAnyArray with raw JVM array
* fixed some bugs; disabled devirtualize; desiabl...Martin Odersky2008-06-171-2/+9
| | | | | | fixed some bugs; disabled devirtualize; desiabled bells in JLineReader; fixed Gilles problems with GADTs
* Change iterator "next" method signatures from "...stepancheg2008-06-141-4/+4
| | | | | Change iterator "next" method signatures from "next" to "next()"
* ResizableArray: s/val initialSize/def initialSi...stepancheg2008-06-131-1/+1
| | | | | | ResizableArray: s/val initialSize/def initialSize/: no need to store initial size as field
* corrected commentmichelou2008-06-121-2/+2
|
* Reverted change that introduced conflicting imp...Iulian Dragos2008-06-111-1/+1
| | | | | | Reverted change that introduced conflicting implicit conversions for vector +.
* SyncVar enhancements:stepancheg2008-06-102-7/+41
| | | | | | | * deprecation of "exception" field * addition of blocking-queue-like "take", "put" methods * change of "unset" signature
* Implemented #988.Geoffrey Washburn2008-06-101-0/+1
|
* fix for #1026pradel2008-06-101-1/+1
|
* added EOLs, missing headersmichelou2008-06-103-30/+53
|
* int -> Int, etc..michelou2008-06-101-5/+5
|
* speed up HashTable by replacing BoxedAnyArray w...stepancheg2008-06-092-9/+9
| | | | | speed up HashTable by replacing BoxedAnyArray with raw array
* RandomAccessSeq.empty implementation is Project...stepancheg2008-06-091-1/+3
| | | | | RandomAccessSeq.empty implementation is Projection now.
* Check in revised fix to Console.readLine, etc.Geoffrey Washburn2008-06-091-22/+104
|
* unify mutable and immutable stacks behavior (#957)stepancheg2008-06-062-30/+70
|
* makeRichChar to, until return RandomAccessSeq.P...stepancheg2008-06-063-15/+23
| | | | | makeRichChar to, until return RandomAccessSeq.Projection (#970)
* Removed Proxy from StringBuilder's parentsIulian Dragos2008-06-031-3/+1
|
* fix documentation of lengthCompare methodstepancheg2008-05-293-6/+27
|
* drop svn:executable flags from scala sourcesstepancheg2008-05-293-0/+0
|
* Changed scala.Stream from trait to abstract class.Iulian Dragos2008-05-271-2/+8
|
* Iterator.collect method (#916)stepancheg2008-05-271-1/+11
|
* make List.++ faster if argument is List (#887)stepancheg2008-05-271-6/+2
|
* commented some lines in Sorting.scala (they whe...jeberle2008-05-271-6/+7
| | | | | | commented some lines in Sorting.scala (they where only for testing) which doesn't compile in .NET.
* typo: s/assumptopm/assumption/lorch2008-05-261-1/+1
|
* Implement #886: indexOf, findIndexOfstepancheg2008-05-243-23/+70
| | | | | | | | introduces Iterator indexOf, findIndexOf moved indexOf, findIndexOf bodies from Iterable to Iterator deprecated Iterable indexOf, findIndexOf introdued Seq indexOf, findIndexOf
* Fixed String.+ when the implicit is applied to ...Iulian Dragos2008-05-221-1/+1
| | | | | Fixed String.+ when the implicit is applied to a null.