| 268 | } |
| 269 | |
| 270 | const char *Value::getString() const { |
| 271 | assert(ValueType::ddl_string == m_type); |
| 272 | return (const char *)m_data; |
| 273 | } |
| 274 | |
| 275 | void Value::setRef(Reference *ref) { |
| 276 | assert(ValueType::ddl_ref == m_type); |
no outgoing calls
no test coverage detected