| 2165 | } |
| 2166 | |
| 2167 | const FieldPath* field_path() const { |
| 2168 | return IsFieldPath() ? &std::get<FieldPath>(impl_) : NULLPTR; |
| 2169 | } |
| 2170 | const std::string* name() const { |
| 2171 | return IsName() ? &std::get<std::string>(impl_) : NULLPTR; |
| 2172 | } |
nothing calls this directly
no test coverage detected