@@ -14,72 +14,72 @@ trait FlagSet {
14
14
/** Is this symbol `sealed` */
15
15
def isSealed : Boolean
16
16
17
- /** Is this symbol `case`. */
17
+ /** Is this symbol `case` */
18
18
def isCase : Boolean
19
19
20
- /** Is this symbol `implicit`. */
20
+ /** Is this symbol `implicit` */
21
21
def isImplicit : Boolean
22
22
23
- /** Is this symbol `erased`. */
23
+ /** Is this symbol `erased` */
24
24
def isErased : Boolean
25
25
26
- /** Is this symbol `lazy`. */
26
+ /** Is this symbol `lazy` */
27
27
def isLazy : Boolean
28
28
29
- /** Is this symbol `override`. */
29
+ /** Is this symbol `override` */
30
30
def isOverride : Boolean
31
31
32
- /** Is this symbol `inline`. */
32
+ /** Is this symbol `inline` */
33
33
def isInline : Boolean
34
34
35
- /** Is this symbol markes as a macro. An inline method containing toplevel splices. */
35
+ /** Is this symbol markes as a macro. An inline method containing toplevel splices */
36
36
def isMacro : Boolean
37
37
38
- /** Is this symbol marked as static. Mapped to static Java member. */
38
+ /** Is this symbol marked as static. Mapped to static Java member */
39
39
def isStatic : Boolean
40
40
41
41
/** Is this symbol an object or its class (used for a ValDef or a ClassDef extends Modifier respectively) */
42
42
def isObject : Boolean
43
43
44
- /** Is this symbol a trait. */
44
+ /** Is this symbol a trait */
45
45
def isTrait : Boolean
46
46
47
- /** Is this symbol local. Used in conjunction with Private/private[Type] to mean private[this] extends Modifier proctected[this]. */
47
+ /** Is this symbol local? Used in conjunction with Private/private[Type] to mean private[this] extends Modifier proctected[this] */
48
48
def isLocal : Boolean
49
49
50
- /** Was this symbol generated by Scala compiler. */
50
+ /** Was this symbol generated by Scala compiler */
51
51
def isSynthetic : Boolean
52
52
53
- /** Is this symbol to be tagged Java Synthetic. */
53
+ /** Is this symbol to be tagged Java Synthetic */
54
54
def isArtifact : Boolean
55
55
56
- /** Is this symbol a `var` (when used on a ValDef). */
56
+ /** Is this symbol a `var` (when used on a ValDef) */
57
57
def isMutable : Boolean
58
58
59
- /** Is this symbol a getter or a setter. */
59
+ /** Is this symbol a getter or a setter */
60
60
def isFieldAccessor : Boolean
61
61
62
- /** Is this symbol a getter for case class parameter. */
62
+ /** Is this symbol a getter for case class parameter */
63
63
def isCaseAcessor : Boolean
64
64
65
- /** Is this symbol a type parameter marked as covariant `+`. */
65
+ /** Is this symbol a type parameter marked as covariant `+` */
66
66
def isCovariant : Boolean
67
67
68
- /** Is this symbol a type parameter marked as contravariant `-`. */
68
+ /** Is this symbol a type parameter marked as contravariant `-` */
69
69
def isContravariant : Boolean
70
70
71
- /** Was this symbol imported from Scala2.x. */
71
+ /** Was this symbol imported from Scala2.x */
72
72
def isScala2X : Boolean
73
73
74
- /** Is this symbol a method with default parameters. */
74
+ /** Is this symbol a method with default parameters */
75
75
def isDefaultParameterized : Boolean
76
76
77
- /** Is this symbol member that is assumed to be stable. */
77
+ /** Is this symbol member that is assumed to be stable */
78
78
def isStable : Boolean
79
79
80
- /** Is this symbol a parameter. */
80
+ /** Is this symbol a parameter */
81
81
def isParam : Boolean
82
82
83
- /** Is this symbol a parameter accessor. */
83
+ /** Is this symbol a parameter accessor */
84
84
def isParamAccessor : Boolean
85
85
}
0 commit comments