-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathFlags.scala
630 lines (495 loc) · 28.2 KB
/
Flags.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
package dotty.tools.dotc
package core
object Flags {
object opaques {
/** A FlagSet represents a set of flags. Flags are encoded as follows:
* The first two bits indicate whether a flag set applies to terms,
* to types, or to both. Bits 2..63 are available for properties
* and can be doubly used for terms and types.
*/
opaque type FlagSet = Long
def FlagSet(bits: Long): FlagSet = bits
def toBits(fs: FlagSet): Long = fs
/** A flag set consisting of a single flag */
opaque type Flag <: FlagSet = Long
private[Flags] def Flag(bits: Long): Flag = bits
}
export opaques.FlagSet
type Flag = opaques.Flag
extension (x: FlagSet) {
inline def bits: Long = opaques.toBits(x)
/** The union of the given flag sets.
* Combining two FlagSets with `|` will give a FlagSet
* that has the intersection of the applicability to terms/types
* of the two flag sets. It is checked that the intersection is not empty.
*/
def | (y: FlagSet): FlagSet =
if (x.bits == 0) y
else if (y.bits == 0) x
else {
val tbits = x.bits & y.bits & KINDFLAGS
if (tbits == 0)
assert(false, s"illegal flagset combination: ${x.flagsString} and ${y.flagsString}")
FlagSet(tbits | ((x.bits | y.bits) & ~KINDFLAGS))
}
/** The intersection of the given flag sets */
def & (y: FlagSet): FlagSet = FlagSet(x.bits & y.bits)
/** The intersection of a flag set with the complement of another flag set */
def &~ (y: FlagSet): FlagSet = {
val tbits = x.bits & KINDFLAGS
if ((tbits & y.bits) == 0) x
else FlagSet(tbits | ((x.bits & ~y.bits) & ~KINDFLAGS))
}
def ^ (y: FlagSet) =
FlagSet((x.bits | y.bits) & KINDFLAGS | (x.bits ^ y.bits) & ~KINDFLAGS)
/** Does the given flag set contain the given flag?
* This means that both the kind flags and the carrier bits have non-empty intersection.
*/
def is (flag: Flag): Boolean = {
val fs = x.bits & flag.bits
(fs & KINDFLAGS) != 0 && (fs & ~KINDFLAGS) != 0
}
/** Does the given flag set contain the given flag
* and at the same time contain none of the flags in the `butNot` set?
*/
def is (flag: Flag, butNot: FlagSet): Boolean = x.is(flag) && !x.isOneOf(butNot)
/** Does the given flag set have a non-empty intersection with another flag set?
* This means that both the kind flags and the carrier bits have non-empty intersection.
*/
def isOneOf (flags: FlagSet): Boolean = {
val fs = x.bits & flags.bits
(fs & KINDFLAGS) != 0 && (fs & ~KINDFLAGS) != 0
}
/** Does the given flag set have a non-empty intersection with another flag set,
* and at the same time contain none of the flags in the `butNot` set?
*/
def isOneOf (flags: FlagSet, butNot: FlagSet): Boolean = x.isOneOf(flags) && !x.isOneOf(butNot)
/** Does a given flag set have all of the flags of another flag set?
* Pre: The intersection of the term/type flags of both sets must be non-empty.
*/
def isAllOf (flags: FlagSet): Boolean = {
val fs = x.bits & flags.bits
((fs & KINDFLAGS) != 0 || flags.bits == 0) &&
(fs >>> TYPESHIFT) == (flags.bits >>> TYPESHIFT)
}
/** Does a given flag set have all of the flags in another flag set
* and at the same time contain none of the flags in the `butNot` set?
* Pre: The intersection of the term/type flags of both sets must be non-empty.
*/
def isAllOf (flags: FlagSet, butNot: FlagSet): Boolean = x.isAllOf(flags) && !x.isOneOf(butNot)
def isEmpty: Boolean = (x.bits & ~KINDFLAGS) == 0
/** Is a given flag set a subset of another flag set? */
def <= (y: FlagSet): Boolean = (x.bits & y.bits) == x.bits
/** Does the given flag set apply to terms? */
def isTermFlags: Boolean = (x.bits & TERMS) != 0
/** Does the given flag set apply to terms? */
def isTypeFlags: Boolean = (x.bits & TYPES) != 0
/** The given flag set with all flags transposed to be type flags */
def toTypeFlags: FlagSet = if (x.bits == 0) x else FlagSet(x.bits & ~KINDFLAGS | TYPES)
/** The given flag set with all flags transposed to be term flags */
def toTermFlags: FlagSet = if (x.bits == 0) x else FlagSet(x.bits & ~KINDFLAGS | TERMS)
/** The given flag set with all flags transposed to be common flags */
def toCommonFlags: FlagSet = if (x.bits == 0) x else FlagSet(x.bits | KINDFLAGS)
/** The number of non-kind flags in the given flag set */
def numFlags: Int = java.lang.Long.bitCount(x.bits & ~KINDFLAGS)
/** The lowest non-kind bit set in the given flag set */
def firstBit: Int = java.lang.Long.numberOfTrailingZeros(x.bits & ~KINDFLAGS)
/** The list of non-empty names of flags with given index idx that are set in the given flag set */
private def flagString(idx: Int): List[String] =
if ((x.bits & (1L << idx)) == 0) Nil
else {
def halfString(kind: Int) =
if ((x.bits & (1L << kind)) != 0) flagName(idx)(kind) else ""
val termFS = halfString(TERMindex)
val typeFS = halfString(TYPEindex)
val strs = termFS :: (if (termFS == typeFS) Nil else typeFS :: Nil)
strs filter (_.nonEmpty)
}
/** The list of non-empty names of flags that are set in the given flag set */
def flagStrings(privateWithin: String = ""): Seq[String] = {
var rawStrings = (2 to MaxFlag).flatMap(x.flagString(_)) // DOTTY problem: cannot drop with (_)
if (!privateWithin.isEmpty && !x.is(Protected))
rawStrings :+= "private"
val scopeStr = if (x.is(Local)) "this" else privateWithin
if (scopeStr != "")
rawStrings.filter(_ != "<local>").map {
case "private" => s"private[$scopeStr]"
case "protected" => s"protected[$scopeStr]"
case str => str
}
else rawStrings
}
/** The string representation of the given flag set */
def flagsString: String = x.flagStrings("").mkString(" ")
}
// Temporary while extension names are in flux
def or(x1: FlagSet, x2: FlagSet) = x1 | x2
def and(x1: FlagSet, x2: FlagSet) = x1 & x2
def termFlagSet(x: Long) = FlagSet(TERMS | x)
private inline val TYPESHIFT = 2
private inline val TERMindex = 0
private inline val TYPEindex = 1
private inline val TERMS = 1 << TERMindex
private inline val TYPES = 1 << TYPEindex
private inline val KINDFLAGS = TERMS | TYPES
private inline val FirstFlag = 2
private inline val FirstNotPickledFlag = 48
private inline val MaxFlag = 63
private val flagName = Array.fill(64, 2)("")
private def isDefinedAsFlag(idx: Int) = flagName(idx).exists(_.nonEmpty)
/** The flag set containing all defined flags of either kind whose bits
* lie in the given range
*/
private def flagRange(start: Int, end: Int) =
FlagSet((start until end).foldLeft(KINDFLAGS.toLong) ((bits, idx) =>
if (isDefinedAsFlag(idx)) bits | (1L << idx) else bits))
/** The union of all flags in given flag set */
def union(flagss: FlagSet*): FlagSet = {
var flag = EmptyFlags
for (f <- flagss)
flag |= f
flag
}
def commonFlags(flagss: FlagSet*): FlagSet = union(flagss.map(_.toCommonFlags)*)
/** The empty flag set */
val EmptyFlags: FlagSet = FlagSet(0)
/** The undefined flag set */
val UndefinedFlags: FlagSet = FlagSet(~KINDFLAGS)
/** Three flags with given index between 2 and 63.
* The first applies to both terms and types. the second is a term flag, and
* the third is a type flag. Installs given name(s) as the name(s) of the flags.
* @param name The name to be used for the term flag
* @param typeName The name to be used for the type flag, if it is different from `name`.
*/
private def newFlags(index: Int, name: String, typeName: String = ""): (Flag, Flag, Flag) = {
flagName(index)(TERMindex) = name
flagName(index)(TYPEindex) = if (typeName.isEmpty) name else typeName
val bits = 1L << index
(opaques.Flag(KINDFLAGS | bits), opaques.Flag(TERMS | bits), opaques.Flag(TYPES | bits))
}
// ----------------- Available flags -----------------------------------------------------
/** Labeled with `private` modifier */
val (Private @ _, PrivateTerm @ _, PrivateType @ _) = newFlags(2, "private")
/** Labeled with `protected` modifier */
val (Protected @ _, _, _) = newFlags(3, "protected")
/** Labeled with `override` modifier */
val (Override @ _, _, _) = newFlags(4, "override")
/** A declared, but not defined member */
val (Deferred @ _, DeferredTerm @ _, DeferredType @ _) = newFlags(5, "<deferred>")
/** Labeled with `final` modifier */
val (Final @ _, _, _) = newFlags(6, "final")
/** A method symbol / a super trait */
val (_, Method @ _, _) = newFlags(7, "<method>")
/** A (term or type) parameter to a class or method */
val (Param @ _, TermParam @ _, TypeParam @ _) = newFlags(8, "<param>")
/** Labeled with `implicit` modifier (implicit value) */
val (Implicit @ _, ImplicitVal @ _, _) = newFlags(9, "implicit")
/** Labeled with `lazy` (a lazy val) / a trait */
val (LazyOrTrait @ _, Lazy @ _, Trait @ _) = newFlags(10, "lazy", "<trait>")
/** A value or variable accessor (getter or setter) */
val (AccessorOrSealed @ _, Accessor @ _, Sealed @ _) = newFlags(11, "<accessor>", "sealed")
/** A mutable var, an open class */
val (MutableOrOpen @ _, Mutable @ _, Open @ _) = newFlags(12, "mutable", "open")
/** Symbol is local to current class (i.e. private[this] or protected[this]
* pre: Private or Protected are also set
*/
val (Local @ _, _, _) = newFlags(13, "<local>")
/** A field generated for a primary constructor parameter (no matter if it's a 'val' or not),
* or an accessor of such a field.
*/
val (_, ParamAccessor @ _, _) = newFlags(14, "<paramaccessor>")
/** A value or class implementing a module */
val (Module @ _, ModuleVal @ _, ModuleClass @ _) = newFlags(15, "module")
/** A value or class representing a package */
val (Package @ _, PackageVal @ _, PackageClass @ _) = newFlags(16, "<package>")
/** A case class or its companion object
* Note: Case is also used to indicate that a symbol is bound by a pattern.
*/
val (Case @ _, CaseVal @ _, CaseClass @ _) = newFlags(17, "case")
/** A compiler-generated symbol, which is visible for type-checking
* (compare with artifact)
*/
val (Synthetic @ _, _, _) = newFlags(18, "<synthetic>")
/** Labelled with `inline` modifier */
val (Inline @ _, _, _) = newFlags(19, "inline")
/** An outer accessor / a covariant type variable */
val (OuterOrCovariant @ _, OuterAccessor @ _, Covariant @ _) = newFlags(20, "<outer accessor>", "<covariant>")
/** The label of a labeled block / a contravariant type variable */
val (LabelOrContravariant @ _, Label @ _, Contravariant @ _) = newFlags(21, "<label>", "<contravariant>")
/** Labeled with of abstract & override
* /
* A trait that has only abstract methods as members
* and therefore can be represented by a Java interface.
* Warning: PureInterface is set during regular typer pass, should be tested only after typer.
*/
val (_, AbsOverride @ _, PureInterface @ _) = newFlags(22, "abstract override", "interface")
/** Labeled with `abstract` modifier (an abstract class)
* Note: You should never see Abstract on any symbol except a class.
* Note: the flag counts as common, because it can be combined with OVERRIDE in a term.
*/
val (Abstract @ _, _, _) = newFlags(23, "abstract")
/** Lazy val or method is known or assumed to be stable and realizable.
*
* For a trait constructor, this is set if and only if owner.is(NoInits),
* including for Java interfaces and for Scala 2 traits. It will be used by
*
* - the purity analysis used by the inliner to decide whether it is safe to elide, and
* - the TASTy reader of Scala 2.13, to determine whether there is a $init$ method.
*
* StableRealizable is
* - asserted for methods
* - automatic in conjunction with Module or Enum vals
* - cached for other vals
*/
val (_, StableRealizable @ _, _) = newFlags(24, "<stable>")
/** A case parameter accessor / an unpickled Scala 2 TASTy (only for Scala 2 stdlib) */
val (_, CaseAccessor @ _, Scala2Tasty @ _) = newFlags(25, "<caseaccessor>", "<scala-2-tasty>")
/** A Scala 2x super accessor / an unpickled Scala 2.x class */
val (SuperParamAliasOrScala2x @ _, SuperParamAlias @ _, Scala2x @ _) = newFlags(26, "<super-param-alias>", "<scala-2.x>")
/** A parameter with a default value / an impure untpd.FunctionWithMods type */
val (_, HasDefault @ _, Impure @ _) = newFlags(27, "<hasdefault>", "<impure>")
/** An extension method, or a collective extension instance */
val (Extension @ _, ExtensionMethod @ _, _) = newFlags(28, "<extension>")
/** An inferable (`given`) parameter */
val (Given @ _, GivenVal @ _, _) = newFlags(29, "given")
/** Symbol is defined by a Java class */
val (JavaDefined @ _, JavaDefinedVal @ _, _) = newFlags(30, "<java>")
/** Symbol is implemented as a Java static */
val (JavaStatic @ _, JavaStaticTerm @ _, JavaStaticType @ _) = newFlags(31, "<static>")
/** Variable is accessed from nested function
* /
* Trait does not have own fields or initialization code or class does not
* have own or inherited initialization code.
*
* Warning: NoInits is set during regular typer pass, should be tested only after typer.
*/
val (_, Captured @ _, NoInits @ _) = newFlags(32, "<captured>", "<noinits>")
/** Symbol should be ignored when typechecking; will be marked ACC_SYNTHETIC in bytecode */
val (Artifact @ _, _, _) = newFlags(33, "<artifact>")
/** A bridge method. Set by Erasure */
val (_, Bridge @ _, _) = newFlags(34, "<bridge>")
/** A proxy for an argument to an inline method */
val (_, InlineProxy @ _, _) = newFlags(35, "<inline proxy>")
/** Symbol is a method which should be marked ACC_SYNCHRONIZED */
val (_, Synchronized @ _, _) = newFlags(36, "<synchronized>")
/** Symbol is a Java-style varargs method / a Java annotation */
val (_, JavaVarargs @ _, JavaAnnotation @ _) = newFlags(37, "<varargs>", "<java-annotation>")
/** Symbol is a Java default method */
val (_, DefaultMethod @ _, _) = newFlags(38, "<defaultmethod>")
/** Symbol is a transparent inline method or trait */
val (Transparent @ _, _, TransparentType @ _) = newFlags(39, "transparent")
/** Symbol is an enum class or enum case (if used with case) */
val (Enum @ _, EnumVal @ _, _) = newFlags(40, "enum")
/** An export forwarder */
val (Exported @ _, ExportedTerm @ _, ExportedType @ _) = newFlags(41, "exported")
/** Labeled with `erased` modifier (erased value or class) */
val (Erased @ _, _, _) = newFlags(42, "erased")
/** An opaque type alias or a class containing one */
val (Opaque @ _, _, _) = newFlags(43, "opaque")
/** An infix method or type */
val (Infix @ _, _, _) = newFlags(44, "infix")
/** Symbol cannot be found as a member during typer */
val (Invisible @ _, _, _) = newFlags(45, "<invisible>")
/** Tracked modifier for class parameter / a class with some tracked parameters */
val (Tracked @ _, _, Dependent @ _) = newFlags(46, "tracked")
// ------------ Flags following this one are not pickled ----------------------------------
/** Symbol is not a member of its owner */
val (NonMember @ _, _, _) = newFlags(49, "<non-member>")
/** Denotation is in train of being loaded and completed, used to catch cyclic dependencies */
val (Touched @ _, _, _) = newFlags(50, "<touched>")
/** Class has been lifted out to package level, local value has been lifted out to class level */
val (Lifted @ _, _, _) = newFlags(51, "<lifted>") // only used from lambda-lift (could be merged with ConstructorProxy)
/** Term member has been mixed in */
val (MixedIn @ _, _, _) = newFlags(52, "<mixedin>")
/** Symbol is a generated specialized member */
val (Specialized @ _, _, _) = newFlags(53, "<specialized>")
/** Symbol is a self name */
val (_, SelfName @ _, _) = newFlags(54, "<selfname>")
/** A Scala 2 superaccessor (only needed during Scala2Unpickling) /
* an existentially bound symbol (Scala 2.x only) */
val (Scala2SpecialFlags @ _, Scala2SuperAccessor @ _, Scala2Existential @ _) = newFlags(55, "<existential>")
/** Children were queried on this class */
val (_, _, ChildrenQueried @ _) = newFlags(56, "<children-queried>")
/** A module variable (Scala 2.x only) / a capture-checked class
* (Scala2ModuleVar is re-used as a flag for private parameter accessors in Recheck)
*/
val (_, Scala2ModuleVar @ _, CaptureChecked @ _) = newFlags(57, "<modulevar>/<cc>")
/** A macro */
val (Macro @ _, _, _) = newFlags(58, "<macro>")
/** Translation of Scala2's EXPANDEDNAME flag. This flag is never stored in
* symbols, is only used locally when reading the flags of a Scala2 symbol.
* It's therefore safe to share the code with `HasDefaultParams` because
* the latter is never present in Scala2 unpickle info.
* /
* A method that is known to have (defined or inherited) default parameters
*/
val (Scala2ExpandedName @ _, HasDefaultParams @ _, _) = newFlags(59, "<has-default-params>")
/** A method that is known to have no default parameters
* /
* A type symbol with provisional empty bounds
*/
val (_, NoDefaultParams @ _, Provisional @ _) = newFlags(60, "<no-default-params>", "<provisional>")
/** A denotation that is valid in all run-ids */
val (Permanent @ _, _, _) = newFlags(61, "<permanent>")
/** Symbol is a constructor proxy (either companion, or apply method) */
val (ConstructorProxy @ _, _, _) = newFlags(62, "<constructor proxy>") // (could be merged with Lifted)
/** Changed from implicit with -Yimplicits-as-given flags */
val (FromImplicit @ _, _, _) = newFlags(63, "<from implicit>")
// --------- Combined Flag Sets and Conjunctions ----------------------
/** All possible flags */
val AnyFlags: FlagSet = flagRange(FirstFlag, MaxFlag)
/** These flags are pickled */
val PickledFlags: FlagSet = flagRange(FirstFlag, FirstNotPickledFlag)
/** Flags representing access rights */
val AccessFlags: FlagSet = Local | Private | Protected
/** Flags representing source modifiers */
private val CommonSourceModifierFlags: FlagSet =
commonFlags(Private, Protected, Final, Case, Implicit, Given, Override, JavaStatic, Transparent, Erased)
val TypeSourceModifierFlags: FlagSet =
CommonSourceModifierFlags.toTypeFlags | Abstract | Sealed | Opaque | Open
val TermSourceModifierFlags: FlagSet =
CommonSourceModifierFlags.toTermFlags | Inline | AbsOverride | Lazy | Tracked
/** Flags representing modifiers that can appear in trees */
val ModifierFlags: FlagSet =
TypeSourceModifierFlags.toCommonFlags |
TermSourceModifierFlags.toCommonFlags |
commonFlags(Module, Param, Synthetic, Package, Local, Mutable, Trait)
/** Flags that are not (re)set when completing the denotation
* TODO: Should check that FromStartFlags do not change in completion
*/
val FromStartFlags: FlagSet = commonFlags(
Module, Package, Deferred, Method, Case, Enum, Param, ParamAccessor,
Scala2SpecialFlags, MutableOrOpen, Opaque, Touched, JavaStatic,
OuterOrCovariant, LabelOrContravariant, CaseAccessor, Tracked,
Extension, NonMember, Implicit, Given, Permanent, Synthetic, Exported,
SuperParamAliasOrScala2x, Inline, Macro, ConstructorProxy, Invisible)
/** Flags that are not (re)set when completing the denotation, or, if symbol is
* a top-level class or object, when completing the denotation once the class
* file defining the symbol is loaded (which is generally before the denotation
* is completed)
*/
val AfterLoadFlags: FlagSet = commonFlags(
FromStartFlags, AccessFlags, Final, AccessorOrSealed,
Abstract, LazyOrTrait, SelfName, JavaDefined, JavaAnnotation, Transparent)
/** A value that's unstable unless complemented with a Stable flag */
val UnstableValueFlags: FlagSet = Mutable | Method
/** Flags that express the variance of a type parameter. */
val VarianceFlags: FlagSet = Covariant | Contravariant
// ----- Creation flag sets ----------------------------------
/** Modules always have these flags set */
val ModuleValCreationFlags: FlagSet = ModuleVal | Lazy | Final | StableRealizable
/** Module classes always have these flags set */
val ModuleClassCreationFlags: FlagSet = ModuleClass | Final
/** Accessors always have these flags set */
val AccessorCreationFlags: FlagSet = Method | Accessor
/** Pure interfaces always have these flags */
val PureInterfaceCreationFlags: FlagSet = Trait | NoInits | PureInterface
/** The flags of the self symbol */
val SelfSymFlags: FlagSet = Private | Local | Deferred
/** The flags of a class type parameter */
val ClassTypeParamCreationFlags: FlagSet =
TypeParam | Deferred | Private | Local
/** Packages and package classes always have these flags set */
val PackageCreationFlags: FlagSet =
Module | Package | Final | JavaDefined
// ----- Retained flag sets ----------------------------------
/** Flags that are passed from a type parameter of a class to a refinement symbol
* that sets the type parameter */
val RetainedTypeArgFlags: FlagSet = VarianceFlags | Protected | Local
/** Flags that can apply to both a module val and a module class, except those that
* are added at creation anyway
*/
val RetainedModuleValAndClassFlags: FlagSet =
AccessFlags | Package | Case |
Synthetic | JavaDefined | JavaStatic | Artifact |
Lifted | MixedIn | Specialized | ConstructorProxy | Invisible | Erased
/** Flags that can apply to a module val */
val RetainedModuleValFlags: FlagSet = RetainedModuleValAndClassFlags |
Override | Final | Method | Implicit | Given | Lazy |
Accessor | AbsOverride | StableRealizable | Captured | Synchronized | Transparent
/** Flags that can apply to a module class */
val RetainedModuleClassFlags: FlagSet = RetainedModuleValAndClassFlags | Enum
/** Flags retained in term export forwarders */
val RetainedExportTermFlags = Infix | Given | Implicit | Inline | Transparent | Erased | HasDefaultParams | NoDefaultParams | ExtensionMethod
/** Flags retained in parameters of term export forwarders */
val RetainedExportTermParamFlags = Given | Implicit | Erased | HasDefault | Inline
val MandatoryExportTermFlags = Exported | Method | Final
/** Flags retained in type export forwarders */
val RetainedExportTypeFlags = Infix
/** Flags that apply only to classes */
val ClassOnlyFlags = Sealed | Open | Abstract.toTypeFlags
// ------- Other flag sets -------------------------------------
val NotConcrete: FlagSet = AbsOverride | Deferred
val AbstractFinal: FlagSet = Abstract | Final
val AbstractOverride: FlagSet = Abstract | Override
val AbstractSealed: FlagSet = Abstract | Sealed
val AbstractOrTrait: FlagSet = Abstract | Trait
val EffectivelyOpenFlags = Abstract | JavaDefined | Open | Scala2x | Trait
val AccessorOrDeferred: FlagSet = Accessor | Deferred
val PrivateAccessor: FlagSet = Accessor | Private
val AccessorOrSynthetic: FlagSet = Accessor | Synthetic
val JavaOrPrivateOrSynthetic: FlagSet = Artifact | JavaDefined | Private | Synthetic
val PrivateOrSynthetic: FlagSet = Artifact | Private | Synthetic
val EnumCase: FlagSet = Case | Enum
val CovariantLocal: FlagSet = Covariant | Local // A covariant type parameter
val ContravariantLocal: FlagSet = Contravariant | Local // A contravariant type parameter
val EffectivelyErased = ConstructorProxy | Erased
val ConstructorProxyModule: FlagSet = ConstructorProxy | Module
val DefaultParameter: FlagSet = HasDefault | Param // A Scala 2x default parameter
val DeferredInline: FlagSet = Deferred | Inline
val DeferredMethod: FlagSet = Deferred | Method
val DeferredOrLazy: FlagSet = Deferred | Lazy
val DeferredOrLazyOrMethod: FlagSet = Deferred | Lazy | Method
val DeferredOrTermParamOrAccessor: FlagSet = Deferred | ParamAccessor | TermParam // term symbols without right-hand sides
val DeferredOrTypeParam: FlagSet = Deferred | TypeParam // type symbols without right-hand sides
val DeferredGivenFlags: FlagSet = Deferred | Given | HasDefault
val EnumValue: FlagSet = Enum | StableRealizable // A Scala enum value
val FinalOrInline: FlagSet = Final | Inline
val FinalOrModuleClass: FlagSet = Final | ModuleClass // A module class or a final class
val EffectivelyFinalFlags: FlagSet = Final | Private
val ExcludedForwarder: Flags.FlagSet = Specialized | Lifted | Protected | JavaStatic | Private | Macro | ConstructorProxy
val FinalOrSealed: FlagSet = Final | Sealed
val GivenOrImplicit: FlagSet = Given | Implicit
val GivenOrImplicitVal: FlagSet = GivenOrImplicit.toTermFlags
val GivenMethod: FlagSet = Given | Method
val LazyGiven: FlagSet = Given | Lazy
val InlineOrProxy: FlagSet = Inline | InlineProxy // An inline method or inline argument proxy */
val InlineMethod: FlagSet = Inline | Method
val InlineImplicitMethod: FlagSet = Implicit | InlineMethod
val InlineParam: FlagSet = Inline | Param
val InlineByNameProxy: FlagSet = InlineProxy | Method
val JavaEnum: FlagSet = JavaDefined | Enum // A Java enum trait
val JavaEnumValue: FlagSet = JavaDefined | EnumValue // A Java enum value
val StaticProtected: FlagSet = JavaDefined | JavaStatic | Protected // Java symbol which is `protected` and `static`
val JavaModule: FlagSet = JavaDefined | Module // A Java companion object
val JavaInterface: FlagSet = JavaDefined | NoInits | Trait
val JavaProtected: FlagSet = JavaDefined | Protected
val MethodOrLazy: FlagSet = Lazy | Method
val MutableOrLazy: FlagSet = Lazy | Mutable
val MethodOrLazyOrMutable: FlagSet = Lazy | Method | Mutable
val LiftedMethod: FlagSet = Lifted | Method
val LocalParam: FlagSet = Local | Param
val LocalParamAccessor: FlagSet = Local | ParamAccessor | Private
val PrivateLocal: FlagSet = Local | Private // private[this]
val ProtectedLocal: FlagSet = Local | Protected
val MethodOrModule: FlagSet = Method | Module
val ParamForwarder: FlagSet = Method | ParamAccessor | StableRealizable // A parameter forwarder
val PrivateMethod: FlagSet = Method | Private
val StableMethod: FlagSet = Method | StableRealizable
val NoInitsInterface: FlagSet = NoInits | PureInterface
val NoInitsTrait: FlagSet = NoInits | Trait // A trait that does not need to be initialized
val ValidForeverFlags: FlagSet = Package | Permanent | Scala2SpecialFlags
val TermParamOrAccessor: FlagSet = Param | ParamAccessor
val PrivateParamAccessor: FlagSet = ParamAccessor | Private
val PrivateOrArtifact: FlagSet = Private | Artifact
val ClassTypeParam: FlagSet = Private | TypeParam
val Scala2Trait: FlagSet = Scala2x | Trait
val SyntheticArtifact: FlagSet = Synthetic | Artifact
val SyntheticCase: FlagSet = Synthetic | Case
val SyntheticMethod: FlagSet = Synthetic | Method
val SyntheticModule: FlagSet = Synthetic | Module
val SyntheticOpaque: FlagSet = Synthetic | Opaque
val SyntheticParam: FlagSet = Synthetic | Param
val SyntheticTermParam: FlagSet = Synthetic | TermParam
val SyntheticTypeParam: FlagSet = Synthetic | TypeParam
}