summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2007-08-28 14:36:52 +0000
committerIulian Dragos <jaguarul@gmail.com>2007-08-28 14:36:52 +0000
commit649de8069317a921f4b43e20469b6f938b2a2783 (patch)
tree45ed8371fad6b3de341c3db4af0e25ddb77035c8 /src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
parent22f1be16fb364a8ae9749c0a59f0535cbe18b561 (diff)
downloadscala-649de8069317a921f4b43e20469b6f938b2a2783.tar.gz
scala-649de8069317a921f4b43e20469b6f938b2a2783.tar.bz2
scala-649de8069317a921f4b43e20469b6f938b2a2783.zip
Various improvements/bug fixes in the icode rea...
Various improvements/bug fixes in the icode reader.
Diffstat (limited to 'src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala b/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
index b230d409f0..bf3118b07f 100644
--- a/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
+++ b/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
@@ -69,7 +69,7 @@ abstract class ClassfileParser {
}
assert(!busy)
busy = true
- root match {
+ /*root match {
case cs: ClassSymbol =>
cs.classFile = file
case ms: ModuleSymbol =>
@@ -77,7 +77,7 @@ abstract class ClassfileParser {
case _ =>
println("Skipping class: " + root + ": " + root.getClass)
}
-
+*/
this.in = new AbstractFileReader(file)
if (root.isModule) {
this.clazz = root.linkedClassOfModule
@@ -328,7 +328,6 @@ abstract class ClassfileParser {
else
definitions.getClass(name)
-
var sawPrivateConstructor = false
def parseClass() {