allAssigns property
Iterable<AssignBase>
get
allAssigns
Returns all flattened children of any type of assignment.
Implementation
Iterable<AssignBase> get allAssigns sync* {
yield* assigns;
yield* augAssigns;
yield* annAssigns;
}