summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@epfl.ch>2012-07-12 15:14:09 +0200
committerLukas Rytz <lukas.rytz@epfl.ch>2012-07-12 15:29:11 +0200
commit21f14e371c0baa9d59678fe5645cea80586ef116 (patch)
tree045dea18ffa44342aa079cf5abbdc1e19b162a38 /src/compiler
parent758f0a7ac5366c9748739032383456b6e7727d37 (diff)
downloadscala-21f14e371c0baa9d59678fe5645cea80586ef116.tar.gz
scala-21f14e371c0baa9d59678fe5645cea80586ef116.tar.bz2
scala-21f14e371c0baa9d59678fe5645cea80586ef116.zip
SI-5957 enable direct parsing of nested java class classfile
by weakening an assertion. explained in the source comment.
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala9
1 files changed, 8 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 e6499c05a6..60e11291c1 100644
--- a/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
+++ b/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
@@ -645,7 +645,14 @@ abstract class ClassfileParser {
// if this is a non-static inner class, remove the explicit outer parameter
val newParams = innerClasses.get(currentClass) match {
case Some(entry) if !isScalaRaw && !isStatic(entry.jflags) =>
- assert(params.head.tpe.typeSymbol == clazz.owner, params.head.tpe.typeSymbol + ": " + clazz.owner)
+ /* About `clazz.owner.isPackage` below: SI-5957
+ * For every nested java class A$B, there are two symbols in the scala compiler.
+ * 1. created by SymbolLoader, because of the existence of the A$B.class file, owner: package
+ * 2. created by ClassfileParser of A when reading the inner classes, owner: A
+ * If symbol 1 gets completed (e.g. because the compiled source mentions `A$B`, not `A#B`), the
+ * ClassfileParser for 1 executes, and clazz.owner is the package.
+ */
+ assert(params.head.tpe.typeSymbol == clazz.owner || clazz.owner.isPackage, params.head.tpe.typeSymbol + ": " + clazz.owner)
params.tail
case _ =>
params