summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #2645dcaoyuan2009-11-181-2/+2
|
* Fixed a bug in Range which was causing take and...Paul Phillips2009-11-181-2/+5
| | | | | | | | Fixed a bug in Range which was causing take and drop to overflow and return empty if the argument was larger than the actual length of the Range and arg * step > MaxInt.
* recompiled msil.jar, it refered to scala.Math$Lukas Rytz2009-11-181-1/+1
|
* More deprecation work.Paul Phillips2009-11-1822-241/+24
| | | | | | since 2.7.2 (still except for lower case primitive type aliases) and removes every deprecated method which has never shipped in a release.
* to fix varies conditions of removed source/clas...dcaoyuan2009-11-181-6/+23
| | | | | | to fix varies conditions of removed source/class files that were previously recorded in .scala_dependencies.
* Fixed #2631dcaoyuan2009-11-181-7/+63
|
* More minor removals and some cleanups of !!!s a...Paul Phillips2009-11-185-37/+5
| | | | | More minor removals and some cleanups of !!!s and XXXs.
* Removing bits from the library which shouldn't ...Paul Phillips2009-11-1812-329/+21
| | | | | | | | | | | | | | | Removing bits from the library which shouldn't make the 2.8 cut. Removed outright: util.Hashable: unused and I have a better plan for this net.Utility: class created to accomodate expansion which never materialized reflect.Invocation: doesn't go far enough, needs love it won't find right now reflect.RichClass: same as Invocation Moved into compiler: util.ScalaClassLoader: too useful to lose, not done enough to ship
* Partial fix for #2625.Paul Phillips2009-11-171-3/+4
|
* Allow implicit modifier on single-parameter fun...Martin Odersky2009-11-172-1/+23
| | | | | | Allow implicit modifier on single-parameter function literals. Fixes and closes #1492.
* More String.isEmpty breakage.Miles Sabin2009-11-171-1/+1
|
* Contents of scala.Math moved into scala.math pa...Paul Phillips2009-11-175-21/+8
| | | | | | Contents of scala.Math moved into scala.math package object, and scala.Math deprecated. Also a couple janitorial cleanups.
* Fix and test case for #2636.Paul Phillips2009-11-172-2/+40
|
* Fix for #2647.Paul Phillips2009-11-162-6/+5
|
* Some organization & duplication removal in RefC...Paul Phillips2009-11-161-172/+201
| | | | | | Some organization & duplication removal in RefChecks stemming from optimizer appeasement.
* A lot of minor code adjustments to ease the bur...Paul Phillips2009-11-167-342/+317
| | | | | | A lot of minor code adjustments to ease the burden on the optimizer, and various cleanups encountered along the way.
* Some organization & duplication removal in GenI...Paul Phillips2009-11-163-446/+377
| | | | | | Some organization & duplication removal in GenICode stemming from optimizer appeasement.
* Minor pickler organization stemming from optimi...Paul Phillips2009-11-162-149/+111
| | | | | Minor pickler organization stemming from optimizer appeasement.
* Faster optimizer by caching successors/predeces...Iulian Dragos2009-11-1611-113/+135
| | | | | | Faster optimizer by caching successors/predecessors in basic blocks, and better lub for icode
* test cases in pendingAdriaan Moors2009-11-166-0/+145
|
* Fixed #2323; made Pickler do the right thing.Martin Odersky2009-11-162-7/+12
|
* another minor change to teh review scriptLukas Rytz2009-11-161-3/+3
|
* review requests can now be created outside a ch...Lukas Rytz2009-11-161-2/+4
| | | | | review requests can now be created outside a checkout
* Fixed #2627.Miles Sabin2009-11-161-1/+2
|
* Corrected help syntax for -Ybuilder-debug.Miles Sabin2009-11-151-1/+2
|
* Tweaked a test which has been regularly failing...Paul Phillips2009-11-152-2/+2
| | | | | | Tweaked a test which has been regularly failing due to heap exhaustion, although what it's supposed to be testing is stack utilization.
* Fixed #2627.Miles Sabin2009-11-152-34/+35
|
* Added benchmarks with results for equality.Martin Odersky2009-11-153-0/+122
|
* Fixed #1459Martin Odersky2009-11-152-11/+11
|
* Fixed #2848 and #2630; Improvements in equality...Martin Odersky2009-11-158-90/+115
| | | | | Fixed #2848 and #2630; Improvements in equality speed
* Fixes and test cases for #2087 and #2400.Paul Phillips2009-11-146-30/+36
| | | | | | | 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.
* Fixes #1477 by requiring that abstract types wi...Martin Odersky2009-11-137-0/+54
| | | | | | Fixes #1477 by requiring that abstract types with non-volatile upper bounds cannot be overridden by volatile types.
* updates to review scriptLukas Rytz2009-11-136-2/+1216
|
* review board sciptLukas Rytz2009-11-132-0/+2582
|
* updated plugin-multiple-rafter plugins.jarAntonio Cunei2009-11-131-1/+1
|
* fixed #1236Adriaan Moors2009-11-133-11/+26
| | | | | another Symbol::tpe bites the dust (should'be been tpeHK)
* fixed scala-devel sbaz packageLukas Rytz2009-11-131-1/+1
|
* Bringing BigInt and BigDecimal into the club of...Paul Phillips2009-11-127-29/+121
| | | | | | | | Bringing BigInt and BigDecimal into the club of things which can be equal to one another and which will have the same hashCode. Fixed some old and some new bugs associated with equality. Note: not fully optimized.
* Moved those bits of Predef into the scala packa...Paul Phillips2009-11-123-70/+55
| | | | | | Moved those bits of Predef into the scala package object which would go without a fight.
* Removed everything deprecated in 2.7.3 or earli...Paul Phillips2009-11-1219-262/+12
| | | | | | Removed everything deprecated in 2.7.3 or earlier except the lower case primitive type aliases, plus associated fixes.
* Merge branch 'ticket/2594'Adriaan Moors2009-11-123-5/+44
|
* documentation for fix of #2482Adriaan Moors2009-11-121-6/+7
|
* Slight opimization of previous checkin.Martin Odersky2009-11-121-1/+3
|
* Fixed #2482Martin Odersky2009-11-121-1/+7
|
* added hooks so that BigInt, BigDecimal can do t...Martin Odersky2009-11-125-16/+50
| | | | | | added hooks so that BigInt, BigDecimal can do the right thign for equality.
* fixed #2454Adriaan Moors2009-11-127-27/+105
|
* fixed #2587Adriaan Moors2009-11-123-47/+56
| | | | | | | | | | two underlying problems: - isAsSpecific did not skolemize lower (left) type in subtyping check (instead used withTypeVar on left and right) - withTypeVars did not clone the symbols of the type params (so they were not fresh) (the second fix is not essential due to the first fix, it "improves correctness", but should check whether performance is not impacted too severely) applied martin's documentation diff
* Fixed #2517 Martin Odersky2009-11-124-14/+51
| | | | | | | Fixed #2606 Fixed #2598 Fixed #1836
* avoid illegal forward references by moving synt...Lukas Rytz2009-11-122-1/+4
| | | | | | avoid illegal forward references by moving synthetics to the beginning of the statement-list. fixes #2489
* Removed some duplicated functions.Paul Phillips2009-11-126-12/+6
|