Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Once again just don't worry about it
Browse files Browse the repository at this point in the history
  • Loading branch information
DemonExposer committed Jul 15, 2022
1 parent e10fa45 commit 2645d02
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Parser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ private static Token SymmetricBinaryOperatorParse(Token[] line, int i, List<Trie
int startIndex = i + (isRightBound ? 1 : -1);
int j = GetTopElementIndex(line, startIndex, isRightBound);
if (j == startIndex && !isRightBound) {
j = startIndex;
int numBrackets = 0;
while (numBrackets != 0 || j >= 0 && line[j] is not BinaryOperator) {
if (line[j].Str == "(")
Expand Down

0 comments on commit 2645d02

Please sign in to comment.