File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed
src/dotty/annotation/internal Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ package dotty.annotation.internal
22
33import scala .annotation .Annotation
44
5+ /** An annotation to record a Scala2 pickled alias.
6+ * @param aliased A TermRef pointing to the aliased field.
7+ */
58class Alias (aliased : Any ) extends Annotation {
69
710}
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package dotty.annotation.internal
22
33import scala .annotation .Annotation
44
5+ /** An annotation to tag Java annotation default values */
56class AnnotationDefault extends Annotation {
67
78}
Original file line number Diff line number Diff line change @@ -2,6 +2,5 @@ package dotty.annotation.internal
22
33import scala .annotation .Annotation
44
5- class Child [T ] extends Annotation {
6-
7- }
5+ /** An annotation to indicate a child class or object of the annotated class. */
6+ class Child [T ] extends Annotation
Original file line number Diff line number Diff line change @@ -2,4 +2,9 @@ package dotty.annotation.internal
22
33import scala .annotation .Annotation
44
5+ /** An annotation produced by desugaring to indicate that a
6+ * sequence is a repeated parameter. I.e.
7+ *
8+ * T* is expanded by Desugar to Seq[T] @Repeated
9+ */
510final class Repeated () extends Annotation
You can’t perform that action at this time.
0 commit comments