summaryrefslogtreecommitdiff
path: root/test/files/run/fors.scala
Commit message (Collapse)AuthorAgeFilesLines
* Revived tests that once depended on xmlAdriaan Moors2013-11-141-0/+84
| | | | | | | I was a bit overzealous in moving stuff over to scala-xml in 9c50dd5274 These were all compiler tests that accidentally touched on xml. I've tried to delicately decouple them so they can roam the scalac pastures as intended.
* Prepare removal of scala-xml, scala-parser-combinatorsAdriaan Moors2013-08-271-97/+0
| | | | | | | | | Every test deleted here has found its way to the respective repositories of scala-xml and scala-parser-combinators, where they will continue to be tested with partest. The modified tests became independent of these modules, as they should've been from the start.
* 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