summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-simple.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-5732 members and derivatives now return ScopeEugene Burmako2012-08-021-12/+0
| | | | | | | | | | | | | Firstly this unifies the reflection API - now both decls and members return Scope (not Scope and List[Symbol] as it were before). Secondly this fixes SI-5732 without having to sort the result of members. Type.members now returns Scope, a distinguished type, which has the `sorted` method, which does the required sorting if necessary. Also removes nonPrivateMembers and nonPrivateDeclarations to keep the API minimalistic (as can be seen from their implementation in internal.Types they are just members and decls with bridges and private members removed).
* tests and fixes for the mirror APIEugene Burmako2012-06-081-1/+1
|
* repairs the tests after the refactoring spreeEugene Burmako2012-06-081-1/+2
|
* Fixs for reflection and getSimpleName.Paul Phillips2012-05-021-0/+11
Since getSimpleName will be crashing us indefinitely, took the expedient route and wrapped the call.