| 78 | inline constexpr std::string_view KW_OPERATOR_ALL{BUILD_KW(KW_OPERATOR)}; |
| 79 | |
| 80 | consteval std::string_view KwWithSpaceBefore(std::string_view kw) |
| 81 | { |
| 82 | kw.remove_suffix(1); |
| 83 | |
| 84 | return kw; |
| 85 | } |
| 86 | |
| 87 | consteval std::string_view KwWithSpaceAfter(std::string_view kw) |
| 88 | { |
nothing calls this directly
no outgoing calls
no test coverage detected