| 1277 | } |
| 1278 | |
| 1279 | bool MacroTree::GroupsExist() const |
| 1280 | { |
| 1281 | for (const auto ¯o : GetTopLevelMacros()) { |
| 1282 | if (macro->IsGroup()) { |
| 1283 | return true; |
| 1284 | } |
| 1285 | } |
| 1286 | return false; |
| 1287 | } |
| 1288 | |
| 1289 | void MacroTree::ExpandGroup(std::shared_ptr<Macro> item) const |
| 1290 | { |
no test coverage detected