summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-valueclasses-standard.scala
Commit message (Collapse)AuthorAgeFilesLines
* Changes reflection tests to use shorter name constructorsDen Shabalin2012-12-251-2/+2
|
* SI-6179 mirrors now work with value classesEugene Burmako2012-08-061-0/+21
mirrors now carry a class tag of the receiver, so that they can detect value classes being reflected upon and adjust accordingly (e.g. allow Int_+ for ints, but disallow it for Integers). Surprisingly enough derived value classes (SIP-15 guys that inherit from AnyVal) have been working all along, so no modification were required to fix them.