summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources/SI-3314.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-4887 Link existentials in scaladocVlad Ureche2012-07-161-0/+15
| | | | | | | | | | | | | Based on an inital patch by Nada Amin. Rewrote some of the code to compress it a bit. Also fixed a problem that was affecting the prefix printing for typerefs: type parameter and existentials won't get prefixes. While I can imagine cases where you'd want to see where they come from, you can always hover over them and see their origin. Also added support for pretty-printing ThisTypes, SuperTypes and SingleTypes (with links)
* SI-3314 SI-4888 Scaladoc: Relative type prefixesVlad Ureche2012-07-161-0/+70
And adds support for linking to class members, only usable from the model factory now, so no links to members from the doc comment yet, sorry. But it fixes the Enumeration problem once and for all! Also corrected the inTpl for members obtained by implicit conversions, so they're in the correct template and the comment variable expansion is done from the correct (but different) template. Review by @kzys.