| 66 | } |
| 67 | |
| 68 | ABSL_MUST_USE_RESULT Expr NewIntConst(int64_t value) { |
| 69 | return NewIntConst(NextId(), value); |
| 70 | } |
| 71 | |
| 72 | ABSL_MUST_USE_RESULT Expr NewUintConst(uint64_t value) { |
| 73 | return NewUintConst(NextId(), value); |
no outgoing calls
no test coverage detected