Return list of all children of this expression.
(self)
| 346 | return _child_expr(children[i], self, i) |
| 347 | |
| 348 | def children(self) -> list[ExprRef]: |
| 349 | """Return list of all children of this expression.""" |
| 350 | return [_child_expr(c, self, i) for i, c in enumerate(_ast_children(self._ast))] |
| 351 | |
| 352 | def decl(self) -> FuncDeclRef: |
| 353 | """Return the function declaration for this expression.""" |