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.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dotty/tools/dotc/core/Flags.scala b/src/dotty/tools/dotc/core/Flags.scala
index a60f7e70d..f62c3cae8 100644
--- a/src/dotty/tools/dotc/core/Flags.scala
+++ b/src/dotty/tools/dotc/core/Flags.scala
@@ -300,7 +300,7 @@ object Flags {
/** Method is assumed to be stable */
final val Stable = termFlag(24, "<stable>")
-
+
/** A case parameter accessor */
final val CaseAccessor = termFlag(25, "<caseaccessor>")
@@ -499,7 +499,7 @@ object Flags {
/** These flags are pickled */
final val PickledFlags = flagRange(FirstFlag, FirstNotPickledFlag)
-
+
final val AllFlags = flagRange(FirstFlag, MaxFlag)
/** An abstract class or a trait */
@@ -531,10 +531,10 @@ object Flags {
/** A type parameter or type parameter accessor */
final val TypeParamOrAccessor = TypeParam | TypeParamAccessor
-
- /** If symbol of a type alias has these flags, prefer the alias */
+
+ /** If symbol of a type alias has these flags, prefer the alias */
final val AliasPreferred = TypeParam | TypeArgument | ExpandedName
-
+
/** A covariant type parameter instance */
final val LocalCovariant = allOf(Local, Covariant)