Return the function declaration for this expression.
(self)
| 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.""" |
| 354 | name = _ast_decl_name(self._ast) |
| 355 | return FuncDeclRef(name, (), self._sort) |
| 356 | |
| 357 | def sexpr(self) -> str: |
| 358 | """Return S-expression representation.""" |