summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* 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-244-27/+232
| | | | | | | | | | | | | 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
|
* 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.
* Restoring my higher-kinded-Array signature chec...Paul Phillips2011-03-241-1/+3
| | | | | | 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-231-6/+36
| | | | | | 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
|
* 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-231-1/+1
| | | | | | | | | | | | | | 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-221-1/+4
| | | | | No review.
* Implementing foreach to work in parallel in Par...Aleksandar Pokopec2011-03-2229-47/+61
| | | | | | | | | | | | 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-221-1/+1
|
* closes #4205: quick&dirty fix to force loading ...Adriaan Moors2011-03-221-0/+1
| | | | | | 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-223-3/+47
|
* Not yet learned my lesson about partest and emp...Paul Phillips2011-03-222-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.
* [I'm laptop only so there's some chance this wi...Paul Phillips2011-03-2115-144/+170
| | | | | | | | | | | | | | | | | | | | | | | | [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.
* Closes #4202 again, closes #4363.Hubert Plociniczak2011-03-212-3/+2
|
* [scaladoc] Add HtmlFactoryTest and reorganize d...Kato Kazuyoshi2011-03-212-6/+10
| | | | | | [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
|
* minor fix for -Xmax-classfile-name. no reviewLukas Rytz2011-03-201-1/+1
|
* Commented #3928 patch.Martin Odersky2011-03-201-0/+4
|
* Restored erasure warning for isInstanceOf tests.Paul Phillips2011-03-201-1/+1
| | | | | no review.
* Fix for a big bug in lastIndexOfSlice and some ...Paul Phillips2011-03-191-104/+112
| | | | | | | Fix for a big bug in lastIndexOfSlice and some latent negative index bugs in both that and indexOfSlice. This stuff is taxing. Closes #4348, no review.
* Oh yeah, now I remember why I started with leng...Paul Phillips2011-03-191-0/+1
| | | | | | Oh yeah, now I remember why I started with length overrides. Fix for soon to be failing test, no review.
* Fix for a slice related array view regression.Paul Phillips2011-03-191-2/+0
|
* I'm going to assume the patch I dropped off fiv...Paul Phillips2011-03-191-1/+1
| | | | | | | I'm going to assume the patch I dropped off five months ago for #3938 was merely overlooked. Fixes an issue with java types which extend inner classes. Closes #3938, review by odersky.
* Prevent a divergent implicit from terminating i...Paul Phillips2011-03-192-8/+45
| | | | | | | Prevent a divergent implicit from terminating implicit search, so that there can still be a winner, as endorsed by martin over a cheese plate. Closes #3883, review by dmharrah.
* Fix for crasher with Class objects.Paul Phillips2011-03-191-1/+2
| | | | | extempore. References #4305, no review.
* Removed long deprecated and obscure CloneableCo...Paul Phillips2011-03-194-57/+21
| | | | | | | | | | | | | Removed long deprecated and obscure CloneableCollection. Discovered we have a scala.collection.mutable.Cloneable which does not extend java.lang.Cloneable, which is why Array is not considered cloneable. That seems wrong, but to be conservative I gave Array the Cloneable interface without altering the scala trait. Also, if @serializable is deprecated in favor of Serializable, should not @cloneable be deprecated analogously? Closes #4307, and a commit-question review by rytz.
* Added a :type command to the repl, no review.Paul Phillips2011-03-192-2/+10
|
* Some boundary conditions in range.Paul Phillips2011-03-194-22/+57
| | | | | | | infix implicits to Integral and Fractional. As a bonus this patch knocked 10,000 long boxings off a specialized test. Who knew. Closes #4308, #4321, review by community.
* A couple more minor tweaks to power mode, and m...Paul Phillips2011-03-193-21/+79
| | | | | | | A couple more minor tweaks to power mode, and more importantly, fix for a jline NPE provoked if your classloaders loaded classes in a way other than it expected. No review.
* [scaladoc] Closes #4357. Review by dubochet.Kato Kazuyoshi2011-03-191-1/+1
|
* [scaladoc] Closes #4361.Kato Kazuyoshi2011-03-191-2/+5
|
* rytz's patch for making our crazy long names a ...Paul Phillips2011-03-193-28/+19
| | | | | | | | rytz's patch for making our crazy long names a bit less crazy. You can now use -Xmax-classfile-name to limit your filenames to as few as 72 characters. Watch out, nanotube gardens, we'll be stepping on your tiny flowers before you know it. No review.
* A minor overhaul of power mode.Paul Phillips2011-03-181-63/+136
| | | | | minute now. No review.
* Removing toPar* methods, since we've agreed the...Aleksandar Pokopec2011-03-1839-177/+170
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removing toPar* methods, since we've agreed they're difficult to: - underestand - maintain Also, changed the docs and some tests appropriately. Description: 1) Every collection is now parallelizable - switch to the parallel version of the collection is done via `par`. - Traversable collections and iterators have `par` return a parallel - collection of type `ParIterable[A]` with the implementation being the - representative of `ParIterable`s (currently, `ParArray`). Iterable - collections do the same thing. Sequences refine `par`'s returns type - to `ParSeq[A]`. Maps and sets do a similar thing. The above means that the contract for `par` changed - it is no longer guaranteed to be O(1), nor reflect the same underlying data, as was the case for mutable collections before. Method `par` is now at worst linear. Furthermore, specific collection implementations override `par` to a more efficient alternative - instead of copying the dataset, the dataset is shared between the old and the new version. Implementation complexity may be sublinear or constant in these cases, and the underlying data structure may be shared. Currently, these data structures include parallel arrays, maps and sets, vectors, hash trie maps and sets, and ranges. Finally, parallel collections implement `par` trivially. 2) Methods `toMap`, `toSet`, `toSeq` and `toIterable` have been refined for parallel collections to switch between collection types, however, they never switch an implementation from parallel to sequential. They may or may not copy the elements, as is the case with sequential variants of these methods. 3) The preferred way to switch between different collection types, whether maps, sets and seqs, or parallel and sequential, is now via use of methods `toIterable`, `toSeq`, `toSet` and `toMap` in combination with `par` and `seq`. Review by odersky.