summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* An overhaul of checkSensible.Paul Phillips2010-08-104-102/+208
| | | | | | | | gives fewer insensible warnings about actually sensible things, etc. Large test case with 30 warnings elicited. Closes #282 (again), no review.
* update doc of option. close #3737.Lukas Rytz2010-08-091-43/+118
|
* close #7226.Lukas Rytz2010-08-093-2/+10
|
* close #3709. no review.Lukas Rytz2010-08-091-1/+1
|
* closes #3582: typedTypeDef needs to run in a ne...Adriaan Moors2010-08-096-6/+33
| | | | | | | | | | | | | | | | | closes #3582: typedTypeDef needs to run in a new typer for TypeDefs with type parameters this was honored when typedTypeDef was called by typed1, but other callers did not this would cause higher-order type parameters to be re-entered in the scope of a method or a class (by the way, should we recycle scopes for higher-order type params? now new scopes are created, symbols entered, and tree's symbols updated) changed some spurious vars to vals review by odersky
* Modified r22702 to avoid tarring overloads with...Paul Phillips2010-08-072-6/+25
| | | | | | Modified r22702 to avoid tarring overloads with the same brush. No review.
* Disallowed super.XX calls to Any methods which ...Paul Phillips2010-08-074-12/+46
| | | | | | | | | | Disallowed super.XX calls to Any methods which are presently either crashing the compiler (isInstanceOf) or leading to runtime failure (== and !=) in addition to one which was being rewritten to a this call but makes more sense disallowed like the others (##). Closes #3736, review by odersky.
* fixed t3738michelou2010-08-071-1/+1
|
* pending test for #3663Lukas Rytz2010-08-062-0/+28
|
* close #2799.Lukas Rytz2010-08-063-0/+10
|
* close #3403.Lukas Rytz2010-08-063-1/+13
|
* updated intellij project SAMPLE files to new fa...Lukas Rytz2010-08-069-96/+43
| | | | | | | updated intellij project SAMPLE files to new facet configuration. uses 'palo' right now because a .jar (scala-compiler.jar) is required, a directory does not work. no review.
* fixes names/defaults when using :_* for specify...Lukas Rytz2010-08-054-14/+52
| | | | | | fixes names/defaults when using :_* for specifying repeated parameters. close #3697, no review.
* close #3667.Lukas Rytz2010-08-057-12/+66
| | | | | | | | | | | | | | | | | | | | | | | | | scala> def ser(o: AnyRef) = new java.io.ObjectOutputStream(new java.io.ByteArrayOutputStream()).writeObject(o) ser: (o: AnyRef)Unit scala> @serializable class Outer { | case class Inner(x: Int) | } defined class Outer scala> val o = new Outer o: Outer = Outer@34469729 scala> ser(new o.Inner(1)) scala> o.Inner // initialize the Inner$module field of o res1: o.Inner.type = Inner scala> ser(new o.Inner(1)) java.io.NotSerializableException: Outer$Inner$ review by extempore.
* Widened a try block to unregress the error mess...Paul Phillips2010-08-051-4/+6
| | | | | | Widened a try block to unregress the error message for file not found. Closes #3729, no review.
* fix the failing test. review by dubochet.Lukas Rytz2010-08-051-1/+1
|
* close #3685. review by moors.Lukas Rytz2010-08-053-7/+95
|
* Keyword of method symbol signature is correctly...Gilles Dubochet2010-08-041-1/+1
| | | | | | Keyword of method symbol signature is correctly printed as 'def' instead of 'val'. No review.
* [Scaladoc]chrisJames2010-08-047-7/+187
| | | | | | Prints default Values, considers anyRef as a class. closes #3105. Review by prokopec.
* added @deprecatedName annotation, allowing to d...Lukas Rytz2010-08-0312-7/+122
| | | | | | added @deprecatedName annotation, allowing to deprecate parameter names. review by prokopec.
* Generalized the scala sig "look in both attribu...Paul Phillips2010-08-032-36/+37
| | | | | | | Generalized the scala sig "look in both attribute and annotation" code so it can be reused outside of scalap main. Closes #3717, review by ilyas.
* Reverted my brainless introduction of ## to a j...Paul Phillips2010-08-031-1/+1
| | | | | | Reverted my brainless introduction of ## to a java file. Closes #3716, no review.
* Parse ordering issue prevented passing properti...Paul Phillips2010-08-033-2/+5
| | | | | | | Parse ordering issue prevented passing properties containing a :. There is a test case included, but note that partest passes it with or without the patch: see ticket #3712. Closes #3495, no review.
* Fixed some typoes/errors in doc comments.Martin Odersky2010-08-022-2/+2
|
* Revamped ScalaConversions.Martin Odersky2010-08-022-40/+581
|
* Fixes an issue in RefChecks when the compiler d...Gilles Dubochet2010-07-301-2/+4
| | | | | | | Fixes an issue in RefChecks when the compiler does not have an erasure phase (such as in Scaladoc), which became visible after r22644. Review by odersky.
* Alterations so the sbt build will run under git...Paul Phillips2010-07-294-29/+31
| | | | | Alterations so the sbt build will run under git-svn. Review by moix.
* Modified toString on JSONObject and JSONArray t...Derek Chen-Beker2010-07-291-2/+2
| | | | | | | | | Modified toString on JSONObject and JSONArray to print JSON Closes #3605 Relatively minor change to get it working.
* Fixes priority queues and makes them iterables ...Aleksandar Pokopec2010-07-297-418/+455
| | | | | Fixes priority queues and makes them iterables now.
* First version of SBT build for Scala compiler/l...moix2010-07-2916-3/+1298
| | | | | First version of SBT build for Scala compiler/library (see README)
* Fixes #3679. Review by milessabin.Martin Odersky2010-07-281-1/+1
|
* [scaladoc] Small fixes for 2.8.0 updated docume...Gilles Dubochet2010-07-281-12/+4
| | | | | | | [scaladoc] Small fixes for 2.8.0 updated documentation: window title contains version number, authors are not displayed (like in Javadoc), source links have correct title. No review.
* Fix for last commit.Aleksandar Pokopec2010-07-284-16/+5
|
* Added merge function to HashTrie.merge. No review.Aleksandar Pokopec2010-07-282-34/+69
|
* Fixes a priority queue issue. No review.Aleksandar Pokopec2010-07-281-3/+11
|
* [docs] Documentation updates contributed throug...Gilles Dubochet2010-07-284-14/+24
| | | | | [docs] Documentation updates contributed through Colladoc. No review.
* [scaladoc] Setting for link to source URLs is m...Gilles Dubochet2010-07-273-4/+15
| | | | | | [scaladoc] Setting for link to source URLs is much more flexible and should allow satisfying Toni's exacting demands. Review by cunei.
* Minor tweaks. No review.Aleksandar Pokopec2010-07-273-3/+13
|
* Refactored benchmarks.Aleksandar Pokopec2010-07-2622-60/+260
|
* fixed case 2 (Android) in ticket #2464 (case 1 ...michelou2010-07-261-3/+38
| | | | | fixed case 2 (Android) in ticket #2464 (case 1 is ok with 2.8.0.final)
* generates CREATOR code for Android.michelou2010-07-231-163/+218
|
* More files affected by renamings. no reviewAleksandar Pokopec2010-07-231-1/+1
|
* Several renamings not included. no reviewAleksandar Pokopec2010-07-233-9/+9
|
* Parallel collection library renamings. No reviewAleksandar Pokopec2010-07-2331-606/+645
|
* updated intellij project file samplesLukas Rytz2010-07-229-1166/+459
|
* Allow for overriding the debugIDE val (requeste...Hubert Plociniczak2010-07-221-1/+1
| | | | | Allow for overriding the debugIDE val (requested for ENSIME). No review.
* Revert 22605 change to JavaParsers.scala, which...Donna Malayeri2010-07-221-15/+4
| | | | | | | Revert 22605 change to JavaParsers.scala, which modified parsing behavior and broke jvm test t3415. No longer create DocDef nodes for Javadoc comments in Java source files. No review.
* [scaladoc] Fix performance problem when generat...Donna Malayeri2010-07-221-1/+1
| | | | | [scaladoc] Fix performance problem when generating Scaladoc.
* [docs] The first comment contributed using Petr...Gilles Dubochet2010-07-211-0/+5
| | | | | [docs] The first comment contributed using Petr Hošek's Colladoc.
* Fix for stability failure introduced in build.x...Paul Phillips2010-07-201-0/+1
| | | | | | Fix for stability failure introduced in build.xml change. Review by malayeri (as an FYI.)