| 194 | } |
| 195 | |
| 196 | std::vector<Declaration const*> NameAndTypeResolver::nameFromCurrentScope(ASTString const& _name, bool _includeInvisibles) const |
| 197 | { |
| 198 | ResolvingSettings settings; |
| 199 | settings.recursive = true; |
| 200 | settings.alsoInvisible = _includeInvisibles; |
| 201 | return m_currentScope->resolveName(_name, std::move(settings)); |
| 202 | } |
| 203 | |
| 204 | Declaration const* NameAndTypeResolver::pathFromCurrentScope(std::vector<ASTString> const& _path) const |
| 205 | { |
no test coverage detected