| 62 | ABSL_MUST_USE_RESULT Expr NewNullConst() { return NewNullConst(NextId()); } |
| 63 | |
| 64 | ABSL_MUST_USE_RESULT Expr NewBoolConst(bool value) { |
| 65 | return NewBoolConst(NextId(), value); |
| 66 | } |
| 67 | |
| 68 | ABSL_MUST_USE_RESULT Expr NewIntConst(int64_t value) { |
| 69 | return NewIntConst(NextId(), value); |
no outgoing calls