attributes property

  1. @override
Iterable<Attribute> get attributes
override

Returns all attributes of this assignment.

Implementation

@override
Iterable<Attribute> get attributes => <AST>[target]
    .where(_isOfType("Attribute"))
    .map((AST e) => Attribute.from(e._classDelegate));