| 90 | } |
| 91 | |
| 92 | ABSL_MUST_USE_RESULT Expr NewStringConst(std::string value) { |
| 93 | return NewStringConst(NextId(), std::move(value)); |
| 94 | } |
| 95 | |
| 96 | ABSL_MUST_USE_RESULT Expr NewStringConst(absl::string_view value) { |
| 97 | return NewStringConst(NextId(), value); |
no outgoing calls
no test coverage detected