| 161 | // Returns the `null` literal. |
| 162 | std::string FormatNullConstant(); |
| 163 | inline std::string FormatNullConstant(std::nullptr_t) { |
| 164 | return FormatNullConstant(); |
| 165 | } |
| 166 | |
| 167 | // Formats `value` as a bool literal. |
| 168 | std::string FormatBoolConstant(bool value); |