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>" )
@@ -456,7 +455,8 @@ object Flags {
456
455
457
456
/** Flags guaranteed to be set upon symbol creation */
458
457
final val FromStartFlags =
459
- Module | Package | Deferred | MethodOrHKCommon | Param | ParamAccessor .toCommonFlags |
458
+ Module | Package | Deferred | Method .toCommonFlags |
459
+ HigherKinded .toCommonFlags | Param | ParamAccessor .toCommonFlags |
460
460
Scala2ExistentialCommon | Mutable .toCommonFlags | Touched | JavaStatic |
461
461
CovariantOrOuter | ContravariantOrLabel | CaseAccessor .toCommonFlags |
462
462
NonMember | Erroneous | ImplicitCommon | Permanent | Synthetic |
You can’t perform that action at this time.
0 commit comments