aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Flags.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/core/Flags.scala')
-rw-r--r--src/dotty/tools/dotc/core/Flags.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dotty/tools/dotc/core/Flags.scala b/src/dotty/tools/dotc/core/Flags.scala
index 896de25fd..e34483f8f 100644
--- a/src/dotty/tools/dotc/core/Flags.scala
+++ b/src/dotty/tools/dotc/core/Flags.scala
@@ -501,6 +501,9 @@ object Flags {
/** Either mutable or lazy */
final val MutableOrLazy = Mutable | Lazy
+ /** Either method or lazy */
+ final val MethodOrLazy = Method | Lazy
+
/** Labeled `private` or `final` */
final val PrivateOrFinal = Private | Final