summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* [scaladoc] Stop wiki syntax parsing inside HTML.Kato Kazuyoshi2011-03-254-11/+106
|
* Fixed the "poor resilience to error conditions"...Paul Phillips2011-03-251-1/+2
| | | | | | Fixed the "poor resilience to error conditions" crasher mentioned in #3625, no review.
* Figured out why -Ydebug has been such a deathtr...Paul Phillips2011-03-252-1/+2
| | | | | | Figured out why -Ydebug has been such a deathtrap for a while. I'm the culprit. Making -Ydebug less likely to kill a compile, no review.
* Set the original tree for TypeTree in self-type...Iulian Dragos2011-03-252-2/+10
| | | | | | Set the original tree for TypeTree in self-types, and making sure there are no cycles in TypeTree.original. review by odersky.
* I guess windows can show a < 500x difference an...Paul Phillips2011-03-251-2/+2
| | | | | | | | | I guess windows can show a < 500x difference and still give us confidence there isn't a 100,000x difference. Testing situation continues to confound and amaze. Trying to make 4279 not fail on windows, one more time and I will delete it and burn the bodies. No review.
* for Scala.NET bootstrapping.Miguel Garcia2011-03-251-8/+22
| | | | | forJVM behavior remains unchanged.
* Fixed error in previous commitMartin Odersky2011-03-251-0/+2
|
* All compiler control methods now do something s...Martin Odersky2011-03-253-39/+32
| | | | | | All compiler control methods now do something sensible when called from presentation compiler thread itself.
* [scaladoc] Changes to template.css based on sug...Donna Malayeri2011-03-241-5/+11
| | | | | | [scaladoc] Changes to template.css based on suggestions by Bill Venners. No review.
* Added synchronous version of askStructure, need...Iulian Dragos2011-03-241-0/+8
| | | | | | Added synchronous version of askStructure, needed by the IDE to avoid deadlocks. review by odersky.
* Moved Dynamic support to -Xexperimental.Martin Odersky2011-03-241-1/+1
|
* Three things to make Eclipse more robust agains...Martin Odersky2011-03-243-20/+41
| | | | | | | Three things to make Eclipse more robust against deadlocks: (1) catch stale responses in presentation compile thread. (2) Avoid stale responses by two try-finallys in getEnteredParsed, askLoadedTyped.
* Added a temporary fix for #4351, but disabled i...Aleksandar Pokopec2011-03-248-84/+253
| | | | | | | | | | | | | Added a temporary fix for #4351, but disabled it because the extend specialized class with nonspecialized type-parameters is used in the stdlib already. Disabling scala.parallel package, adding the currently disabled scala.concurrent package which will be implemented in some of the next releases. Review by phaller.
* Added implicit TaskRunner parameters to scala.c...Philipp Haller2011-03-241-2/+2
| | | | | Added implicit TaskRunner parameters to scala.concurrent.ops.{par, replicate}. Review by prokopec.
* Deprecated unused members in scala.concurrent.Philipp Haller2011-03-245-14/+26
|
* Moved failing tests to pending after having dia...Martin Odersky2011-03-246-0/+0
| | | | | | | | Moved failing tests to pending after having diagnosed that the only problem is a difference in output between Java 1.5 and 1.6 reflection libraries. Can we moved back once that's fixed. For now, it's more important to ghet the build back.
* Changed App-using tests to use main() to see if...Paul Phillips2011-03-243-19/+25
| | | | | | Changed App-using tests to use main() to see if that's our trouble. No review.
* Discovered Range.foreach inlining was broken du...Paul Phillips2011-03-243-33/+20
| | | | | | Discovered Range.foreach inlining was broken due to a Nothing signature appearing and confusing the loader. No review.
* Looks like I accidentally committed a test log,...Paul Phillips2011-03-241-2/+0
| | | | | Looks like I accidentally committed a test log, no review.
* Restoring my higher-kinded-Array signature chec...Paul Phillips2011-03-243-1/+9
| | | | | | Restoring my higher-kinded-Array signature check which martin callously blew away while fixing all our other problems. Review by odersky.
* Spiced up the signature test infrastructure a b...Paul Phillips2011-03-2311-60/+184
| | | | | | Spiced up the signature test infrastructure a bunch, wrote some more tests, restored the tests in pending. No review.
* Fixes #4298. Review by extempore.Martin Odersky2011-03-231-6/+6
|
* Moving signature tests to pending, because they...Martin Odersky2011-03-234-0/+0
| | | | | | Moving signature tests to pending, because they operate under wrong assumptions now that mixed in members are bridges. Review by extempore.
* Simple test case to see whether Java understand...Martin Odersky2011-03-231-0/+16
| | | | | | Simple test case to see whether Java understands mixed in signatures. This should be extended with more cases. Review by extempore.
* Squashing the signature bugs.Martin Odersky2011-03-233-76/+74
| | | | | Review by extempore.
* sn.OClone caused checkinit failure when assigne...Miguel Garcia2011-03-231-23/+5
| | | | | | sn.OClone caused checkinit failure when assigned to CompilerTermNames.clone_ . review by rytz.
* My early attempts to implement non-integral ran...Paul Phillips2011-03-232-1/+8
| | | | | | | | | | | | | | My early attempts to implement non-integral ranges in a way which was useful without having lots of floating point traps were less than successful. One of the bigger backfires is that the requirement not to round (trying, and failing anyway, to avoid surprises with methods like "contains") inflicts runtime errors. The simple way to improve this, which seems a good idea anyway, is to make the default math context something less inclined to exceptions. Default BigDecimal mc is now DECIMAL128. References #1812, #4201 and puts #4201 back to normal priority. Review by community.
* Better signature avoidance. Review by extempore.Martin Odersky2011-03-222-6/+9
|
* Adding some tests for #3651.Aleksandar Pokopec2011-03-228-58112/+32
| | | | | No review.
* Implementing foreach to work in parallel in Par...Aleksandar Pokopec2011-03-2237-67/+58176
| | | | | | | | | | | | Implementing foreach to work in parallel in ParIterableLike. Doing a bunch of refactoring around in the collection framework to ensure a parallel foreach is never called with a side-effecting method. This still leaves other parts of the standard library and the compiler unguarded. No review.
* Adding the `seq` method to all collections.Aleksandar Pokopec2011-03-2213-19/+46
|
* Added test that signatures conform to their era...Martin Odersky2011-03-222-14/+76
| | | | | | Added test that signatures conform to their erasures. Work in progress. Review by extempore.
* Added headers with copyright messages.Martin Odersky2011-03-2215-3/+61
|
* closes #4345.Adriaan Moors2011-03-222-1/+8
|
* closes #4205: quick&dirty fix to force loading ...Adriaan Moors2011-03-223-0/+8
| | | | | | closes #4205: quick&dirty fix to force loading of info's and thus avoid order-dependency until we fix unsafeTypeParams for good. no review
* [scaladoc] Closes #4366. Review by pedrofurla.Kato Kazuyoshi2011-03-226-3/+111
|
* Not yet learned my lesson about partest and emp...Paul Phillips2011-03-227-25/+31
| | | | | | | | | | Not yet learned my lesson about partest and empty directories. Rather than reapply that bandaid, went after partest. Attempts to make partest ignore empty directories. Discover directory tests aren't run when the command line tool is used, make them run like everyone else. Find more tests which due to misplacement are silently ignored, move them into tested locations. No review.
* Oh the irony, disabling the failing test made t...Paul Phillips2011-03-222-0/+0
| | | | | | | Oh the irony, disabling the failing test made the build fail, because another test is hardcoded to use its paths. Disabled that test too. We'll put humpty back together again. No review.
* We need a successful build, not sure why this h...Paul Phillips2011-03-213-58111/+0
| | | | | | We need a successful build, not sure why this hasn't been disabled yet. Disabled failing coder test, no review.
* [I'm laptop only so there's some chance this wi...Paul Phillips2011-03-2121-148/+180
| | | | | | | | | | | | | | | | | | | | | | | | [I'm laptop only so there's some chance this will incur temporary breakage, but it needs committing.] Heading off gratuitous complications which haven't yet shipped, I eliminated the -jar startup option in favor of doing what we already do, figuring it out. So now all these things work. scala foo/bar.scala // if file is a script or has one main method scala foo.Bar // if it has a legal main method scala foo.jar // if it has a legal MainClass attribute Also changed "-savecompiled" to "-save" and given scala source called foo.scala, generate foo.jar rather than foo.scala.jar. Cleaned up a bunch of related code and further polished the scala startup message. And unbroke choice settings and improved that error too, which closes #3849. While trying to write a test for the choice setting, was reminded that partest just discards invalid flags files. Made it fail instead, which closes #3712. Fixed the new failures that revealed. No review.
* removed gplAntonio Cunei2011-03-211-278/+0
| | | | | | Some javascript utils are dual licensed under gpl and mit. We already include the mit ones.
* license files.Antonio Cunei2011-03-211-0/+0
|
* license filesAntonio Cunei2011-03-213-0/+324
|
* One hundred! One hundred times slower on window...Paul Phillips2011-03-211-1/+1
| | | | | | One hundred! One hundred times slower on windows! Ah, ha, ha! Adjusted test case, no review.
* [scaladoc] Add a test for #4306.Kato Kazuyoshi2011-03-212-10/+19
|
* Closes #4202 again, closes #4363.Hubert Plociniczak2011-03-214-4/+22
|
* [scaladoc] Add a test for #4361.Kato Kazuyoshi2011-03-211-0/+22
|
* [scaladoc] Add HtmlFactoryTest and reorganize d...Kato Kazuyoshi2011-03-217-8/+120
| | | | | | [scaladoc] Add HtmlFactoryTest and reorganize directory structure. Reviewed by pedrofurla.
* The last checkin caused a test to time-out, but...Miguel Garcia2011-03-201-141/+71
| | | | | | | | | The last checkin caused a test to time-out, but that test runs fine locally. I'm giving Jenkins another chance. Like the previous changeset, this one has to do with .NET bootstrapping. review by rytz.
* for .NET bootstrapping (more coming).Miguel Garcia2011-03-203-50/+31
|