summaryrefslogtreecommitdiff
path: root/src/dotnet-library
Commit message (Collapse)AuthorAgeFilesLines
* Fixed "scala.util.Random" in MSIL library.Gilles Dubochet2009-05-291-11/+14
|
* "scala.Random" has been deprecated since 2.7.2 ...Gilles Dubochet2009-05-291-77/+0
| | | | | | "scala.Random" has been deprecated since 2.7.2 (replaced by "scala.util.Random"), and will not be part of 2.8.
* Further development of the Numeric and Ordering...Paul Phillips2009-05-281-100/+3
| | | | | | | Further development of the Numeric and Ordering traits. Replaced Predef implicits from everything => Ordered with a single implicit from Ordering => Ordered.
* Implements feature request #2008.Gilles Dubochet2009-05-281-1/+22
|
* In "Iterable" and in all its subclasses, "itera...Gilles Dubochet2009-05-273-5/+5
| | | | | | In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes).
* Dummies to please our MSIL overlords.Paul Phillips2009-05-263-0/+3
|
* fixed .net buildLukas Rytz2009-05-1647-1837/+1004
|
* epic MSIL hacking - Array compiles.Paul Phillips2009-05-081-0/+1
|
* added emtpy stub of PackratParsers for msilLukas Rytz2009-05-071-0/+1
|
* Synced src/dotnet-library with rev 17621 of src...Paul Phillips2009-05-0212-101/+251
| | | | | Synced src/dotnet-library with rev 17621 of src/library
* Updated (all) copyright notices to 2009Antonio Cunei2009-01-1325-25/+25
|
* Updated copyright notices to 2009Antonio Cunei2009-01-0913-13/+13
|
* fixed two problems of msil buildLukas Rytz2008-12-172-479/+202
|
* removing Marshal and dependency on java.io in s...Lukas Rytz2008-11-272-0/+1200
| | | | | removing Marshal and dependency on java.io in scalax..List for msil
* copying 'scala.testing.Show' from 2.7.2 branch ...Lukas Rytz2008-10-161-0/+1
| | | | | copying 'scala.testing.Show' from 2.7.2 branch to trunk
* temporarly disabling OpenHashMap on .NET.Lukas Rytz2008-08-131-0/+4
|
* Checked in David's update to LongMap and IntMap.Geoffrey Washburn2008-08-063-3/+0
|
* David's new collections can't currently be used...Geoffrey Washburn2008-08-063-0/+3
| | | | | David's new collections can't currently be used on .NET.
* Move scala.Random -> scala.util.Random on .NETLukas Rytz2008-07-302-0/+77
|
* Fixes the msil build.Lukas Rytz2008-07-281-0/+17
| | | | | | | On .NET, the method fillInStackTrace does not exist (in System.Exception, which is aliased as RuntimeException). So NonLocalReturnException cannot override it.
* added EOLs, missing headersmichelou2008-06-1031-31/+31
|
* text.Document for .NET target (using System.IO....jeberle2008-05-271-1/+122
| | | | | text.Document for .NET target (using System.IO.TextWriter)
* commented some lines in Sorting.scala (they whe...jeberle2008-05-271-1/+0
| | | | | | 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
|
* Inner classes are now kept as such when compili...Lukas Rytz2008-05-211-4/+4
| | | | | Inner classes are now kept as such when compiling to .NET.
* Synced src/dotnet-library with rev 15086 of src...Lukas Rytz2008-05-2010-98/+427
| | | | | Synced src/dotnet-library with rev 15086 of src/library
* fixed #681jeberle2008-05-201-10/+21
| | | | | | | Changes in the Comparator.cs, called when using "==". And recompiled scalaruntime.dll. Perhaps the code can be better (simplifying the condition), but it works.
* Added depreciated annotation and comment to kee...Geoffrey Washburn2008-05-191-1/+3
| | | | | | Added depreciated annotation and comment to keep it synchronized with the JVM standard library.
* removed again 'override' on + of dotnet ListLukas Rytz2008-05-191-1/+1
|
* changed copying of .net / jvm14 libraries.Lukas Rytz2008-05-091-1/+1
|
* added the dotnet version of Manifest.scalajeberle2008-05-061-0/+127
|
* in fact the tests in the main function doesn't ...jeberle2008-04-221-0/+1
| | | | | | in fact the tests in the main function doesn't compile for dot-net target... ?? I'll try to get that fixed.
* Sorting.scala is platform-independentjeberle2008-04-221-1/+0
|
* added all the empty dotnet-library files that w...jeberle2008-04-22128-0/+128
| | | | | | | | added all the empty dotnet-library files that where not included while compiling for msil. Now we can include **/*.scala in the build.xml. Next step : implement some of these empty files or delete them if the original file (in scala library) also compile for the dotnet target.
* removing PagedSeq.scala from dotnet-libraryLukas Rytz2008-04-091-0/+1
|
* More stubs for MSIL, but I do not have the pati...Geoffrey Washburn2008-04-0710-0/+9
| | | | | | | | More stubs for MSIL, but I do not have the patience to create all of them at the moment. So for now the MSIL build is still a special case. We should have the students working on MSIL finish creating stubs (and perhaps implement some of them).
* Closer to having MSIL build again.Geoffrey Washburn2008-04-0758-3/+68
|
* New reorg planGeoffrey Washburn2008-04-0733-0/+3943
|
* The great library reorg!Geoffrey Washburn2008-04-0433-3943/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | The standard library will now be laid out approximately like this library/scala /jvm/scala /jvm/jvm1.4/scala /jvm/jvm1.5/scala /jvm/android/scala /jvm/cldc/scala /dotnet/scala To build the standard library for a given target you start by copying the root library/scala tree to a staging area, then move down in the hierarchy copying the nested "scala" trees on top in the staging area. So if you wanted to build for cldc, for example, you would do something like the following: rsync -avz library/scala staging/ rsync -avz library/scala/jvm/scala staging/ rsync -avz library/scala/jvm/cldc/scala staging/ The ant build files will be updated to do this for you automagically, and there will soon be shell script to do this if you want to compile some parts of the standard library manually.
* Fixed svn propertiesmihaylov2008-03-192-2/+2
|
* minor fix (bis)michelou2008-02-281-3/+3
|
* minor fixmichelou2008-02-281-2/+2
|
* updated currentTime (dotnet)michelou2008-02-281-2/+8
|
* updated RichString on dotnet/cldcmichelou2008-02-261-16/+36
|
* fixed #468 (msil)michelou2008-02-221-24/+85
|
* removed RichString methods and @throwsmichelou2008-02-211-47/+317
|
* switched to Scala implementation of StringBuildermichelou2008-02-066-134/+446
|
* fixed #423, added integer square root (CLDC)michelou2008-01-311-1/+1
|
* added toBinary-/toHex-/toOctalString (Long)michelou2008-01-181-0/+30
|
* updated RichClassmichelou2007-12-212-5/+5
|