summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fixed POM for sonatypes standards.v2.10.0-M2Josh Suereth2012-02-208-0/+96
|
* Added the ability to publish signed artifacts.Josh Suereth2012-02-201-2/+102
|
* Javadoc + Source jar generation is now complete for maven deployment.Josh Suereth2012-02-203-48/+166
|
* A better error message for inheritance conflict.Paul Phillips2012-02-195-1/+66
| | | | | | And some tests for pending. Closes SI-5358.
* Streamlining skolemization, specialization.Paul Phillips2012-02-196-58/+75
| | | | | | Skolemization code doesn't belong in Typers. I carved out a little place for it. Also simplifications in specialization.
* Merge remote-tracking branch 'TiarkRompf/SI-5506' into developPaul Phillips2012-02-194-7/+115
|\
| * fixes SI-5506. better cps type propagation for polymorphic and ↵Tiark Rompf2012-02-194-7/+115
| | | | | | | | multi-argument list methods.
* | Merge remote-tracking branch 'szabolcsberecz/SI-5215' into developPaul Phillips2012-02-194-17/+52
|\ \
| * | Fix for SI-5215: scalac crash when @elidable used in traitSzabolcs Berecz2012-02-194-17/+52
| | | | | | | | | | | | The elision is now done by not emitting method calls (it was done by removing the elidable methods).
* | | Specialize Tuple2 on more types.Paul Phillips2012-02-192-2/+2
|/ / | | | | | | This one is a no-brainer now.
* | Fix [@spec A] to correctly induce AnyRef specialization.Erik Osheim2012-02-192-20/+19
| | | | | | | | | | | | | | | | | | | | | | While [@specialized A] already tries to include specialization, a bug in specializedOn prevented this from happening: any empty list could mean that the type var was unspecialized, or that it was specialized on everything. The fix is to have this function create the full list of symbols in the case where the @specialized annotation doesn't explicitly include any types.
* | Merge remote-tracking branch 'phaller/execution-context'Paul Phillips2012-02-191-1/+1
|\ \
| * | Fix race condition in scala-concurrent-tck testPhilipp Haller2012-02-191-1/+1
| | |
* | | More specialization tests.Paul Phillips2012-02-198-6/+93
| | | | | | | | | | | | Some in pending, some in files. Closes SI-4770.
* | | More on SI-5500.Paul Phillips2012-02-189-63/+142
| | | | | | | | | | | | | | | | | | A reimagining of erik's patch in 1df4fc6e59 . He did the hard part, this is the batman reboot. I added more tests and tried to make the anyref caching code less fragile.
| | |
| \ \
*-. \ \ Merge branch 'master', remote-tracking branch 'non/si-5500' into developPaul Phillips2012-02-1814-57/+60
|\ \ \ \
| | * | | Fixed over-optimistic anyrefSpecCache (closes SI-5500).Erik Osheim2012-02-193-6/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The basic problem here was that generic type params were getting confused between the various specialized subclasses. For instance, calling typeParamsSubAnyRef(A, C2$mcLI$sp) might return the wrong specialized type param, e.g. C2$mcLZ$sp.A$sp (note the Z instead of the I). The fix is to cache with both the sym (A) and also the clazz (C2$mcLI$sp). This may resolve a whole host of other obscure AnyRef specialization problems.
| * | | | Cleanup in aisle New.Paul Phillips2012-02-1812-51/+37
| | | | | | | | | | | | | | | | | | | | More trees created more uniformly.
| | | | |
| \ \ \ \
*-. \ \ \ \ Merge remote-tracking branches 'hubertp/issue/5452' and 'hubertp/issue/5493' ↵Paul Phillips2012-02-1710-10/+41
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | into develop
| | * | | | Closes #5497.Hubert Plociniczak2012-02-185-2/+22
| | | |_|/ | | |/| | | | | | | | | | | | Chain contexts by sharing the error buffer, unless you explicitly create a silent context. Review by @odersky
| * / | | Closes #5452.Hubert Plociniczak2012-02-175-8/+19
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of trying to track the fallback attempts we rely on the context state to inform us which fallback is the last one. setError cannot always be called in NoBestMethodAlternativeError because inferMethodAlternative relies on side-effects. Review by @paulp.
* | | | Merge remote-tracking branch 'scalamacros/pullrequest/macros' into developPaul Phillips2012-02-1734-31/+242
|\ \ \ \
| * | | | Fixes miscellaneous macro bugsEugene Burmako2012-02-1734-31/+242
| |/ / /
* | | | Merge branch 'develop'Paul Phillips2012-02-1736-117/+3516
|\ \ \ \ | |_|/ / |/| | |
| * | | Fix for "type _$1 defined twice".Paul Phillips2012-02-178-144/+134
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Actually not a fix, only a workaround. Package objects strike again: you don't want to have existentials in there, like this: private val resolverFunction: PartialFunction[Throwable, Try[_]] = ... There are a few irrelevant-to-that-bug changes included which I did while debugging and figured I'd keep them. With this patch I can merge/am merging the scala.concurrent work.
| * | | Merge remote-tracking branch 'phaller/execution-context' into feb17-alexPaul Phillips2012-02-1733-116/+3525
| |\ \ \ | | | |/ | | |/|
| | * | Disable execution context and futures implementation in the default package.Aleksandar Prokopec2012-02-1612-28/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed some tests so that they work now. The Transactions.scala test was failing when defined in scala.concurrent package, reporting that type `_$1` is defined twice. Until we figure out the reason for this, the package name in that test is renamed.
| | * | Merge branch 'master' into execution-contextAleksandar Prokopec2012-02-16643-9625/+16626
| | |\| | | | | | | | | | | | | | | | | Conflicts: src/library/scala/package.scala
| | * | Change the default reportFailure implementation.Aleksandar Prokopec2012-02-031-2/+3
| | | |
| | * | Fix typo in Future trait. Simplify recoverWith.Philipp Haller2012-02-031-5/+2
| | | |
| | * | Rename to recoverWith and fallbackTo in Future.aleksandar2012-02-011-2/+2
| | | |
| | * | Replaced Either with Try throughout scala.concurrent.Heather Miller2012-01-319-115/+122
| | | |
| | * | Add some missing methods, remove obsolete methods in futures.aleksandar2012-01-306-36/+41
| | | | | | | | | | | | | | | | | | | | | | | | Remove `ensure`. Add `reportFailure` to execution contexts. Add `zip` to futures.
| | * | Refactor the Try monad a bit.aleksandar2012-01-301-45/+37
| | | |
| | * | Changed the comments a bit, removed on* methods on Try.aleksandar2012-01-301-55/+32
| | | |
| | * | Added first cut of Try type, refactored from twitter util.Heather Miller2012-01-301-0/+196
| | | |
| | * | Merge branch 'execution-context' of https://github.com/phaller/scala into ↵Vojin Jovanovic2012-01-271-20/+66
| | |\ \ | | | | | | | | | | | | | | | execution-context
| | | * | Implement the ensure and andThen methods on futures.aleksandar2012-01-271-1/+56
| | | | |
| | | * | Change the implementation of the future failed projection.aleksandar2012-01-271-20/+11
| | | | |
| | * | | Merge branch 'master' into execution-contextVojin Jovanovic2012-01-25232-1921/+8738
| | |\ \ \ | | | |/ / | | |/| |
| | * | | Removed the nondeterministic implicit. Added rescue.aleksandar2012-01-246-54/+74
| | | | |
| | * | | Fixed the way callbacks are handled. Removed executor from base future trait.aleksandar2012-01-234-14/+13
| | | | |
| | * | | Add implicit for duration.aleksandar2012-01-201-0/+7
| | | | |
| | * | | Add NonDeterministic evidence needed to call nondeterministic methods.aleksandar2012-01-196-54/+91
| | | | |
| | * | | Add implicit conversion for futures that enables calling nondeterministic ↵aleksandar2012-01-194-100/+113
| | | | | | | | | | | | | | | | | | | | methods.
| | * | | Deprecating some traits in scala.concurrent.aleksandar2012-01-1910-5/+23
| | | | |
| | * | | Fix `all` combinator on futures, refactor execution context, remove disabled ↵aleksandar2012-01-197-1262/+88
| | | | | | | | | | | | | | | | | | | | files.
| | * | | Added implementations for any and find on collections of futures.Heather Miller2012-01-193-7/+55
| | | | |
| | * | | Refactor concurrent package and execution contexts.aleksandar2012-01-167-55/+101
| | | | |
| | * | | Work in progress.brijest2012-01-166-19/+48
| | | | |