aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Flags.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-06-29 19:07:28 +0200
committerMartin Odersky <odersky@gmail.com>2016-07-11 13:34:59 +0200
commit08a0ea65b911726b327a9caf36e0e48acb5c5e93 (patch)
tree0233c650a6a22017f49ea819327bf0bc2adf2f45 /src/dotty/tools/dotc/core/Flags.scala
parentaa7f66d3f7d299733158a08bad5ac0d746497d81 (diff)
downloaddotty-08a0ea65b911726b327a9caf36e0e48acb5c5e93.tar.gz
dotty-08a0ea65b911726b327a9caf36e0e48acb5c5e93.tar.bz2
dotty-08a0ea65b911726b327a9caf36e0e48acb5c5e93.zip
Add printing of type lambda trees
Also fix printing of variances in typedefs and params; they were suppressed before.
Diffstat (limited to 'src/dotty/tools/dotc/core/Flags.scala')
-rw-r--r--src/dotty/tools/dotc/core/Flags.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/Flags.scala b/src/dotty/tools/dotc/core/Flags.scala
index cd660aa46..bdd6bbdcf 100644
--- a/src/dotty/tools/dotc/core/Flags.scala
+++ b/src/dotty/tools/dotc/core/Flags.scala
@@ -436,7 +436,8 @@ object Flags {
/** Flags representing modifiers that can appear in trees */
final val ModifierFlags =
- SourceModifierFlags | Module | Param | Synthetic | Package | Local | commonFlags(Mutable)
+ SourceModifierFlags | Module | Param | Synthetic | Package | Local |
+ commonFlags(Mutable)
// | Trait is subsumed by commonFlags(Lazy) from SourceModifierFlags
assert(ModifierFlags.isTermFlags && ModifierFlags.isTypeFlags)