summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Changed `!=` to `ne` for #3086. No review.Aleksandar Pokopec2010-03-161-13/+13
|
* added support for continuations in try/catch bl...Tiark Rompf2010-03-165-24/+126
| | | | | | added support for continuations in try/catch blocks. review by community.
* Tracked down docs.lib build issue from the dent...Paul Phillips2010-03-151-1/+1
| | | | | | | Tracked down docs.lib build issue from the dentist's chair while waiting for my teeth to numb. Checking in over open wireless access point. This is dedication. No review.
* fixed treatment of annotated types in isNumeric...Tiark Rompf2010-03-151-0/+1
| | | | | | fixed treatment of annotated types in isNumericSubType. re-enabled test case. review by odersky
* Fixes #3091. Review by community.Aleksandar Pokopec2010-03-151-0/+40
|
* new immutable.HashSet. review by community.Tiark Rompf2010-03-151-108/+313
|
* Fixes #3086. Review by community.Aleksandar Pokopec2010-03-151-13/+13
|
* Fixes #3132. No review necessary.Aleksandar Pokopec2010-03-154-9/+19
|
* Fixes #3155. No review is necessary.Aleksandar Pokopec2010-03-151-0/+2
|
* Fix for msil compiler.Lukas Rytz2010-03-151-1/+1
|
* Reverting a couple replacements from that last ...Paul Phillips2010-03-152-6/+6
| | | | | | Reverting a couple replacements from that last patch which don't look so safe on re-examination. No review.
* Leveraged -Xmigration to burn off some warts wh...Paul Phillips2010-03-1537-109/+112
| | | | | | | | | | | | | | | | | | | | | | | | | Leveraged -Xmigration to burn off some warts which arose in the new collections. Warnings put in place for behavioral changes, allowing the following. 1) Buffers: create new collections on ++ and -- like all the other collections. 2) Maps: eliminated never-shipped redundant method valuesIterable and supplied these return types: def keys: Iterable[A] def keysIterator: Iterator[A] def values: Iterable[B] def valuesIterator: Iterator[B] def keySet: Set[A] I concluded that keys should return Iterable because keySet also exists on Map, and is not solely in the province of Maps even if we wanted to change it: it's defined on Sorted and also appears in some Sets. So it seems sensible to have keySet return a Set and keys return the more general type. Closes #3089, #3145. Review by odersky.
* improved immutable HashMap iterator.Tiark Rompf2010-03-141-31/+101
|
* Tighten update check in cleanup.Paul Phillips2010-03-141-1/+1
|
* Closes #2918. Review by moors.Martin Odersky2010-03-132-3/+30
|
* More support code for the big partest patch I'm...Paul Phillips2010-03-138-37/+59
| | | | | | More support code for the big partest patch I'm working on to finally finish classpaths for good. No review.
* Improved version where bumping and zero-encodin...Martin Odersky2010-03-131-38/+9
| | | | | Improved version where bumping and zero-encoding are rolled into one.
* Closes #3120. Review by extempore.Martin Odersky2010-03-132-0/+16
|
* Added an object to mangle byte arrays into Java...Martin Odersky2010-03-121-0/+269
| | | | | | Added an object to mangle byte arrays into Java classfile's version of UTF8.
* Closes #3143. Review by moors.Martin Odersky2010-03-123-30/+45
|
* do not set the type of the implementation metho...Hubert Plociniczak2010-03-121-1/+1
| | | | | | | do not set the type of the implementation method to be the type of the original one as this is done properly in cloneSymbol. no review (already done by Martin)
* Added continuations to maven deployment.Josh Suereth2010-03-123-1/+121
|
* added missing file from last commit. no review.Tiark Rompf2010-03-111-0/+60
|
* Partially reverted r21018.Martin Odersky2010-03-112-29/+29
|
* moved the continuations plugin into trunk.Tiark Rompf2010-03-117-0/+1349
|
* Closes #3158. No review necessary.Martin Odersky2010-03-111-0/+2
|
* implemented handling of 32-bit collisions in im...Tiark Rompf2010-03-111-6/+60
| | | | | | implemented handling of 32-bit collisions in immutable.HashMap. review by community.
* Closes #3157 by overriding +: in List.Martin Odersky2010-03-111-1/+6
|
* Fixed doc comment. No review.Martin Odersky2010-03-111-2/+2
|
* Closes #2940.Martin Odersky2010-03-114-11/+13
|
* Some IO conveniences. No review.Paul Phillips2010-03-112-0/+8
|
* Small syntactic adjustment so that last patch f...Paul Phillips2010-03-101-1/+2
| | | | | | Small syntactic adjustment so that last patch from adriaan will build. (Big thumsb up to the aesthetics though.) No review.
* slight (syntactic) cleanup of patch for see #31...Adriaan Moors2010-03-101-6/+7
| | | | | slight (syntactic) cleanup of patch for see #3152 -- sorry, only realised when looking over my patch again
* closes #3152: refactored adjustTypeArgs and met...Adriaan Moors2010-03-102-40/+43
| | | | | | | | | | | | | | closes #3152: refactored adjustTypeArgs and methTypeArgs so that tparams are correctly split into ones that were inferred successfully, and that thus have a corresponding type argument, and those that weren't determined I didn't investigate the exact cause of the final error message in the bug report, but Jason Zaugg's observations seems correct and I never liked that uninstantiated buffer in the first place. review by odersky
* FatalError needs a stack trace.Gilles Dubochet2010-03-101-1/+1
|
* ...and a line from partest I didn't notice the ...Paul Phillips2010-03-101-3/+0
| | | | | | ...and a line from partest I didn't notice the absence of which would break the build. No review.
* Some minor compiler support bits for my upcomin...Paul Phillips2010-03-105-8/+12
| | | | | | Some minor compiler support bits for my upcoming partest patch. No review.
* Removed a couple infinite loops in XML.Paul Phillips2010-03-101-3/+3
|
* Added test.debug target to build.xml.Paul Phillips2010-03-082-5/+14
| | | | | | | | | | tests you have placed in the test/debug directories - critically for those of us stuck debugging ant, this lets one run a small selection of tests by way of ant instead of the console runner. (Sorry about the empty .gitignore files, but one of git's quirks is that it won't acknowledge the existence of an empty directory.) No review.
* Changed partest ant task not to use reflection,...Paul Phillips2010-03-082-59/+37
| | | | | | Changed partest ant task not to use reflection, instead using the path with which scala was invoked. No review.
* Closes #3102.Philipp Haller2010-03-081-8/+14
|
* Refined fix for #2946. Review by extempore.Martin Odersky2010-03-081-1/+1
|
* Reactor now has type parameter.Philipp Haller2010-03-0818-240/+308
|
* closes #2994Adriaan Moors2010-03-082-5/+6
| | | | | | | | | make normalize slightly more aggressive in loading symbol info, while ) tolerating the righteous cycle (use sym.info.typeParameters instead ) of unsafeParams this is needed to make sure higher-kinded types have ) their type parameters (otherwise we'd get a PolyType with NoSymbol for ) typeParams )
* Avoids two unchecked warnings.Martin Odersky2010-03-081-2/+2
|
* Closes #3006.Martin Odersky2010-03-084-97/+108
|
* Closes #3115. Reviw by rytzMartin Odersky2010-03-081-22/+34
|
* Closes #3026. Review by extempore.Martin Odersky2010-03-081-5/+9
|
* Recursively transform 'new' arguments in specia...Iulian Dragos2010-03-081-1/+1
| | | | | | Recursively transform 'new' arguments in specialized programs. Closes #3149, no review.
* Unbreak the IDE build following [21086].Miles Sabin2010-03-082-1/+4
|