summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* New starrIulian Dragos2010-05-182-2/+2
|
* new msil.jar to make msil build. noreview.Lukas Rytz2010-05-121-1/+1
|
* Fixed -Xcheckinit build.no review.Iulian Dragos2010-05-102-2/+2
|
* Rolled partest back to r21328.Paul Phillips2010-05-061-1/+0
| | | | | | | | changes necessary to plug it back in while preserving everything which has happened since then in tests and such, but we should be the lookout for overreversion. Review by phaller (but as a formality, I don't think it requires direct review.)
* revert the revert of r21791 (fix constructor pa...Lukas Rytz2010-05-053-3/+3
| | | | | | revert the revert of r21791 (fix constructor parameter annotations). close #3390. together with a new starr it builds. no review.
* Closes #3310 (very large Scala class is compile...Gilles Dubochet2010-04-291-1/+1
| | | | | | Closes #3310 (very large Scala class is compiled to invalid classfile because Scala signature can't fit into constant pool). Review by dragos.
* New starr with the latest fixes to specialization.Iulian Dragos2010-04-093-3/+3
|
* New starr for primitive companion objectsIulian Dragos2010-04-093-3/+3
|
* If I work on this patch any longer without chec...Paul Phillips2010-04-051-0/+1
| | | | | | | | | | | | | | | | If I work on this patch any longer without checking in I will go stark raving mad. It is broken up into a couple pieces. This one is the changes to test/. It includes fixing a bunch of tests, removing deprecated constructs, moving jars used by tests to the most specific plausible location rather than having all jars on the classpath of all tests, and some filesystem layout change (continuations get their whole own srcpath.) This would be the world's most tedious review, so let's say no review. [Note: after this commit, I doubt things will build very smoothly until the rest of the partest changes follow. Which should only be seconds, but just in case.]
* Scala signature is generated as an annotation (...Gilles Dubochet2010-03-231-1/+1
| | | | | | | | | | | | | Scala signature is generated as an annotation (that is accessible through Java reflection). - compiler generates all pickled Scala signatures as annotations to class files. - compiler can read class files with signature as annotations or old-style signatures as attributes. - Scalap has also been updated to new signatures (contributed by Ilya Sergey: thanks a lot). - FJBG updated to allow entering constant pool strings as byte arrays. - ByteCodecs decode method returns the length of the decoded array. Review by ilyas. Already mostly reviewed by odersky.
* Removed the symlinks between scalacheck jars to...Paul Phillips2010-03-022-2/+0
| | | | | | Removed the symlinks between scalacheck jars to satisfy windows. Tweaked partest to accomodate. No review.
* Added ## method to Any as our scala hashCode me...Paul Phillips2010-02-283-3/+3
| | | | | | | | | | | | | | Added ## method to Any as our scala hashCode method which provides consistent answers for primitive types. And I'm sure we're all tired of new starrs, but it's hard to add a method to Any without one. This patch only brings ## into existence, but nothing calls it yet. // some true assertions scala> assert(5.5f.## == 5.5f.hashCode) scala> assert(5.0f.## != 5.0f.hashCode && 5.0f.## == 5L.##) No review. (Already reviewed by odersky.)
* It turns out some of the weirdness lately is be...Paul Phillips2010-02-253-3/+3
| | | | | | | | | It turns out some of the weirdness lately is because changes to classpath handling have a way of not taking effect until they're installed via starr, and presently we have a starr with different logic than trunk. No choice but to roll up one more starr based on r20984. No review.
* Updated scalacheck jar to current trunk.Paul Phillips2010-02-243-2/+2
| | | | | | | | | not being used. Updated partest with a --scalacheck option. Added scalacheck tests to the ant build target. Still struggling with ant/partest/classpaths so it's not on by default yet, but at least ./partest --scalacheck works. We... will... use... scalacheck. And we will like it! No review.
* Having some challenges confirming the validity ...Paul Phillips2010-02-203-3/+3
| | | | | | | Having some challenges confirming the validity of the bootstrap process given starr's slightly dated classpath code, so this is a new starr based on r20934. No review.
* fix msil build (nested classes in particular).Lukas Rytz2010-02-081-1/+1
|
* new starr to bag performance improvements and f...Martin Odersky2010-01-293-3/+3
| | | | | new starr to bag performance improvements and fixes to companion objects
* 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
|