File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
compiler/src/dotty/tools/dotc/core/tasty
tasty/src/dotty/tools/tasty Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -588,7 +588,7 @@ class TreeUnpickler(reader: TastyReader,
588
588
val isScala2MacroDefinedInScala3 = flags.is(Macro , butNot = Inline ) && flags.is(Erased )
589
589
ctx.owner match {
590
590
case cls : ClassSymbol if ! isScala2MacroDefinedInScala3 || cls == defn.StringContextClass =>
591
- // Enter all members of classes that are not Scala 2 macros or synthetic bean accessors .
591
+ // Enter all members of classes that are not Scala 2 macros.
592
592
//
593
593
// For `StringContext`, enter `s`, `f` and `raw`
594
594
// These definitions will be entered when defined in Scala 2. It is fine to enter them
Original file line number Diff line number Diff line change @@ -211,8 +211,8 @@ Standard-Section: "ASTs" TopLevelStat*
211
211
PARAMsetter -- The setter part `x_=` of a var parameter `x` which itself is pickled as a PARAM
212
212
PARAMalias -- Parameter is alias of a superclass parameter
213
213
EXPORTED -- An export forwarder
214
- OPEN
215
- INVISIBLE -- an open class
214
+ OPEN -- an open class
215
+ INVISIBLE -- invisible during typechecking
216
216
Annotation
217
217
218
218
Variance = STABLE -- invariant
@@ -473,9 +473,9 @@ object TastyFormat {
473
473
final val PARAMalias = 41
474
474
final val TRANSPARENT = 42
475
475
final val INFIX = 43
476
- final val EMPTYCLAUSE = 44
477
- final val SPLITCLAUSE = 45
478
- final val INVISIBLE = 46
476
+ final val INVISIBLE = 44
477
+ final val EMPTYCLAUSE = 45
478
+ final val SPLITCLAUSE = 46
479
479
480
480
// Cat. 2: tag Nat
481
481
You can’t perform that action at this time.
0 commit comments