File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
compiler/src/dotty/tools/dotc/core Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -222,9 +222,8 @@ object Flags {
222
222
final val Final = commonFlag(6 , " final" )
223
223
224
224
/** A method symbol. */
225
- final val MethodOrHKCommon = commonFlag(7 , " <method>" )
226
- final val Method = MethodOrHKCommon .toTermFlags
227
- final val HigherKinded = MethodOrHKCommon .toTypeFlags
225
+ final val Method = termFlag(7 , " <method>" )
226
+ final val HigherKinded = typeFlag(7 , " <higher kinded>" )
228
227
229
228
/** A (term or type) parameter to a class or method */
230
229
final val Param = commonFlag(8 , " <param>" )
@@ -453,7 +452,8 @@ object Flags {
453
452
454
453
/** Flags that are not (re)set when completing the denotation */
455
454
final val FromStartFlags =
456
- Module | Package | Deferred | MethodOrHKCommon | Param | ParamAccessor .toCommonFlags |
455
+ Module | Package | Deferred | Method .toCommonFlags |
456
+ HigherKinded .toCommonFlags | Param | ParamAccessor .toCommonFlags |
457
457
Scala2ExistentialCommon | Mutable .toCommonFlags | Touched | JavaStatic |
458
458
CovariantOrOuter | ContravariantOrLabel | CaseAccessor .toCommonFlags |
459
459
NonMember | ImplicitCommon | Permanent | Synthetic |
You can’t perform that action at this time.
0 commit comments