| 34 | |
| 35 | inline void setReturnClause(ReturnClause clause) { returnClause = std::move(clause); } |
| 36 | inline bool hasReturnClause() const { return returnClause.has_value(); } |
| 37 | inline const ReturnClause* getReturnClause() const { |
| 38 | DASSERT(returnClause.has_value()); |
| 39 | return &returnClause.value(); |
no outgoing calls
no test coverage detected