summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-enclosed-basic.scala
Commit message (Collapse)AuthorAgeFilesLines
* cleans up usages of <init>Eugene Burmako2012-12-291-1/+1
|
* Changes reflection tests to use shorter name constructorsDen Shabalin2012-12-251-2/+2
|
* SI-5947 works around getDeclaredClassesEugene Burmako2012-08-081-0/+46
Our name mangling scheme w.r.t stuff nested into objects conflicts with JVM's ideas of beauty, which messes up getDeclaredClasses. Scala reflection needs getDeclaredClasses to convert between Scala and Java, so the situation looked grim. Greg suggested a workaround described in: https://issues.scala-lang.org/browse/SI-4023?focusedCommentId=54759#comment-54759. Luckily the workaround worked!