aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/pickling/UnPickler.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-02-16 14:23:05 +0100
committerMartin Odersky <odersky@gmail.com>2013-02-16 14:23:05 +0100
commit6bd453e8f3b50e7c48b6969bd4aaf6638b0455f8 (patch)
tree024c591cf5f22c65218e0f33d053f7806b781f53 /src/dotty/tools/dotc/core/pickling/UnPickler.scala
parentcf425f04b9342d15f25380e2227c6b142bd26f16 (diff)
downloaddotty-6bd453e8f3b50e7c48b6969bd4aaf6638b0455f8.tar.gz
dotty-6bd453e8f3b50e7c48b6969bd4aaf6638b0455f8.tar.bz2
dotty-6bd453e8f3b50e7c48b6969bd4aaf6638b0455f8.zip
Fleshed out tree handling
Diffstat (limited to 'src/dotty/tools/dotc/core/pickling/UnPickler.scala')
-rw-r--r--src/dotty/tools/dotc/core/pickling/UnPickler.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/pickling/UnPickler.scala b/src/dotty/tools/dotc/core/pickling/UnPickler.scala
index 9822ac222..ee60f89ad 100644
--- a/src/dotty/tools/dotc/core/pickling/UnPickler.scala
+++ b/src/dotty/tools/dotc/core/pickling/UnPickler.scala
@@ -272,7 +272,7 @@ class UnPickler(bytes: Array[Byte], classRoot: LazyClassDenotation, moduleRoot:
protected def readTypeName(): TypeName = readName().toTypeName
/** Read a symbol */
- protected def readSymbol(): Symbol = readDisambiguatedSymbol(Function.const(true))()
+ protected def readSymbol(): Symbol = readDisambiguatedSymbol(scala.Function.const(true))()
/** Read a symbol, with possible disambiguation */
protected def readDisambiguatedSymbol(p: Symbol => Boolean)(): Symbol = {