summaryrefslogtreecommitdiff
path: root/test/scaladoc/run/SI-5235.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-5235 Correct usecase variable expansionVlad Ureche2012-07-161-0/+4
The bug is related to a couple of other annoyances, also fixed: - usecases without type params were crashing scaladoc due to a change in the PolyTypes class (not allowing empty tparams list) - properly getting rid of backticks (even if the link is not valid) - correct linking for usecases with $Coll = `immutable.Seq` (the symbol searching algorithm was too of restrictive, now we search the entire ownerchain - and the empty package at the end) - give a warning if the type lookup fails - finally, added a $Coll variable to List, for some reason it wasn't there and we were getting immutable.Seq as the result of use cases.