| 56 | } // namespace |
| 57 | |
| 58 | bool LexisIsReserved(absl::string_view text) { |
| 59 | absl::call_once(reserved_keywords_once_flag, InitializeReservedKeywords); |
| 60 | return reserved_keywords->find(text) != reserved_keywords->end(); |
| 61 | } |
| 62 | |
| 63 | bool LexisIsIdentifier(absl::string_view text) { |
| 64 | if (text.empty()) { |