| 2143 | bool operator!() const { return !Equals(FieldPath{}); } |
| 2144 | |
| 2145 | bool IsFieldPath() const { return std::holds_alternative<FieldPath>(impl_); } |
| 2146 | bool IsName() const { return std::holds_alternative<std::string>(impl_); } |
| 2147 | bool IsNested() const { |
| 2148 | if (IsName()) return false; |
no outgoing calls
no test coverage detected