File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
compiler/src/dotty/tools/dotc/core Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -454,17 +454,18 @@ object Flags {
454454 /** Flags representing access rights */
455455 final val AccessFlags = Private | Protected | Local
456456
457- /** Flags guaranteed to be set upon symbol creation */
457+ /** Flags that are not (re) set when completing the denotation */
458458 final val FromStartFlags =
459459 Module | Package | Deferred | MethodOrHKCommon | Param | ParamAccessor .toCommonFlags |
460460 Scala2ExistentialCommon | Mutable .toCommonFlags | Touched | JavaStatic |
461461 CovariantOrOuter | ContravariantOrLabel | CaseAccessor .toCommonFlags |
462462 NonMember | Erroneous | ImplicitCommon | Permanent | Synthetic |
463463 SuperAccessorOrScala2x | Inline
464464
465- /** Flags guaranteed to be set upon symbol creation, or, if symbol is a top-level
466- * class or object, when the class file defining the symbol is loaded (which
467- * is generally before the symbol is completed
465+ /** Flags that are not (re)set when completing the denotation, or, if symbol is
466+ * a top-level class or object, when completing the denotation once the class
467+ * file defining the symbol is loaded (which is generally before the denotation
468+ * is completed)
468469 */
469470 final val AfterLoadFlags =
470471 FromStartFlags | AccessFlags | Final | AccessorOrSealed | LazyOrTrait | SelfNameOrImplClass
You can’t perform that action at this time.
0 commit comments