targets property

Iterable<AST> get targets

Returns all targets of this assignment.

Implementation

Iterable<AST> get targets => List<Object?>.from(
      getAttribute("targets"),
    )
        .cast<PythonClassInterface<PythonFfiDelegate<Object?>, Object?>>()
        .map(AST.from);