| 1303 | } |
| 1304 | |
| 1305 | bool DUContext::shouldSearchInParent(SearchFlags flags) const |
| 1306 | { |
| 1307 | return (parentContext() && parentContext()->type() == DUContext::Helper && (flags & InImportedParentContext)) |
| 1308 | || !(flags & InImportedParentContext); |
| 1309 | } |
| 1310 | |
| 1311 | const Use* DUContext::uses() const |
| 1312 | { |
no test coverage detected