File tree 4 files changed +11
-3
lines changed
src/dotty/annotation/internal
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
2
2
3
3
import scala .annotation .Annotation
4
4
5
+ /** An annotation to record a Scala2 pickled alias.
6
+ * @param aliased A TermRef pointing to the aliased field.
7
+ */
5
8
class Alias (aliased : Any ) extends Annotation {
6
9
7
10
}
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package dotty.annotation.internal
2
2
3
3
import scala .annotation .Annotation
4
4
5
+ /** An annotation to tag Java annotation default values */
5
6
class AnnotationDefault extends Annotation {
6
7
7
8
}
Original file line number Diff line number Diff line change @@ -2,6 +2,5 @@ package dotty.annotation.internal
2
2
3
3
import scala .annotation .Annotation
4
4
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
2
2
3
3
import scala .annotation .Annotation
4
4
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
+ */
5
10
final class Repeated () extends Annotation
You can’t perform that action at this time.
0 commit comments