summaryrefslogtreecommitdiff
path: root/src/partest
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-12-01 12:38:10 +0100
committerPaul Phillips <paulp@improving.org>2012-12-02 13:39:05 -0800
commitde6649439e39c1f656644ac090fc49a7a8f02340 (patch)
tree25639987d8bf130ee570269fc50f285240ccecf6 /src/partest
parent47245f547f55df1feff9add1e8cd73edd8d0b154 (diff)
downloadscala-de6649439e39c1f656644ac090fc49a7a8f02340.tar.gz
scala-de6649439e39c1f656644ac090fc49a7a8f02340.tar.bz2
scala-de6649439e39c1f656644ac090fc49a7a8f02340.zip
Remove TermName -> String implicit.
These implicits were crutches going back to a much Stringier time. Of course "with great type safety comes great verbosity" and no doubt this could be cleaned up significantly further. At least the underpinnings are consistent now - the only implicits involving name should be String -> TypeName and String -> TermName.
Diffstat (limited to 'src/partest')
-rw-r--r--src/partest/scala/tools/partest/CompilerTest.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/partest/scala/tools/partest/CompilerTest.scala b/src/partest/scala/tools/partest/CompilerTest.scala
index bb0732dcc6..7495f97efd 100644
--- a/src/partest/scala/tools/partest/CompilerTest.scala
+++ b/src/partest/scala/tools/partest/CompilerTest.scala
@@ -49,7 +49,7 @@ abstract class CompilerTest extends DirectTest {
}
class SymsInPackage(pkgName: String) {
- def pkg = rootMirror.getRequiredPackage(pkgName)
+ def pkg = rootMirror.getPackage(pkgName)
def classes = allMembers(pkg) filter (_.isClass)
def modules = allMembers(pkg) filter (_.isModule)
def symbols = classes ++ terms filterNot (_ eq NoSymbol)