Skip to content

Commit e3b9aa2

Browse files
committed
Adresse comments
1 parent 70d5839 commit e3b9aa2

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

library/src/scala/tasty/reflect/Core.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ trait Core {
124124
/** Workaround missing `|` types in Scala 2 to represent `Term | TypeTree` */
125125
type TermOrTypeTree /* Term | TypeTree */
126126

127-
/** Tree representing executable code written in the source */
127+
/** Tree representing code written in the source */
128128
type Tree
129129

130130
/** Tree representing a pacakage clause in the source code */

library/src/scala/tasty/reflect/FlagSet.scala

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -14,72 +14,72 @@ trait FlagSet {
1414
/** Is this symbol `sealed` */
1515
def isSealed: Boolean
1616

17-
/** Is this symbol `case`. */
17+
/** Is this symbol `case` */
1818
def isCase: Boolean
1919

20-
/** Is this symbol `implicit`. */
20+
/** Is this symbol `implicit` */
2121
def isImplicit: Boolean
2222

23-
/** Is this symbol `erased`. */
23+
/** Is this symbol `erased` */
2424
def isErased: Boolean
2525

26-
/** Is this symbol `lazy`. */
26+
/** Is this symbol `lazy` */
2727
def isLazy: Boolean
2828

29-
/** Is this symbol `override`. */
29+
/** Is this symbol `override` */
3030
def isOverride: Boolean
3131

32-
/** Is this symbol `inline`. */
32+
/** Is this symbol `inline` */
3333
def isInline: Boolean
3434

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 */
3636
def isMacro: Boolean
3737

38-
/** Is this symbol marked as static. Mapped to static Java member. */
38+
/** Is this symbol marked as static. Mapped to static Java member */
3939
def isStatic: Boolean
4040

4141
/** Is this symbol an object or its class (used for a ValDef or a ClassDef extends Modifier respectively) */
4242
def isObject: Boolean
4343

44-
/** Is this symbol a trait. */
44+
/** Is this symbol a trait */
4545
def isTrait: Boolean
4646

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] */
4848
def isLocal: Boolean
4949

50-
/** Was this symbol generated by Scala compiler. */
50+
/** Was this symbol generated by Scala compiler */
5151
def isSynthetic: Boolean
5252

53-
/** Is this symbol to be tagged Java Synthetic. */
53+
/** Is this symbol to be tagged Java Synthetic */
5454
def isArtifact: Boolean
5555

56-
/** Is this symbol a `var` (when used on a ValDef). */
56+
/** Is this symbol a `var` (when used on a ValDef) */
5757
def isMutable: Boolean
5858

59-
/** Is this symbol a getter or a setter. */
59+
/** Is this symbol a getter or a setter */
6060
def isFieldAccessor: Boolean
6161

62-
/** Is this symbol a getter for case class parameter. */
62+
/** Is this symbol a getter for case class parameter */
6363
def isCaseAcessor: Boolean
6464

65-
/** Is this symbol a type parameter marked as covariant `+`. */
65+
/** Is this symbol a type parameter marked as covariant `+` */
6666
def isCovariant: Boolean
6767

68-
/** Is this symbol a type parameter marked as contravariant `-`. */
68+
/** Is this symbol a type parameter marked as contravariant `-` */
6969
def isContravariant: Boolean
7070

71-
/** Was this symbol imported from Scala2.x. */
71+
/** Was this symbol imported from Scala2.x */
7272
def isScala2X: Boolean
7373

74-
/** Is this symbol a method with default parameters. */
74+
/** Is this symbol a method with default parameters */
7575
def isDefaultParameterized: Boolean
7676

77-
/** Is this symbol member that is assumed to be stable. */
77+
/** Is this symbol member that is assumed to be stable */
7878
def isStable: Boolean
7979

80-
/** Is this symbol a parameter. */
80+
/** Is this symbol a parameter */
8181
def isParam: Boolean
8282

83-
/** Is this symbol a parameter accessor. */
83+
/** Is this symbol a parameter accessor */
8484
def isParamAccessor: Boolean
8585
}

0 commit comments

Comments
 (0)