summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* allowed $super variables in doc comment; some m...Martin Odersky2009-12-117-309/+406
| | | | | | allowed $super variables in doc comment; some more documentation of collection classes.
* fixes #2610 and fixes #2687.Lukas Rytz2009-12-115-24/+57
|
* Added test for #2794Hubert Plociniczak2009-12-111-0/+9
|
* Fixed #2616 and #2737.Miles Sabin2009-12-101-1/+1
|
* Don't NPE on null hashtable entries.Paul Phillips2009-12-102-2/+2
|
* Modified partialMap to take PartialFunction[A, ...Paul Phillips2009-12-105-5/+6
| | | | | | | | | Modified partialMap to take PartialFunction[A, B] instead of Any => B. There was definitely some reason I didn't do this in the first place, but either that reason no longer applies or it's not easily induced. However please consider this change slightly tentative as I feel like that other shoe may still be out there and we might have to reconsider.
* Remedying the fact that I swapped which version...Paul Phillips2009-12-101-10/+22
| | | | | | | Remedying the fact that I swapped which version of List.fromString was to be deprecated and which was to be deleted, plus some better deprecation advice.
* cleanupHubert Plociniczak2009-12-101-5/+1
|
* refined doc comments generation; refactored cod...Martin Odersky2009-12-1014-360/+539
| | | | | | | refined doc comments generation; refactored code into new Chars, DocStrings classes in util. Added some more doc comments to collection classes.
* Small rewrite of r20087.Paul Phillips2009-12-101-1/+1
|
* Closes #2649Hubert Plociniczak2009-12-101-0/+1
|
* closes #2784Lukas Rytz2009-12-102-1/+13
|
* Closes #2559Hubert Plociniczak2009-12-102-1/+6
|
* [scaladoc] Known subclasses are printed.Gilles Dubochet2009-12-094-26/+53
|
* Fully export fjbg and msil from scala to scala-...Miles Sabin2009-12-092-2/+6
| | | | | | Fully export fjbg and msil from scala to scala-plugin to avoid obscure pickler issues when building the IDE incrementally.
* Gave all the manifest singletons a readResolve ...Paul Phillips2009-12-091-9/+23
| | | | | | Gave all the manifest singletons a readResolve so they unserialize to themselves.
* typoHubert Plociniczak2009-12-091-1/+1
|
* More informative error message. no reviewHubert Plociniczak2009-12-091-1/+1
|
* Warning suppression.Paul Phillips2009-12-091-1/+1
|
* Renamed AbstractFunction to AbstractFunction0 t...Paul Phillips2009-12-091-0/+0
| | | | | Renamed AbstractFunction to AbstractFunction0 to keep ant happy.
* Removed productPrefix from case class hashCode ...Paul Phillips2009-12-091-1/+1
| | | | | | Removed productPrefix from case class hashCode consideration. (It is not used in equality and therefore should not be used in hashCode either.)
* Took manifests a little closer to the finish line.Paul Phillips2009-12-094-38/+211
| | | | | | doesn't work but the relationships between all the top, nearly top, and bottom types should all be all correct. (See lengthy test case.)
* A minor identifier change in a method which is ...Paul Phillips2009-12-091-4/+4
| | | | | | A minor identifier change in a method which is instantiated by name, to reduce proguard noise.
* [scaladoc] Display of comments is improved.Gilles Dubochet2009-12-0911-101/+310
|
* Improve error message for selection from a type...Donna Malayeri2009-12-091-1/+3
| | | | | Improve error message for selection from a type parameter. Fixes #2702.
* moved t2515 to pending (fails on ibm6). no reviewLukas Rytz2009-12-092-0/+0
|
* Closes #2772Martin Odersky2009-12-081-0/+5
|
* 2009 -> 2010Antonio Cunei2009-12-081-1/+1
|
* see #2708Hubert Plociniczak2009-12-081-0/+1
|
* make exception handlers catching faster.Lukas Rytz2009-12-081-1/+3
|
* Tweaking logic errors in broken docs build.Paul Phillips2009-12-081-2/+3
|
* small changes to doc comment modelMartin Odersky2009-12-073-19/+21
|
* Re-deleted a method which snuck back in on the ...Paul Phillips2009-12-071-15/+6
| | | | | Re-deleted a method which snuck back in on the last commit.
* new doc comment generation, including some new ...Martin Odersky2009-12-0726-450/+1085
| | | | | | new doc comment generation, including some new style doc comments in collection classes.
* plugin example update to be compiled via scala 2.8ilyas2009-12-073-3/+5
|
* Added lift method to PartialFunctionMartin Odersky2009-12-071-0/+2
|
* Updated copyright notices to 2010Antonio Cunei2009-12-07989-997/+997
|
* Making it easier to explore the AST. Example:Paul Phillips2009-12-061-8/+14
| | | | | | | scala> :power scala> val t = mkTree("def bip(x: Float) = x.toInt") t: interpreter.compiler.Tree = def bip(x: Float) = x.toInt
* Making the repl-shell bridge nicer.Paul Phillips2009-12-062-6/+47
| | | | | | | | | | scala> :sh find /Users/paulp -depth 1 -name '.scala*' stdout: List[String] = List(/Users/paulp/.scala_dependencies, /Users/paulp/.scala_history, ...) scala> stdout | "grep history" | "wc -c" res0: Seq[String] = List( 28)
* [scaladoc] Fixed crash with privately-owned pub...Gilles Dubochet2009-12-051-1/+1
| | | | | | [scaladoc] Fixed crash with privately-owned public classes (fixes nightly build).
* Don't add empty paramdcaoyuan2009-12-051-1/+1
|
* Split command line parameters by space, properl...dcaoyuan2009-12-054-10/+64
| | | | | | Split command line parameters by space, properly process quoted parameter
* #2747 fixedilyas2009-12-043-4/+5
|
* Made test jvm/t2515 more robust.Philipp Haller2009-12-041-15/+18
|
* .scala_dependencies now correctly tracks the cl...Hubert Plociniczak2009-12-044-26/+39
| | | | | | | | | | | | .scala_dependencies now correctly tracks the class files (didn't work for example for case classes and more complicated object/class combinations). Refined build manager now compares different symbols not only by name but takes into consideration some flags. This way we avoid comparing for example class with companion object (both share the name but we should compare class with class). Changes class now correctly filters private, local and lifted symbols ('newMembers -= n' didn't eliminate correctly some of the cases).
* object's name should be Test instead of MainHubert Plociniczak2009-12-041-1/+1
|
* Added new test, see #2754Hubert Plociniczak2009-12-041-0/+39
|
* oh, i mean 0 not OLukas Rytz2009-12-041-1/+1
|
* close #2708Lukas Rytz2009-12-044-41/+106
|
* Use the same thread pool configuration for Daem...Philipp Haller2009-12-033-24/+23
| | | | | Use the same thread pool configuration for DaemonScheduler.