summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-fieldsymbol-navigation.scala
Commit message (Collapse)AuthorAgeFilesLines
* definitive way to learn if a symbol is a val/varEugene Burmako2012-08-271-2/+2
| | | | | I think `isVal` and `isVar` are the right names, because they exactly map on Scala syntax.
* navigation between fields and accessorsEugene Burmako2012-08-021-0/+15
This works around SI-5736 that's been deemed too risky to be fixed in 2.10.0. A reflection newbie will be unlikely to acquire a field symbol from its name, but the `accessed` method provides an easy way to navigate to it from a getter.