| 45 | std::string FormatNullConstant() { return "null"; } |
| 46 | |
| 47 | std::string FormatBoolConstant(bool value) { |
| 48 | return value ? std::string("true") : std::string("false"); |
| 49 | } |
| 50 | |
| 51 | std::string FormatIntConstant(int64_t value) { return absl::StrCat(value); } |
| 52 |