AnnotatedExpression
data class AnnotatedExpression(val annotationSets: List<Node.Modifier.AnnotationSet>, val statement: Node.Statement, val supplement: NodeSupplement = NodeSupplement()) : Node.Expression, Node.WithAnnotationSets
AST node that represents an expression prefixed by annotation sets. The node corresponds to KtAnnotatedExpression.
Constructors
Link copied to clipboard
constructor(annotationSets: List<Node.Modifier.AnnotationSet>, statement: Node.Statement, supplement: NodeSupplement = NodeSupplement())
Properties
Link copied to clipboard
list of annotation sets.
Link copied to clipboard
statement annotated by annotationSets.
Link copied to clipboard
Supplemental data for the node.