summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* fix several issues in .net backend / type parsing.Lukas Rytz2010-01-221-1/+1
|
* rebuilt msil.jar to fix msil build. no reviewLukas Rytz2009-12-181-1/+1
|
* Rebuilt forkjoin.jar in preparation for the new...Antonio Cunei2009-12-161-1/+1
| | | | | Rebuilt forkjoin.jar in preparation for the new rc. No review.
* Took advantage of package object fix to factor ...Paul Phillips2009-12-123-3/+3
| | | | | | | Took advantage of package object fix to factor the duplicated code out of scala.Math and scala.math.`package`. This required a new starr which exposes inherited package object members (starr is based on r20110.)
* re-compiled forkjoinLukas Rytz2009-12-031-1/+1
|
* moved forkjoin sources out of the library folderLukas Rytz2009-12-021-0/+1
|
* fix msil code generation for exception handlers.Lukas Rytz2009-12-011-1/+1
|
* re-compiled msil.jar (scala.Math / scala.math b...Lukas Rytz2009-11-251-1/+1
| | | | | re-compiled msil.jar (scala.Math / scala.math business)
* Removed all traces of Boxed*Array. New starr.Paul Phillips2009-11-223-3/+3
|
* New starr based on r19717 since I'm finding the...Paul Phillips2009-11-183-3/+3
| | | | | | New starr based on r19717 since I'm finding the current starr doesn't have TupleN.zipped fully working.
* Finally completed the incredibly tedious task o...Paul Phillips2009-11-181-1/+1
| | | | | | Finally completed the incredibly tedious task of removing the lower case primitive aliases from Predef. Had to rebuild msil.jar along the way.
* recompiled msil.jar, it refered to scala.Math$Lukas Rytz2009-11-181-1/+1
|
* Fixes and test cases for #2087 and #2400.Paul Phillips2009-11-141-1/+1
| | | | | | | fixing a long-standing bug in fjbg and recompiling fjbg.jar, which had the side effect of revealing that the current fjbg jar had never been recompiled with target 1.5, so now it's smaller and (I imagine) faster.
* fix build on windows. fixes #2578Lukas Rytz2009-11-063-3/+3
|
* simplified re-ordering packagesLukas Rytz2009-11-053-3/+3
|
* fix cyclic reference errors in scaladoc.Lukas Rytz2009-11-043-3/+3
|
* new classpaths.Lukas Rytz2009-10-261-1/+1
|
* new starr that does type constructor inferenceAdriaan Moors2009-10-223-3/+3
|
* built new starr and fixed test casesTiark Rompf2009-10-213-3/+3
|
* renamed Vector to IndexedSeqTiark Rompf2009-10-213-3/+3
|
* removing msil from trunk.Lukas Rytz2009-10-081-0/+0
|
* Sequence->SeqMartin Odersky2009-10-022-2/+2
|
* Rebuilt jline with http://bugs.jython.org/file6...Paul Phillips2009-09-261-1/+1
| | | | | | | Rebuilt jline with http://bugs.jython.org/file676/jline-osx.diff applied. It doesn't completely fix things on OSX but for me they are clearly better.
* Fixed another array problemMartin Odersky2009-09-251-1/+1
|
* [no content change] Fixed all SVN properties: m...Gilles Dubochet2009-09-241-0/+0
| | | | | | | | [no content change] Fixed all SVN properties: mimes, EOL, executable. Id expansion is consistently enabled for Scala/Java/C# sources in 'src/' and consistently disabled and removed from everywhere else: there should not be any dead Id tags anymore.
* new arrays are done.Martin Odersky2009-09-213-3/+3
|
* new starr, with some changes to varargs handling.Martin Odersky2009-09-173-3/+3
|
* Not sure why my jars are being viewed somewhere...Paul Phillips2009-09-171-1/+1
| | | | | | | Not sure why my jars are being viewed somewhere along the way as if textual data, and this is apparently causing breakage some places. One more try at uploading a jar.
* An enhanced scalacheck with new powers (includi...Paul Phillips2009-09-161-1/+1
| | | | | | | An enhanced scalacheck with new powers (including arbUnit, for all your arbitrary Unit needs) and some tests for recent Array-related crashers, including test case for the now working #2299.
* The first working scalacheck test! Now Arbitrar...Paul Phillips2009-09-161-1/+0
| | | | | | The first working scalacheck test! Now Arbitrary is working for us instead of our nemesis Capt. Entropy.
* New and possibly even working scalacheck jar.Paul Phillips2009-09-163-1/+2
|
* - support optimised build with "build.optimise"...Lukas Rytz2009-09-103-3/+3
| | | | | | | - support optimised build with "build.optimise", "dist.optimise" or - "test.optimise". nightly builds are now optimised (but not the - check-in builds) new starr containing all the latest optimiser-fixes
* new starr with class manifestsMartin Odersky2009-08-253-3/+3
|
* new starr with better Manifest handlingMartin Odersky2009-08-243-3/+3
|
* another starr, based on r18539 and Martin's cha...Adriaan Moors2009-08-243-3/+3
| | | | | another starr, based on r18539 and Martin's changes -- hopefully this one works in Windows
* second try to get a starr that can compile the ...Adriaan Moors2009-08-213-3/+3
| | | | | | second try to get a starr that can compile the new Predef that has the implicit `conforms`
* replaced the implicit `identity` coercion by `c...Adriaan Moors2009-08-213-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | replaced the implicit `identity` coercion by `conforms`, which can be used to encode generalised constraints the introduction of `conforms` revealed a bug in adaptToMember, which was inferring views while already inferring one, which gave rise to diverging implicits. Predef.identity is no longer special as far as the compiler is concerned. because conforms/identity was no longer prevented from being used as a view (which does not make sense, but preventing it shouldn't be necessary), removeNames in NamesDefaults suddenly didn't detect all ambiguities because it relied on tryTypedApply failing fixed by using an EmptyTree as an ambiguous argument instead of the argument, so failure is guaranteed fixed check file for t0590 new starr fixed the weirdest bug ever: don't know why, but can't change the total number of calls to newTermName in StdNames (so take away the one for "identity", give one back, doesn't matter where --> see "utterweirdness" at the end) the problem manifested itself by not finding Nil. This only happens during start up (when the scala/package.scala file hasn't been compiled yet), when Nil is required before List (because that would have forced Nil to be loaded).
* Reverted the just committed starr, which can't ...Paul Phillips2009-08-203-3/+3
| | | | | | | Reverted the just committed starr, which can't build itself. That's a bit disconcerting because ant newstarr claimed success, which I had thought was a guarantee.
* New starr based on r18525.Paul Phillips2009-08-203-3/+3
|
* Fixed memory leaks for streams.Martin Odersky2009-08-183-3/+3
|
* switch to unnested packages.Martin Odersky2009-07-242-2/+2
|
* New starr based on r18322, to better take advan...Paul Phillips2009-07-163-3/+3
| | | | | | | | New starr based on r18322, to better take advantage of the last six weeks (which include named/default arguments fixes, pattern matcher fixes, structural type fixes, performance gains, and more useful bits I'm sure.)
* New jline jar from mapreduce's generified jline...Paul Phillips2009-06-251-1/+1
| | | | | | New jline jar from mapreduce's generified jline, including 32-bit and 64-bit versions of jline.dll so windows users can be happier.
* removed code for parsing old pickle format.Lukas Rytz2009-06-034-4/+4
|
* big overhaul of annotations implementation.Lukas Rytz2009-05-303-3/+3
|
* Riffing off the removal of the cldc library, re...Paul Phillips2009-05-291-1/+0
| | | | | | Riffing off the removal of the cldc library, removed forCLDC and its special cases. Not as much fun as removing inIDE, but still fun.
* new starr based on r17810.Paul Phillips2009-05-253-3/+3
|
* Further stability test failures will be fatal a...Antonio Cunei2009-05-144-4/+4
| | | | | | | | | | Further stability test failures will be fatal again. New (deterministic) starr included: any further "key not found" errors will be reproducible. Warnings will be printed when linking old classfiles.
* Fixed stability issues.Iulian Dragos2009-05-141-1/+1
|
* Reinstated old, trusted starr from r17713.Antonio Cunei2009-05-134-4/+4
| | | | | | | | | | | | Modified version number detection, so that until we have a new starr both 4 and 5 are acceptable (without warnings). Restored stability test so that it does complain if differences are found; however, a failed stability test is still non-fatal for the time being.