Fixed shadowing declaration
This commit is contained in:
parent
7a4e588793
commit
ad8b4fdeaa
|
@ -2618,9 +2618,9 @@ body {} // six
|
|||
{
|
||||
advance();
|
||||
node.hasRight = true;
|
||||
auto ident = expect(TokenType.identifier);
|
||||
if (ident is null) return null;
|
||||
node.right = *ident;
|
||||
auto id = expect(TokenType.identifier);
|
||||
if (id is null) return null;
|
||||
node.right = *id;
|
||||
}
|
||||
return node;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue