summaryrefslogtreecommitdiff
path: root/test/files/pos/collectGenericCC.scala
Commit message (Collapse)AuthorAgeFilesLines
* Cull extraneous whitespace.Paul Phillips2013-09-181-3/+3
| | | | | | | | | | | | | | | | | | | | | One last flurry with the broom before I leave you slobs to code in your own filth. Eliminated all the trailing whitespace I could manage, with special prejudice reserved for the test cases which depended on the preservation of trailing whitespace. Was reminded I cannot figure out how to eliminate the trailing space on the "scala> " prompt in repl transcripts. At least reduced the number of such empty prompts by trimming transcript code on the way in. Routed ConsoleReporter's "printMessage" through a trailing whitespace stripping method which might help futureproof against the future of whitespace diseases. Deleted the up-to-40 lines of trailing whitespace found in various library files. It seems like only yesterday we performed whitespace surgery on the whole repo. Clearly it doesn't stick very well. I suggest it would work better to enforce a few requirements on the way in.
* Begone t1737...Hubert Plociniczak2011-11-021-3/+3
|
* Changes to Liftcode to use new reflection seman...Martin Odersky2011-09-201-4/+4
| | | | | | Changes to Liftcode to use new reflection semantics, where a compiler uses type checking.
* added CanBuild type alias in package object sca...Adriaan Moors2009-11-101-1/+1
| | | | | | added CanBuild type alias in package object scala.collection.generic added breakout to scala.collection test for breakout
* separated Vector impl from IndexedSeqTiark Rompf2009-10-301-1/+1
|
* Revert "added CanBuild type alias in package ob...Adriaan Moors2009-10-221-1/+1
| | | | | | | Revert "added CanBuild type alias in package object scala.collection.generic" because it broke scaladoc (I consider that a bug -- filing ticket) This reverts commit 5b3ba1c27cdce76d8aef2bfb9aa5a836237521a9.
* built new starr and fixed test casesTiark Rompf2009-10-211-1/+1
|
* added CanBuild type alias in package object sca...Adriaan Moors2009-10-211-1/+1
| | | | | added CanBuild type alias in package object scala.collection.generic
* fixed failing testcases due to previous commit ...Adriaan Moors2009-10-211-1/+1
| | | | | | fixed failing testcases due to previous commit (renaming of BuilderFactory)
* renamed BuilderFactory[El, To, From] -> CanBuil...Adriaan Moors2009-10-211-0/+14
renamed BuilderFactory[El, To, From] -> CanBuildFrom[From, El, To] and added apply() overload to create collections from scratch generically added def apply() overload to BuilderFactory so that we can also create collections from scratch generically (see test test/files/pos/collectGenericCC.scala) renaming: - BuilderFactory[El, To, From] -> CanBuildFrom[From, El, To] bulk type-param reordering using: s/CanBuildFrom\[\s*([^,()\s]*)\s*,(\s+[^\s,()]*)\s*,\s+([^\s,()]*)\s*\]/CanBuildFrom[$3, $1,$2]/ some argument lists got mixed up because they contained 4 comma's... - builderFactory -> canBuildFrom removed explicit implicit value in DocDriver that was renamed renamed collection/generic/BuilderFactory.scala -> collection/generic/CanBuildFrom.scala tested with clean build using ant strap.done -- everything went well on my machine