summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* 1.Lex Spoon2007-04-012-81/+118
| | | | | | | | | | the ones that appear relevant. 2. Such imports are nested, each with its own wrapper object. 3. Interpreter output is cleaned up with a regular expression, so that all of these wrapper objects do not apper.
* remove the period from the short name of a symbolLex Spoon2007-04-011-1/+1
|
* Fixed Iterator.drop (contribution #415)mihaylov2007-03-311-1/+1
|
* Fxied Stream.dropWhile (bug contribution #410)mihaylov2007-03-301-1/+1
|
* fixed bug1013Martin Odersky2007-03-302-2/+2
|
* fixed bug1017Martin Odersky2007-03-301-14/+27
|
* fixed bug1024.Martin Odersky2007-03-306-10/+22
|
* assumes () parameterless if overridden method h...Martin Odersky2007-03-301-10/+15
| | | | | | assumes () parameterless if overridden method has one. This should fix problems with toString.
* Fixing the build (toString() issues in the comp...Sean McDirmid2007-03-305-14/+25
| | | | | | Fixing the build (toString() issues in the compiler) and the test suite (toString() issues, spacing issues, and some stringPrefix issues)
* Checking in, I guess the test failing means thi...Sean McDirmid2007-03-3028-104/+351
| | | | | | Checking in, I guess the test failing means this is urgent. Not sure what else will break.
* fixed bug 1030Adriaan Moors2007-03-291-4/+3
| | | | | unapplySeq in Array is now like unapplySeq in Seq
* Fixed problem with sensibility checks.Martin Odersky2007-03-285-19/+22
|
* Changed BitSet to use default toArray methodSean McDirmid2007-03-281-1/+2
|
* overridng toArray to get rid of bugSean McDirmid2007-03-281-0/+1
|
* Fixed tail call elimination for calls in the rh...Iulian Dragos2007-03-281-1/+2
| | | | | Fixed tail call elimination for calls in the rhs of boolean &&.
* New scala docSean McDirmid2007-03-285-0/+1406
|
* Revamped scala-doc.Sean McDirmid2007-03-2822-86/+174
|
* Synchronized src/dotnet-library with rev 10541 ...mihaylov2007-03-2710-182/+98
| | | | | Synchronized src/dotnet-library with rev 10541 of src/library
* Fixed a small bug in scala.Console.readShort()mihaylov2007-03-271-1/+1
|
* Small refactoring of the Setting classesmihaylov2007-03-263-16/+21
|
* Removed implicit use of any java.lang classes f...mihaylov2007-03-2630-24/+38
| | | | | Removed implicit use of any java.lang classes from the library
* Fixed bug #1020 (crash on finally with try-catch).Iulian Dragos2007-03-262-18/+12
|
* ParallelMatching falls back when it cannot gene...Burak Emir2007-03-242-3/+21
| | | | | | ParallelMatching falls back when it cannot generate optimized code for ints (@todo)
* - added user-accessible settings for the interp...Lex Spoon2007-03-243-27/+96
| | | | | | | | | - added user-accessible settings for the interpreter - truncate each line of interpreter output to a user-settable length - generate variables like "unnamed123" instead of "line123" - only increment the number for generated variables when one is generated, not for every line submitted to the interpreter
* Removed Iterable.toArray; it conflicts with Bit...Lex Spoon2007-03-242-11/+1
| | | | | Removed Iterable.toArray; it conflicts with BitSet.toArray
* fixed Seq.toStringLex Spoon2007-03-241-1/+2
|
* Reverted toString in Seq, Map, and Set; it now ...Lex Spoon2007-03-243-37/+12
| | | | | | Reverted toString in Seq, Map, and Set; it now prints out all elements, no matter how many there are.
* - tweaked two commentsLex Spoon2007-03-241-2/+13
| | | | | - added toArray
* fixed bug1014Martin Odersky2007-03-232-12/+9
|
* Fixed ArrayIndexOutOfBounds in cached bigints f...Iulian Dragos2007-03-231-2/+3
| | | | | Fixed ArrayIndexOutOfBounds in cached bigints for negative numbers.
* Fixed unary minus in BigInt (changed from -: to...Iulian Dragos2007-03-231-1/+1
| | | | | Fixed unary minus in BigInt (changed from -: to unary_-)
* renamed getOrElsePut to getOrElseUpdate, which ...Lex Spoon2007-03-231-4/+4
| | | | | renamed getOrElsePut to getOrElseUpdate, which is more Scala-like
* - toString() on large collections now only printsLex Spoon2007-03-234-7/+55
| | | | | | | a few of the elements - all maps now have getOrElse - mutable maps now have getOrElsePut
* when printing an import statement, do not add {...Lex Spoon2007-03-231-1/+5
| | | | | | when printing an import statement, do not add {} around single identifiers
* fixed bug related to default patternsBurak Emir2007-03-231-2/+3
|
* Fixed stupid comparison warning.Iulian Dragos2007-03-231-17/+0
|
* fixed bug1011Martin Odersky2007-03-231-4/+3
|
* fixed nonsensical warningsMartin Odersky2007-03-231-3/+3
|
* fixed bug1010Martin Odersky2007-03-232-0/+11
|
* Fixed contribution #396mihaylov2007-03-231-1/+1
|
* modified sinsibility checks and test casesMartin Odersky2007-03-222-10/+13
|
* (1) added readLong to Console.Martin Odersky2007-03-225-2/+81
| | | | | | (2) added print/read methods to Predef (3) added warnings for non-sensical comparisons
* added links to compiler sourcesmichelou2007-03-221-393/+464
|
* corrected code example in Scala commentmichelou2007-03-221-27/+35
|
* fixed coverage checking to use <:< (Adriaan's b...Burak Emir2007-03-221-2/+5
| | | | | | fixed coverage checking to use <:< (Adriaan's bug for typed pattern _:List)
* Rolled back changes for assignments that carry ...Iulian Dragos2007-03-221-30/+38
| | | | | Rolled back changes for assignments that carry their rhs value.
* oops, forgot to add ParallelMatchingBurak Emir2007-03-221-0/+589
|
* new pattern matching algoBurak Emir2007-03-229-449/+323
| | | | | | | removed "removeoption" changed SUnit and some tests added useful debug msg in typer
* Added support in the backend for assignments th...Iulian Dragos2007-03-211-38/+30
| | | | | | Added support in the backend for assignments that carry the value of their right hand side.
* Major rewrite of optimization phases.Iulian Dragos2007-03-2122-212/+616
|