superFwdArg
scala.annotation.meta.superFwdArg
class superFwdArg(p: String, n: String) extends StaticAnnotation
This internal annotation encodes arguments passed to annotation superclasses. Example:
class a(x: Int) extends Annotation
class b(y: Int) extends a(y) // the compiler adds `@superFwdArg("x", "y")` to class b
Attributes
- Source
- superArg.scala
- Graph
-
- Supertypes
In this article