Returns whether the uses in the child should be a new uses-group
| 359 | |
| 360 | ///Returns whether the uses in the child should be a new uses-group |
| 361 | bool isNewGroup(DUContext* parent, DUContext* child) |
| 362 | { |
| 363 | if (parent->type() == DUContext::Other && child->type() == DUContext::Other) |
| 364 | return false; |
| 365 | else |
| 366 | return true; |
| 367 | } |
| 368 | |
| 369 | uint countUses(int usedDeclarationIndex, DUContext* context) |
| 370 | { |
no test coverage detected