aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/pickling/ClassfileParser.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2014-11-04 15:19:41 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2014-11-22 20:10:22 +0100
commit32954ba55955f4335bb34007269e3d405faa1780 (patch)
tree4410a4a406fd5dceb97a74b3a1df78bc0d4d8c5c /src/dotty/tools/dotc/core/pickling/ClassfileParser.scala
parentcc8ca00fc1718bcbb49e3c61f3c0682eac2a7e7c (diff)
downloaddotty-32954ba55955f4335bb34007269e3d405faa1780.tar.gz
dotty-32954ba55955f4335bb34007269e3d405faa1780.tar.bz2
dotty-32954ba55955f4335bb34007269e3d405faa1780.zip
Extracting ApplyOverloaded to be reused in UnPickler and ClassfileParser
Diffstat (limited to 'src/dotty/tools/dotc/core/pickling/ClassfileParser.scala')
-rw-r--r--src/dotty/tools/dotc/core/pickling/ClassfileParser.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/pickling/ClassfileParser.scala b/src/dotty/tools/dotc/core/pickling/ClassfileParser.scala
index fb5a6309b..8bf84e1a9 100644
--- a/src/dotty/tools/dotc/core/pickling/ClassfileParser.scala
+++ b/src/dotty/tools/dotc/core/pickling/ClassfileParser.scala
@@ -444,7 +444,7 @@ class ClassfileParser(
}
}
if (hasError || skip) None
- else Some(Annotation.deferred(attrType, argbuf.toList))
+ else Some(Annotation.deferredResolve(attrType, argbuf.toList))
} catch {
case f: FatalError => throw f // don't eat fatal errors, they mean a class was not found
case ex: Throwable =>