Extract typing.

This commit is contained in:
Daniel Kirchner
2020-04-14 10:59:28 +02:00
parent accd8d7667
commit 3af43fd350
25 changed files with 461 additions and 340 deletions
+2
View File
@@ -248,6 +248,8 @@ struct IdentifierAnnotation: ExpressionAnnotation
{
/// Referenced declaration, set at latest during overload resolution stage.
Declaration const* referencedDeclaration = nullptr;
/// List of possible declarations it could refer to (can contain duplicates).
std::vector<Declaration const*> candidateDeclarations;
/// List of possible declarations it could refer to.
std::vector<Declaration const*> overloadedDeclarations;
};