| 680 | } |
| 681 | |
| 682 | std::string FormatDoubleQuotedBytesLiteral(absl::string_view str) { |
| 683 | return absl::StrCat("b\"", EscapeBytes(str, false, '"'), "\""); |
| 684 | } |
| 685 | |
| 686 | absl::StatusOr<std::string> ParseIdentifier(absl::string_view str) { |
| 687 | if (!LexisIsIdentifier(str)) { |