| 74 | } |
| 75 | |
| 76 | inline ObjectRef GetRef(const Object& object) { |
| 77 | auto ref = absl::get_if<ObjectRef>(&object.object); |
| 78 | return ref ? *ref : kInvalidObjectRef; |
| 79 | } |
| 80 | |
| 81 | inline const ObjectData* GetData(const Object& object) { |
| 82 | return absl::get_if<ObjectData>(&object.object); |
no outgoing calls
no test coverage detected