| 98 | } |
| 99 | |
| 100 | Expr NewBoolConst(ExprId id, bool value) { |
| 101 | Constant constant; |
| 102 | constant.set_bool_value(value); |
| 103 | return NewConst(id, std::move(constant)); |
| 104 | } |
| 105 | |
| 106 | Expr NewIntConst(ExprId id, int64_t value) { |
| 107 | Constant constant; |
no outgoing calls
no test coverage detected