aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/SymDenotations.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-03-01 14:46:42 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-03-18 11:14:12 +0100
commita543ed10445f2d4d61a61cd333fa9273c3a32ea0 (patch)
treeb089c96d2f5d3a5a7cdc0a59f995d52db54b672d /src/dotty/tools/dotc/core/SymDenotations.scala
parentdd5be327395cb4a6380467e5e7c85cc0d7a5e70d (diff)
downloaddotty-a543ed10445f2d4d61a61cd333fa9273c3a32ea0.tar.gz
dotty-a543ed10445f2d4d61a61cd333fa9273c3a32ea0.tar.bz2
dotty-a543ed10445f2d4d61a61cd333fa9273c3a32ea0.zip
Bugfixes in unpickling
- better diagnostics, avoid try-finally-assert, because that masks errors. - handle paths as terms correctly. - need to set flags wholesale from pickling, not just add to them. - fix pickling of refined types and skolem types. - dealias type aliases representing parameter instantiations before pickling, so that we do not refer to as-yet-undefined symbols.
Diffstat (limited to 'src/dotty/tools/dotc/core/SymDenotations.scala')
-rw-r--r--src/dotty/tools/dotc/core/SymDenotations.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/SymDenotations.scala b/src/dotty/tools/dotc/core/SymDenotations.scala
index 8cca897c3..e1254322e 100644
--- a/src/dotty/tools/dotc/core/SymDenotations.scala
+++ b/src/dotty/tools/dotc/core/SymDenotations.scala
@@ -95,7 +95,7 @@ object SymDenotations {
private def adaptFlags(flags: FlagSet) = if (isType) flags.toTypeFlags else flags.toTermFlags
/** Update the flag set */
- private final def flags_=(flags: FlagSet): Unit =
+ final def flags_=(flags: FlagSet): Unit =
myFlags = adaptFlags(flags)
/** Set given flags(s) of this denotation */