summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-24 05:49:53 +0000
committerPaul Phillips <paulp@improving.org>2011-03-24 05:49:53 +0000
commit5670f1f83472eb250a3af7764a9539fbd50558c1 (patch)
tree85110a8a4b88ae5d78053f02e8643316551af778 /src/compiler
parent4a6c40fe6b5a1461647fc666c261a8aa542dff06 (diff)
downloadscala-5670f1f83472eb250a3af7764a9539fbd50558c1.tar.gz
scala-5670f1f83472eb250a3af7764a9539fbd50558c1.tar.bz2
scala-5670f1f83472eb250a3af7764a9539fbd50558c1.zip
Discovered Range.foreach inlining was broken du...
Discovered Range.foreach inlining was broken due to a Nothing signature appearing and confusing the loader. No review.
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala b/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
index de1a03cc5c..4eca9f140e 100644
--- a/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
+++ b/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
@@ -264,7 +264,7 @@ abstract class ClassfileParser {
// println("Looking for: " + name + ": " + tpe + " inside: " + ownerTpe.typeSymbol + "\n\tand found: " + ownerTpe.members)
}
}
- assert(f != NoSymbol, "could not find " + name + ": " + tpe + "inside: \n" + ownerTpe.members)
+ assert(f != NoSymbol, "could not find\n " + name + ": " + tpe + "\ninside:\n " + ownerTpe.members.mkString(", "))
values(index) = f
}
f