summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* moved plugin folder back to 'misc/scala-devel/p...Lukas Rytz2010-04-113-136/+6
| | | | | | | | moved plugin folder back to 'misc/scala-devel/plugins'. moved bash completion to scala-tool-support (see r21449). include continuations in compiler sbaz package. replaced some tabs by spaces. review by extempore.
* Fixed some position issues and build manager test.Iulian Dragos2010-04-111-5/+11
|
* Made use of random number generator in ForkJoin...Philipp Haller2010-04-111-4/+10
| | | | | | Made use of random number generator in ForkJoinScheduler's fair mode thread safe. Review by plocinic.
* Scaladoc clean-ups for various actor and channe...Philipp Haller2010-04-119-162/+30
| | | | | | Scaladoc clean-ups for various actor and channel types. Actor now extends InputChannel. Channel now extends CanReply. Review by plocinic.
* [scaladoc] Fixes efficiency issue in the way pa...Gilles Dubochet2010-04-111-5/+6
| | | | | | | | [scaladoc] Fixes efficiency issue in the way pages are generated. This issue can lead to the same page being generated a very large number of times and probably explains why building Scaladoc had been so slow previously. Donna helped identifying the issue, review by malayeri.
* Completed scaladoc for Reactor and Combinators.Philipp Haller2010-04-114-34/+35
|
* [scaladoc] UI tweak: definition classes list is...Gilles Dubochet2010-04-111-1/+1
| | | | | | [scaladoc] UI tweak: definition classes list is separated by a different arrow. No review.
* [scaladoc] Refactors Paul's refactorings from r...Gilles Dubochet2010-04-112-39/+42
| | | | | | [scaladoc] Refactors Paul's refactorings from r21353 to fit Scaladoc's design. No review.
* ScalaSigPrinter fixed for multiline string valu...ilyas2010-04-111-0/+5
| | | | | ScalaSigPrinter fixed for multiline string values in annotations
* Some overdue cleanups on Exception.Paul Phillips2010-04-112-66/+80
|
* Temporarily reverted r21421 so the build will b...Paul Phillips2010-04-111-3/+7
| | | | | | Temporarily reverted r21421 so the build will build again and hopefully the auxjvm nightly will run. Review by odersky.
* Introduces scala.tools.cmd providing command li...Paul Phillips2010-04-1127-489/+906
| | | | | | | | | | | | | | | | | | Introduces scala.tools.cmd providing command line tool infrastructure. For a quick look at what can be done, see scala.tools.cmd.Demo For a more involved, potentially eye-straining look, see scala.tools.partest.PartestSpec To experience it through the eyes of Joe Partest User, run test/partest Review by community.
* Docs. No review.Aleksandar Pokopec2010-04-1010-45/+153
|
* Fix windows build.Hubert Plociniczak2010-04-101-1/+2
|
* More docs. No review.Aleksandar Pokopec2010-04-1025-74/+207
|
* docs. no reviewAleksandar Pokopec2010-04-1012-70/+166
|
* Docs. No review.Aleksandar Pokopec2010-04-094-33/+85
|
* Docs for MultiMap done. Review by community.pAleksandar Pokopec2010-04-091-3/+18
|
* Some tweaks to process to see if it'll fix auxjvm.Paul Phillips2010-04-092-8/+15
|
* MultiMap and WeakHashMap docs. no reviewAleksandar Pokopec2010-04-092-2/+24
|
* fixed one more issue that prevented variables i...Martin Odersky2010-04-091-3/+12
| | | | | | fixed one more issue that prevented variables in companion objects to be expanded.
* more docsMartin Odersky2010-04-0911-29/+25
|
* Updated documentationMartin Odersky2010-04-0923-122/+107
|
* Work on mutable collections docs.Aleksandar Pokopec2010-04-0918-71/+96
|
* [scaladoc] FIxed issue with wiki parser that pr...Gilles Dubochet2010-04-091-20/+35
| | | | | | [scaladoc] FIxed issue with wiki parser that prevented parsing of code blocks. Review by pedrofurla.
* Turn on specialization by default. No review.Iulian Dragos2010-04-092-2/+3
|
* @inlined auxiliary typed methods to reduce stac...Martin Odersky2010-04-091-7/+3
| | | | | @inlined auxiliary typed methods to reduce stack pressure.
* Interrupted attempt to fix #2897.Martin Odersky2010-04-094-10/+63
|
* Fixed problem in scaladoc which did not expand ...Martin Odersky2010-04-091-3/+5
| | | | | | Fixed problem in scaladoc which did not expand variables in top-level classes.
* Brought back stack traces in TypeError. This isIulian Dragos2010-04-091-1/+1
| | | | | essential when debugging any transformer. Review by extempore.
* Added a cast for alias replacement that causedIulian Dragos2010-04-091-5/+6
| | | | | | | code to be untypable. The optimization that replaced an overriding param field with its super field now downcasts when they don't have the same type.
* Less logging unless '-Ydebug', refactorings.Iulian Dragos2010-04-093-38/+46
|
* Changed TreeSymSubstituter from a traverser toIulian Dragos2010-04-094-18/+32
| | | | | | | | transformer. It now aligns tree nodes that contain names to the symbol name that was substituted. Before this change identifiers may refer to one symbol, while the name they carry would resovlve to another one.
* Changed default of 'keepsTypeParams' to true. AllIulian Dragos2010-04-095-3/+9
| | | | | | phases that may change type parameters have to explicitly override this method.
* Fixed retyping of singleton types, replacing in...Iulian Dragos2010-04-092-1/+9
| | | | | | Fixed retyping of singleton types, replacing invalid symbols by their updated symbols, as was done for type refs.
* Changed the syntax of the specialized annotation:Iulian Dragos2010-04-0910-56/+39
| | | | | | | | | instead of a flaky string, it now takes a repeated parameter list of primitive types: @specialized("Int, Double") becomes @specialized(Int, Double). No review.
* Companion objects of primitive types are now va...Iulian Dragos2010-04-095-7/+115
| | | | | | | | | Companion objects of primitive types are now values. Term 'scala.Int' resolves in bytecode to an instance of 'scala.runtime.Int'. This is the first step towards replacing strings in @specialized with a proper list of types, so instead of @specialized("Int, Float") one will write @specialized(Int, Float). Review by odersky.
* Fixed a cyclic error when specializing Option.Iulian Dragos2010-04-091-32/+45
| | | | | | Improved the term transformer to transitively rewrite specialized calls.
* Made 'specialized' a printable flag. No review.Iulian Dragos2010-04-091-1/+2
|
* Special-cased 'isHigherKinded' for ThisTypes, i...Iulian Dragos2010-04-091-0/+1
| | | | | | Special-cased 'isHigherKinded' for ThisTypes, in order to get around a CircularReference error. Reviewed by martin
* More information on type skolems when browsing ...Iulian Dragos2010-04-092-3/+9
| | | | | | More information on type skolems when browsing trees and logged normalized member.
* Implemented specialized subclassing for traitsIulian Dragos2010-04-091-28/+78
|
* Changes to docs of collections in the `immutabl...Aleksandar Pokopec2010-04-0920-98/+157
| | | | | | Changes to docs of collections in the `immutable` package. Review by odersky.
* close #3207. review by oderskyLukas Rytz2010-04-091-3/+7
|
* Stack overflow corner case I noticed in the repl.Paul Phillips2010-04-091-0/+1
|
* Fix and test for Iterator corner case.Paul Phillips2010-04-081-2/+5
|
* More cleanups in docs. Review by odersky.Aleksandar Pokopec2010-04-084-20/+20
|
* Another set of typos fixed.Aleksandar Pokopec2010-04-087-11/+14
|
* [scaladoc] Fixed filter method in template page...Gilles Dubochet2010-04-082-107/+108
| | | | | | [scaladoc] Fixed filter method in template page (inherited filtering works again). No review. Fixed whitespace in sources.
* Mostly some undocumented stuff in JavaConversions.Aleksandar Pokopec2010-04-083-4/+25
|