summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Separate option Ordering into a trait so it can...Paul Phillips2010-07-011-8/+10
| | | | | | Separate option Ordering into a trait so it can be reused. Closes #3539, no review.
* Some modifications to ZipFile to make sure the ...Paul Phillips2010-07-012-15/+22
| | | | | | Some modifications to ZipFile to make sure the stream is always closed after iteration. No review.
* Warded off a parser crash on certain invalid pr...Paul Phillips2010-07-011-4/+4
| | | | | | Warded off a parser crash on certain invalid programs. Closes #3209, no review.
* Enumeration fixes.Paul Phillips2010-06-301-80/+56
| | | | | | | | | | | | correctly simply by inspecting method signatures (because a Value from a different Enumeration stored in a val looks identical to one from this Enumeration) so I have Value store the outer Enum for comparison purposes. This won't make anything new uncollectable because they already have an $outer pointing there. This also simplified the reflection logic: it's an eq test rather than a series of heuristics. Closes #3616, #3615. Review by phaller.
* Parallel array `map` optimisation. No review.Aleksandar Pokopec2010-06-301-0/+37
|
* moved toScalaRepeatedParam TypeMap to refchecks.Lukas Rytz2010-06-302-10/+10
|
* companion objects of case classes know their name.Lukas Rytz2010-06-291-5/+12
|
* Implemented lazy combiners for parallel hash trie.Aleksandar Pokopec2010-06-2941-4747/+121
|
* removed warnings (deprecation,unchecked)michelou2010-06-2912-43/+59
|
* close #2413.Lukas Rytz2010-06-291-1/+11
|
* Added doc comment to Actor trait explaining the...Philipp Haller2010-06-281-2/+39
| | | | | | Added doc comment to Actor trait explaining the use of thread-blocking methods.
* fixed #3604michelou2010-06-281-0/+3
|
* Removed unfinished Jenkins hashcode for final.Paul Phillips2010-06-274-196/+5
|
* Disposed of a gordian knot by transforming stri...Paul Phillips2010-06-273-188/+72
| | | | | | Disposed of a gordian knot by transforming stringbuilder into a straight wrapper of java's. No review.
* close #3543Lukas Rytz2010-06-241-0/+4
|
* Fixed problem with `remove` in JavaConversions ...Martin Odersky2010-06-212-3/+3
| | | | | | Fixed problem with `remove` in JavaConversions which affected Java set and map wrappers and which was noted on the scala list.
* Added some null checks to == logic.Paul Phillips2010-06-211-2/+13
| | | | | | | sense that there are a few code paths where null may be checked redundantly, but I deemed further optimization too risky. Review by odersky.
* Changed inference algorithm to use weakMartin Odersky2010-06-201-1/+3
| | | | | <:< instead of <:< for all compatibility tests
* [scaladoc] A warning is printed when usecase me...Gilles Dubochet2010-06-181-1/+6
| | | | | | | [scaladoc] A warning is printed when usecase members have different names than the real member being commented. Review by odersky. Contributed by Pedro Furlanetto.
* [scaladoc] Abstract members can be filtered in ...Gilles Dubochet2010-06-186-9/+64
| | | | | | [scaladoc] Abstract members can be filtered in or out. Pointer icons are less crazy. Review by dubochet. Contributed by Pedro Furlanetto.
* [scaladoc] There is a text filter tool for memb...Gilles Dubochet2010-06-189-17/+94
| | | | | | | | | | | [scaladoc] There is a text filter tool for members (searching on member name and comment body). Adds button to reset text filter tool. No review. Known limitation: filtering of members is blocking on keystroke leading to sluggish performance on large classes. Scheduler from index needs to be used for member filtering.
* Moved parallel collections to library dir, chan...Aleksandar Pokopec2010-06-1842-15/+4772
| | | | | | Moved parallel collections to library dir, changed sabbus script. Added `par` to some of the classes. No review.
* [scaladoc] Added linear super types.Gilles Dubochet2010-06-184-10/+27
|
* Refactorings and hash trie combiners. No review.Aleksandar Pokopec2010-06-1826-127/+180
|
* The inliner now looks harder for method impleme...Paul Phillips2010-06-163-60/+67
| | | | | | | | | The inliner now looks harder for method implementations. In addition to the receiver, it will find those in directly mixed in traits and in superclasses. It still won't find those in traits mixed only into superclasses, as that didn't come quite so easily. Closes #3234 but I'll be opening up another ticket. Review by dragos.
* A wholesale reversion of the pattern matcher to...Paul Phillips2010-06-163-48/+43
| | | | | | | | A wholesale reversion of the pattern matcher to r21939, motivated by the appearance of #3578. Closes #3578, reopens #2800, #3050. Review by moors. (I can't keep saying "no review" when every move I make in here seems to break something.)
* fixed anonymous function in xhtml. no review.Lukas Rytz2010-06-161-2/+2
|
* second part of r22260Antonio Cunei2010-06-161-1/+1
|
* first part of r22260Antonio Cunei2010-06-163-9/+10
|
* removed integration of placeholder syntax and n...Lukas Rytz2010-06-161-16/+1
| | | | | | removed integration of placeholder syntax and named arguments. review by odersky
* temporarily reversing r22260; will be shortly r...Antonio Cunei2010-06-164-11/+10
| | | | | | temporarily reversing r22260; will be shortly re-committed in two separate portions.
* Fixed a bug in scripts which put the classfile ...Paul Phillips2010-06-161-1/+1
| | | | | | Fixed a bug in scripts which put the classfile directory at the wrong end of the classpath. No review.
* Fixes #3563. Review by extempore.Aleksandar Pokopec2010-06-162-3/+14
|
* Imporved printing of private[C] in TreePrinters.Martin Odersky2010-06-162-2/+2
|
* Fixied problem in my last commit to address #31...Martin Odersky2010-06-161-0/+1
| | | | | | Fixied problem in my last commit to address #3174 and #3560. Review by extempore.
* [Scaladoc] Self types are printed.Gilles Dubochet2010-06-165-2/+12
|
* Minor changes in parallel hash trie. No review.Aleksandar Pokopec2010-06-161-1/+1
|
* [scaladoc] Closes #3125: inherited use cases ha...Gilles Dubochet2010-06-161-1/+1
| | | | | | [scaladoc] Closes #3125: inherited use cases have wrong owner (and inheritance-based filter tools do not work). Review by odersky.
* Fixed hash trie splitting. No review.Aleksandar Pokopec2010-06-162-25/+32
|
* Disables NotNull checking unless -Ynotnull is g...Paul Phillips2010-06-152-2/+6
| | | | | | Disables NotNull checking unless -Ynotnull is given. Closes #3568, review by odersky.
* Adding primary version of parallel hash tries.Aleksandar Pokopec2010-06-153-37/+88
| | | | | No review.
* [scaladoc] New display mode for members: ordere...Gilles Dubochet2010-06-155-23/+143
| | | | | | [scaladoc] New display mode for members: ordered by inheritance class. Review by malayeri.
* [scaladoc] Slightly more robust treatment of "c...Gilles Dubochet2010-06-151-2/+1
| | | | | | [scaladoc] Slightly more robust treatment of "code" HTML elements in Scaladoc comments. No review.
* updated version number in build.number filemichelou2010-06-151-2/+4
|
* A love letter to the inliner.Paul Phillips2010-06-151-478/+511
| | | | | more closely approximate fixedness. Review by dragos.
* Closes #3420, typo in scaladoc for BigInt.Iulian Dragos2010-06-141-3/+3
|
* Closes #3558.Iulian Dragos2010-06-141-4/+4
|
* Made getters treated more like private members ...Paul Phillips2010-06-132-61/+103
| | | | | | Made getters treated more like private members when debating whether to inline. Closes #3420, review by dragos.
* Changed groupBy to return immutable.Map.Paul Phillips2010-06-134-10/+11
|
* Closes #3174 and #3560. Review by moors.Martin Odersky2010-06-131-46/+71
|