summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-sorted-decls.check
Commit message (Collapse)AuthorAgeFilesLines
* Normalized line endings.Paul Phillips2012-09-201-3/+3
| | | | | | This brings all the files into line with the .gitattributes settings, which should henceforth be automatically maintained by git.
* fixes non-determinism in reflection-sorted-declsEugene Burmako2012-08-211-4/+0
| | | | | | | | ordering of synthetic members on java7 with a lot of cores is non-deterministic that's not a problem, because the doc doesn't promise anything about synthetics hence I've adjusted the test, so that it no longer includes accessors discussion: http://groups.google.com/group/scala-internals/msg/087a7d4805313561
* SI-5732 members and derivatives now return ScopeEugene Burmako2012-08-021-0/+7
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).