| 99 | } |
| 100 | |
| 101 | std::string ValueRef::to_string() const { |
| 102 | if (!m_storage) { |
| 103 | return "<empty value>"; |
| 104 | } |
| 105 | return ssprintf( |
| 106 | "(%zu:%zu) %s", id(), storage()->m_id, storage()->to_string().c_str()); |
| 107 | } |
| 108 | |
| 109 | std::string ValueRef::raw_type() const { |
| 110 | if (!m_storage) { |
no outgoing calls
no test coverage detected