summaryrefslogtreecommitdiff
path: root/test/files/run/t5256d.check
Commit message (Collapse)AuthorAgeFilesLines
* Better errors for Any/AnyRef issues.Paul Phillips2012-09-011-32/+32
| | | | | | | | | | | | | | | When an error occurs because some type does not conform to AnyRef (and an AnyRef-derived type would have sufficed) try to say something useful about the situation. This commit also initializes scope members before printing error messages because the + version seems more useful than the - version (taken from one of the checkfile diffs.) - def <init>: <?> - def methodIntIntInt: <?> + def <init>(): X + def methodIntIntInt(x: scala.Int,y: scala.Int): scala.Int
* tests and fixes for the mirror APIEugene Burmako2012-06-081-1/+1
|
* repairs the tests after the refactoring spreeEugene Burmako2012-06-081-7/+19
|
* Hardens classToType logicEugene Burmako2012-02-011-0/+20
Reflection now correctly processes classes, objects and inner classes that are declared in classes and objects. However classToType still crashes on compound types and local classes. For more information on those, follow the links: * Compound types: https://issues.scala-lang.org/browse/SI-5430 * Local classes: https://issues.scala-lang.org/browse/SI-5431 Fixes https://issues.scala-lang.org/browse/SI-5256. Review by @paulp, @odersky.