summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* some output polishingilyas2010-03-261-3/+7
|
* missing quotes for annotation values addedilyas2010-03-261-2/+2
|
* Unparsed Scala signature annotations are not ad...Gilles Dubochet2010-03-261-8/+9
| | | | | | Unparsed Scala signature annotations are not added to the symbol table. Review by dragos.
* Fix for #3204. No review.Paul Phillips2010-03-262-1/+3
|
* Tweaked help output a little further so -Y isn'...Paul Phillips2010-03-261-4/+6
| | | | | | Tweaked help output a little further so -Y isn't visible except to those who consider themselves advanced. No review.
* Some minor I/O changes. No review.Paul Phillips2010-03-267-9/+17
|
* Altered classpath behavior when no default is g...Paul Phillips2010-03-252-8/+16
| | | | | | | | | | | Altered classpath behavior when no default is given. Now in that case the contents of environment variable CLASSPATH will be used as the scala user classpath, and only if that is not present will "." be used. Be advised that there are still various "hand assembled" sorts of classpaths in trunk, and there's not yet any way to ensure they honor this; things which use the normal Settings object should do the right thing. No review.
* I think this closes #2433.Martin Odersky2010-03-255-22/+53
|
* While working on partest discovered that Compil...Paul Phillips2010-03-2517-68/+52
| | | | | | | | | | | | | | | | | | | While working on partest discovered that CompilerCommand ignores half its constructor arguments and a couple dozen places blithely pass it those arguments as if they're being used. Then there were setups like this: class OfflineCompilerCommand( arguments: List[String], settings: Settings, error: String => Unit, interactive: Boolean) extends CompilerCommand(arguments, new Settings(error), error, false) Hey offline compiler command, why throw away the perfectly good settings you were given? Ever heard 'reduce, reuse, recycle'? How did you ever work... or do you? No review.
* New scalacheck jar because recent Actor changes...Paul Phillips2010-03-251-1/+1
| | | | | | New scalacheck jar because recent Actor changes broke binary compatibility. No review.
* fixed double-loading of plugins.Tiark Rompf2010-03-255-12/+15
|
* Fixed order of fields in the generated code.Iulian Dragos2010-03-251-0/+1
|
* Renamed Replyable* source files to the types th...Philipp Haller2010-03-253-0/+0
| | | | | Renamed Replyable* source files to the types they define. No review.
* Renamed Replyable* types to *CanReply. No review.Philipp Haller2010-03-254-10/+8
|
* Removed obsolete version numbers. No review.Philipp Haller2010-03-256-8/+0
|
* Makes two actor tests deterministic. No review.Philipp Haller2010-03-253-5/+2
|
* reverting changes from r21260.Tiark Rompf2010-03-241-5/+1
|
* Apparently I can't fix a test case to save my l...Paul Phillips2010-03-241-1/+1
| | | | | Apparently I can't fix a test case to save my life. No review.
* continuations plugin will now report a nice err...Tiark Rompf2010-03-241-1/+5
| | | | | | continuations plugin will now report a nice error message if it is not enabled and encounters an @cps expression. review by rytz
* Fixed a test case I broke with the collect rename.Paul Phillips2010-03-241-3/+3
|
* Adds tests for see #2017.Philipp Haller2010-03-242-0/+54
|
* Addresses see #2017.Philipp Haller2010-03-2413-57/+125
|
* Renamed partialMap to collect.Paul Phillips2010-03-2419-47/+44
| | | | | | | | | method on Iterator called collect which I had to remove, because if the method is overloaded it puts a bullet in the type inference, an intolerable result for a function which takes a partial function as its argument. I don't think there's much chance of confusion, but I put a migration warning on collect just in case. No review.
* [scaladoc] Improved Scaladoc comment syntax, co...Gilles Dubochet2010-03-2412-241/+337
| | | | | | | | | | | [scaladoc] Improved Scaladoc comment syntax, contributed by Pedro Furlanetto. - Wiki syntax supports nested, numbered and unnumbered lists; - Wiki syntax supports links (entity links currently require fully qualified names); - Stars no longer are mandatory to start comment lines. Already reviewed by dubochet; no review.
* Fixed an issue with no-parameter-list methods n...Paul Phillips2010-03-242-19/+30
| | | | | | Fixed an issue with no-parameter-list methods not being elided. No review.
* new readme. no review.Martin Odersky2010-03-241-9/+9
|
* Scala signature is generated as an annotation, ...Gilles Dubochet2010-03-242-64/+30
| | | | | | Scala signature is generated as an annotation, second try. Review by dragos.
* Reverted a presumably unintentional reincarnati...Paul Phillips2010-03-241-16/+0
| | | | | | | Reverted a presumably unintentional reincarnation of old predef (these functions are in ScalaRunTime now.) Review by odersky just in case there was a secret plan.
* Closes #3187. No review.Martin Odersky2010-03-241-1/+1
|
* Fixes problematic equality of Enumeration values.Martin Odersky2010-03-241-2/+2
|
* Fixes problematic equality of En umeration values.Martin Odersky2010-03-241-0/+16
|
* Fixed the serialization test.Philipp Haller2010-03-242-17/+25
|
* Removed ArgumentsExpander in favor of having al...Paul Phillips2010-03-232-41/+15
| | | | | | Removed ArgumentsExpander in favor of having all arguments parsed the same way. No review.
* Fixed build.Gilles Dubochet2010-03-231-4/+29
|
* Remedied accidental obscuring of -X, -Y, and -P...Paul Phillips2010-03-231-1/+1
| | | | | | Remedied accidental obscuring of -X, -Y, and -P in the standard help output. No review.
* You know Cutty McPastington is having a good ti...Paul Phillips2010-03-233-37/+5
| | | | | | | | | | | | | | | | | You know Cutty McPastington is having a good time when you can find this logic in two different files: ('A' <= c && c <= 'Z') || ('a' <= c && c <= 'a') || How could that possibly work, you might ask. After a series of ||s, the last condition subsumes most of the previous ones: Character.isUnicodeIdentifierStart(c) thereby saving us from a world where the only legal lower case identifiers are a, aa, aaa, aaaa, and a few others. No review.
* Fix and test case for #3169.Paul Phillips2010-03-232-2/+14
|
* Added some documentation to the methods in Pred...Paul Phillips2010-03-234-6/+52
| | | | | | Added some documentation to the methods in Predef which utilize @elidable. No review.
* Although it was working fine, a test case for @...Paul Phillips2010-03-235-3/+19
| | | | | | Although it was working fine, a test case for @elidable to make sure that state of affairs continues. No review.
* Closed #3195. Review by extempore.Iulian Dragos2010-03-231-36/+23
|
* Added test case for #3186. Closes #3186.Philipp Haller2010-03-232-0/+8
|
* Fixes #3186. Closes #2214.Philipp Haller2010-03-231-6/+35
|
* Scala signature is generated as an annotation (...Gilles Dubochet2010-03-2315-57/+250
| | | | | | | | | | | | | Scala signature is generated as an annotation (that is accessible through Java reflection). - compiler generates all pickled Scala signatures as annotations to class files. - compiler can read class files with signature as annotations or old-style signatures as attributes. - Scalap has also been updated to new signatures (contributed by Ilya Sergey: thanks a lot). - FJBG updated to allow entering constant pool strings as byte arrays. - ByteCodecs decode method returns the length of the decoded array. Review by ilyas. Already mostly reviewed by odersky.
* You try to get away with one little line of unc...Paul Phillips2010-03-231-1/+1
| | | | | | | You try to get away with one little line of uncompiled patch... reverting last patch since I'm too tired to see why it broke the build. No review.
* Fix for #3204.Paul Phillips2010-03-231-2/+2
| | | | | | | that can arise when return types of public facing methods are inferred. We eventually need some mechanism to make such issues easier to avoid. No review.
* Went ahead and implemented classpaths as descri...Paul Phillips2010-03-2310-37/+19
| | | | | | | | | | | | | | | | | | | | | Went ahead and implemented classpaths as described in email to scala-internals on the theory that at this point I must know what I'm doing. ** PUBLIC SERVICE ANNOUNCEMENT ** If your code of whatever kind stopped working with this commit (most likely the error is something like "object scala not found") you can get it working again with either of: passing -usejavacp on the command line set system property "scala.usejavacp" to "true" Either of these will alert scala that you want the java application classpath to be utilized by scala as well. Review by community.
* Noticed we still have a bunch of collection cla...Paul Phillips2010-03-229-39/+36
| | | | | | | | Noticed we still have a bunch of collection classes which are rather lacking. Did some integration, added some companion objects. Not thrilled with the overall picture in there, there's still a lot which should be done. Updated a deprecation message, closes #3202. No review.
* Consistency work on Addable and Growable.Paul Phillips2010-03-2210-67/+88
| | | | | | | Seq-derived classes. Creating GrowingBuilder to complement AddingBuilder on classes with += but not +. Fixed some inconsistencies I came across in the process. No review.
* closes #3199. review by community.Tiark Rompf2010-03-225-1/+37
|
* Some support code related to partest changes.Paul Phillips2010-03-216-30/+56
|