@@ -380,9 +380,6 @@ object Flags {
380380 /** Tracked modifier for class parameter / a class with some tracked parameters */
381381 val (Tracked @ _, _, Dependent @ _) = newFlags(46 , " tracked" )
382382
383- /** Symbol can not be resolved from source during typer. PROVISIONAL (possibly replace with `Invisible` with new semantics) */
384- val (SourceInvisible @ _, _, _) = newFlags(47 , " <source-invisible>" )
385-
386383 // ------------ Flags following this one are not pickled ----------------------------------
387384
388385 /** Symbol is not a member of its owner */
@@ -474,7 +471,7 @@ object Flags {
474471 Scala2SpecialFlags , MutableOrOpen , Opaque , Touched , JavaStatic ,
475472 OuterOrCovariant , LabelOrContravariant , CaseAccessor , Tracked ,
476473 Extension , NonMember , Implicit , Given , Permanent , Synthetic , Exported ,
477- SuperParamAliasOrScala2x , Inline , Macro , ConstructorProxy , Invisible , SourceInvisible )
474+ SuperParamAliasOrScala2x , Inline , Macro , ConstructorProxy , Invisible )
478475
479476 /** Flags that are not (re)set when completing the denotation, or, if symbol is
480477 * a top-level class or object, when completing the denotation once the class
@@ -528,7 +525,7 @@ object Flags {
528525 val RetainedModuleValAndClassFlags : FlagSet =
529526 AccessFlags | Package | Case |
530527 Synthetic | JavaDefined | JavaStatic | Artifact |
531- Lifted | MixedIn | Specialized | ConstructorProxy | Invisible | SourceInvisible | Erased
528+ Lifted | MixedIn | Specialized | ConstructorProxy | Invisible | Erased
532529
533530 /** Flags that can apply to a module val */
534531 val RetainedModuleValFlags : FlagSet = RetainedModuleValAndClassFlags |
0 commit comments