Fixes binary operators not properly handling indexers
This commit is contained in:
parent
160ed60cc2
commit
0279859637
|
@ -390,6 +390,8 @@ namespace Upsilon.Parser
|
|||
left = ParsePrimaryExpression();
|
||||
}
|
||||
|
||||
left = HandleComplexExpression(left);
|
||||
|
||||
while (true)
|
||||
{
|
||||
var precedence = Current.Kind.BinaryOperatorPrecedence();
|
||||
|
|
Loading…
Reference in New Issue