Skip to content

Commit

Permalink
Follow-up to #4137
Browse files Browse the repository at this point in the history
  • Loading branch information
mansellan committed Jul 21, 2018
1 parent 9d5f49a commit b05cf19
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Rubberduck.Parsing/Symbols/IdentifierReferenceResolver.cs
Expand Up @@ -735,8 +735,10 @@ public void Resolve(VBAParser.LineSpecialFormContext context)
{
ResolveDefault(expr);
}
ResolveTuple(context.tuple(0));
ResolveTuple(context.tuple(1));
foreach (var tuple in context.tuple())
{
ResolveTuple(tuple);
}
}

public void Resolve(VBAParser.CircleSpecialFormContext context)
Expand Down

0 comments on commit b05cf19

Please sign in to comment.