summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Generalizations made in the course of evaluatin...Paul Phillips2009-06-242-50/+36
| | | | | | Generalizations made in the course of evaluating pattern matcher rewrite.
* fixed variance bug; added smart brace insertion...Martin Odersky2009-06-2415-222/+569
| | | | | | fixed variance bug; added smart brace insertion to parser. moved interactive compiler interface along.
* More work and documentation for GenericRanges, ...Paul Phillips2009-06-2416-79/+141
| | | | | | More work and documentation for GenericRanges, plus minor findbugs noticed issues.
* Working my way toward a consistent interface fo...Paul Phillips2009-06-246-174/+55
| | | | | | | | | | | Working my way toward a consistent interface for scala.io.Source. Now all the Source factory methods whose input is something Byte based rather than Char based require an implicit Codec, which will be Codec.default if no implicit is available. The idea is that if one uses the scala APIs, your desired encoding can be expressed as an implicit value and it will always be used; and that we (if so inclined) can change the default in one place.
* Moving empty .scala_dependencies check around l...Paul Phillips2009-06-242-6/+9
| | | | | | Moving empty .scala_dependencies check around looking for the spot which won't cause trouble.
* * dialogs use named arguments now, messages are...Ingo Maier2009-06-2413-150/+204
| | | | | | | * dialogs use named arguments now, messages are of type Any (fixes * #1922) components register listeners on demand (fixes #1595) Fix for * #2026 minor additions and fixes
* Some enhancements to Option to cover a variety ...Paul Phillips2009-06-241-2/+31
| | | | | | | | Some enhancements to Option to cover a variety of cases which have come up repeatedly: Option factory which translates null to None .orNull method on Options of nullable types filterMap implementation so Option[T].filterMap => Option[U]
* Some incremental steps on overhauling IO.Paul Phillips2009-06-234-72/+94
| | | | | | | scala.io.Codec for encapsulating charset encoding/decoding info, and then uses that class as the world's first default/implicit parameter: see BufferedSource.fromInputStream.
* Made some minor adjustments to Stream, having d...Paul Phillips2009-06-231-32/+7
| | | | | | | | | | Made some minor adjustments to Stream, having deprecated methods actually use the implementation they recommend to everyone else, except in those cases where doing so caused scalac to become unbuildable (e.g. concat) or the suggested alternative doesn't actually exist (e.g. fill(elem)). Also dropped the "drop" override as it appeared identical to the inherited implementation.
* Put a stop to empty .scala_dependencies files.Paul Phillips2009-06-231-0/+6
|
* Thread-based receive uses ManagerBlocker interf...Philipp Haller2009-06-234-23/+32
| | | | | Thread-based receive uses ManagerBlocker interface of new ForkJoinPool.
* As Ordered now extends Comparable, so too shouldPaul Phillips2009-06-231-1/+3
| | | | | Ordering extend Comparator.
* Fixed #2062.Philipp Haller2009-06-231-1/+1
|
* Removed what amounted to a no-operation in the ...Paul Phillips2009-06-221-51/+31
| | | | | | Removed what amounted to a no-operation in the synthetic case class equals method, and removed some dead code at the source level as well.
* Attempted to resolve the improbable mess surrou...Paul Phillips2009-06-223-19/+11
| | | | | | | | Attempted to resolve the improbable mess surrounding implicit conversions from Unit. Modified test case which relied on the supposedly verboten behavior; verbotenized () => AnyRef; added new test case which fails if verboten behavior should ever return.
* More equality shenanigans.Paul Phillips2009-06-212-35/+9
| | | | | | | and the various Int types all use different hashCode algorithms. This means there is very broken behavior afoot among the types. I see no option but to make numeric equals significantly less tricky.
* Created DelayedLazyVal for your def/val hybrid ...Paul Phillips2009-06-203-14/+47
| | | | | Created DelayedLazyVal for your def/val hybrid needs.
* Exposing more identifiers for tab-completion.Paul Phillips2009-06-202-15/+47
|
* improvements to names / defaults (implicits, ty...Lukas Rytz2009-06-205-70/+115
| | | | | | improvements to names / defaults (implicits, type of defaults, #2064, ...)
* Added jline as optional dependency to scala-com...Josh Suereth2009-06-201-0/+6
| | | | | Added jline as optional dependency to scala-compiler pom
* Removed some useless type arguments which survi...Paul Phillips2009-06-192-9/+9
| | | | | | Removed some useless type arguments which survived an earlier iteration, and resolved an implicit ambiguity that snuck into SpecializeTypes.
* Support for specialization on explicit types.Iulian Dragos2009-06-193-24/+94
| | | | | class Foo[@specialized("Int, Double") T] ..
* Created scala.reflect.Invocation, which offers ...Paul Phillips2009-06-192-0/+129
| | | | | | | | | Created scala.reflect.Invocation, which offers an easy syntax for reflective method calls, like: "abcdefgh" o 'endsWith("gh") // returns Any val res: Boolean = "abc" oo 'endsWith("z") // casts to expected type
* corrected some typosTiark Rompf2009-06-193-3/+3
|
* Fixed scaladoc crashIulian Dragos2009-06-191-1/+1
|
* Specialization landed in trunk.Iulian Dragos2009-06-1816-55/+1540
|
* tweak to hashable.Paul Phillips2009-06-181-1/+1
|
* Small fixes in code generation for interface ca...Iulian Dragos2009-06-182-3/+8
| | | | | Small fixes in code generation for interface calls.
* Fixed symbol loaders when called at a very late...Iulian Dragos2009-06-182-4/+7
| | | | | | Fixed symbol loaders when called at a very late phase (for example, when inner classes are lifted).
* (1) some changes to interactive compiler interf...Martin Odersky2009-06-1815-143/+334
| | | | | | (1) some changes to interactive compiler interface. 2) added (symbol.hasTypeAt 3) Added flatten/transpose/unzip to TraversableClass
* Removed some useless files which declare themse...Paul Phillips2009-06-186-6/+0
| | | | | | | Removed some useless files which declare themselves non-existent for the dotnet target, clearly without realizing they don't exist for any other target either.
* working on dep manager.Iulian Dragos2009-06-181-18/+27
|
* fixed some deprecation messages.Paul Phillips2009-06-181-2/+2
|
* Adds @experimental annotation to lower the acti...Paul Phillips2009-06-173-0/+31
| | | | | | | | Adds @experimental annotation to lower the activation energy wall between me and all my good ideas. Then took advantage of same to add the experimental filterMap to Traversable. (I consider its goodness undeniable, but its name at least is experimental.)
* Newly generated Tuple/Product/Function classes ...Paul Phillips2009-06-1768-745/+662
| | | | | | Newly generated Tuple/Product/Function classes from new genprod, plus a couple minor tweaks to genprod to keep tests happy.
* Close to complete rewrite of genprod so it's ea...Paul Phillips2009-06-171-245/+229
| | | | | | Close to complete rewrite of genprod so it's easier to modify and leverage for other exciting Foo1-Foo22 classes.
* made Hashable use a Seq instead of List.Paul Phillips2009-06-161-6/+6
|
* More work on all the collection proxies.Paul Phillips2009-06-1611-74/+120
| | | | | | attempted to bring Map/Set/Sequence/Iterable up to date with the methods in their underlying classes.
* cleaned up eta-expansion of partial named appli...Lukas Rytz2009-06-162-28/+20
| | | | | cleaned up eta-expansion of partial named applications
* added headers, svn keywords, updated pilib exam...michelou2009-06-1661-85/+257
| | | | | added headers, svn keywords, updated pilib examples
* An attempt at reintegrating MapProxy.Paul Phillips2009-06-155-61/+118
|
* allow using named / default arguments in self- ...Lukas Rytz2009-06-152-7/+14
| | | | | | allow using named / default arguments in self- and super constructor calls. fixes #2050 and #2052.
* Fixed the optimised build.Iulian Dragos2009-06-152-5/+26
|
* - fixed #2057Lukas Rytz2009-06-154-24/+21
| | | | | - Symbol.annotations now first calls .initialize
* Switched back to ThreadPoolExecutor.Philipp Haller2009-06-141-3/+1
|
* Loosened tab-completion requirements so one can...Paul Phillips2009-06-121-2/+5
| | | | | | Loosened tab-completion requirements so one can see inner objects like Range.BigInt.
* A RichClass for the java side which offers type...Paul Phillips2009-06-123-20/+94
| | | | | | | A RichClass for the java side which offers typed Constructors. Working around bug #1560 and improving on the java interface. Also a small experiment in the reflection department.
* Lots and lots of BigInt and BigDecimal code att...Paul Phillips2009-06-112-29/+87
| | | | | | | Lots and lots of BigInt and BigDecimal code attempting to make it all consistent and equality correct and consistent (to the extent that's even possible.) I'll be glad when this is over.
* Fixed a number of things in the icode reader, o...Iulian Dragos2009-06-112-15/+22
| | | | | | Fixed a number of things in the icode reader, optimizations still not fully functional.
* more annotations cleanup.Lukas Rytz2009-06-1112-193/+151
|