| 117 | struct TraceResult |
| 118 | { |
| 119 | string ToString() const |
| 120 | { |
| 121 | ostringstream os; |
| 122 | os << "parse: [" << strings::JoinStrings(m_parse, ", ") << "], "; |
| 123 | os << "is_category: " << boolalpha << m_isCategory; |
| 124 | return os.str(); |
| 125 | } |
| 126 | |
| 127 | vector<string> m_parse; |
| 128 | bool m_isCategory = false; |
nothing calls this directly
no test coverage detected