File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -427,7 +427,7 @@ object Flags {
427
427
428
428
/** Flags representing modifiers that can appear in trees */
429
429
final val ModifierFlags =
430
- SourceModifierFlags | Module | Param | Synthetic | Package | Local
430
+ SourceModifierFlags | Module | Param | Synthetic | Package | Local | commonFlags( Mutable )
431
431
// | Trait is subsumed by commonFlags(Lazy) from SourceModifierFlags
432
432
433
433
assert(ModifierFlags .isTermFlags && ModifierFlags .isTypeFlags)
@@ -520,12 +520,18 @@ object Flags {
520
520
/** A private method */
521
521
final val PrivateMethod = allOf(Private , Method )
522
522
523
+ /** A private accessor */
524
+ final val PrivateAccessor = allOf(Private , Accessor )
525
+
523
526
/** A type parameter with synthesized name */
524
527
final val ExpandedTypeParam = allOf(ExpandedName , TypeParam )
525
528
526
529
/** A parameter or parameter accessor */
527
530
final val ParamOrAccessor = Param | ParamAccessor
528
531
532
+ /** A lazy or deferred value */
533
+ final val LazyOrDeferred = Lazy | Deferred
534
+
529
535
/** A type parameter or type parameter accessor */
530
536
final val TypeParamOrAccessor = TypeParam | TypeParamAccessor
531
537
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ class RefinedPrinter(_ctx: Context) extends PlainPrinter(_ctx) {
172
172
* parent { type Apply = body; argBindings? }
173
173
*
174
174
* split it into
175
-
175
+ *
176
176
* - the `parent`
177
177
* - the simplified `body`
178
178
* - the bindings HK$ members, if there are any
You can’t perform that action at this time.
0 commit comments