summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2014-02-11 15:37:37 +0100
committerEugene Burmako <xeno.by@gmail.com>2014-02-15 09:32:26 +0100
commit2e4cce358d89f3c85a357ab2241790fafcdbf10a (patch)
tree5813c2254353900ea042cdcbbbba2530df4551fc /test
parent49c99e63f1e6121ebd4d67d8eac9d245fc7137e8 (diff)
downloadscala-2e4cce358d89f3c85a357ab2241790fafcdbf10a.tar.gz
scala-2e4cce358d89f3c85a357ab2241790fafcdbf10a.tar.bz2
scala-2e4cce358d89f3c85a357ab2241790fafcdbf10a.zip
Type.companionType => Type.companion
I think that the "type" suffix here is redundant, so let's rename this API to reduce the annoyance potential.
Diffstat (limited to 'test')
-rw-r--r--test/files/run/reflection-companiontype.scala18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/files/run/reflection-companiontype.scala b/test/files/run/reflection-companiontype.scala
index 7f2a37aaa9..0f63457670 100644
--- a/test/files/run/reflection-companiontype.scala
+++ b/test/files/run/reflection-companiontype.scala
@@ -8,15 +8,15 @@ object Test extends App {
type T = C
println("TypeRefs")
- println(showRaw(typeOf[C].companionType, printKinds = true))
- println(showRaw(typeOf[C].companionType.companionType, printKinds = true))
- println(showRaw(typeOf[C.type].companionType, printKinds = true))
+ println(showRaw(typeOf[C].companion, printKinds = true))
+ println(showRaw(typeOf[C].companion.companion, printKinds = true))
+ println(showRaw(typeOf[C.type].companion, printKinds = true))
println("ClassInfoTypes")
- println(showRaw(typeOf[C].typeSymbol.info.companionType, printKinds = true))
- println(showRaw(typeOf[C].typeSymbol.info.companionType.typeSymbol.info.companionType, printKinds = true))
- println(showRaw(typeOf[C.type].typeSymbol.info.companionType, printKinds = true))
+ println(showRaw(typeOf[C].typeSymbol.info.companion, printKinds = true))
+ println(showRaw(typeOf[C].typeSymbol.info.companion.typeSymbol.info.companion, printKinds = true))
+ println(showRaw(typeOf[C.type].typeSymbol.info.companion, printKinds = true))
println("Unrelated")
- println(showRaw(typeOf[T].companionType, printKinds = true))
- println(showRaw(cm.staticPackage("scala").moduleClass.asType.toType.companionType, printKinds = true))
- println(showRaw(cm.staticPackage("scala").info.companionType, printKinds = true))
+ println(showRaw(typeOf[T].companion, printKinds = true))
+ println(showRaw(cm.staticPackage("scala").moduleClass.asType.toType.companion, printKinds = true))
+ println(showRaw(cm.staticPackage("scala").info.companion, printKinds = true))
} \ No newline at end of file