| 92 | } |
| 93 | |
| 94 | SourceFormatterStyle* findStyle(QStringView styleName) |
| 95 | { |
| 96 | const auto it = m_styles.find(styleName); |
| 97 | return it == m_styles.end() ? nullptr : &it->second; |
| 98 | } |
| 99 | |
| 100 | template<typename StyleUser> |
| 101 | void forEachStyle(StyleUser callback) |
no test coverage detected