summaryrefslogtreecommitdiff
path: root/test/files/run/fors.scala
Commit message (Collapse)AuthorAgeFilesLines
* Reversed the values of "is" and "is not" in rec...Paul Phillips2011-08-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Reversed the values of "is" and "is not" in recent for comprehension deprecation. DO NOT BLOW HATCH REPEAT DO NOT BLOW HATCH "Roger! Hatch blown." Events reveal it was all baby, no bathwater. It turns out that the specification is merely a document, not infallible holy writ as we had all previously believed. So it is not the ABSENCE of val in a for comprehension assignment which is deprecated, it is the PRESENCE of val. Summarizing again, more accurately perhaps: for (x <- 1 to 5 ; y = x) yield x+y // THAT's the one for (val x <- 1 to 5 ; y = x) yield x+y // fail for (val x <- 1 to 5 ; val y = x) yield x+y // fail for (x <- 1 to 5 ; val y = x) yield x+y // deprecated No review.
* Renamed Application to App.Martin Odersky2011-02-211-1/+1
|
* Misc uninteresting tidbits to take some weight ...Paul Phillips2011-01-021-21/+21
| | | | | | Misc uninteresting tidbits to take some weight off overly large patches in progress. No review.
* [no content change] Fixed all SVN properties: m...Gilles Dubochet2009-09-241-1/+0
| | | | | | | | [no content change] Fixed all SVN properties: mimes, EOL, executable. Id expansion is consistently enabled for Scala/Java/C# sources in 'src/' and consistently disabled and removed from everywhere else: there should not be any dead Id tags anymore.
* fixed tests run/bridges.scala and jvm/inner.sca...michelou2007-04-301-0/+15
| | | | | fixed tests run/bridges.scala and jvm/inner.scala on IBM J9
* updated self aliases, for-comprehensions michelou2007-04-231-0/+83