Skip to content

Commit

Permalink
Added new gitignore rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanja-S committed Mar 15, 2023
1 parent 8e748a7 commit 1ee98c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.vscode/*

# Ignore the TestRunner build files
TestRunner/.build/*
TestRunner/.build/*
.test/
1 change: 0 additions & 1 deletion src/compiler/parser/Parser.java
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,6 @@ private void parsePostfixExpression_1(ListIterator<Symbol> lexicalSymbol) {
if (currentLexicalSym.tokenType != TokenType.OP_RBRACKET)
Report.error(currentLexicalSym.position,
"Following expressions a right closing square bracket is required");
lexicalSymbol.previous();
parsePostfixExpression(lexicalSymbol);
}

Expand Down
2 changes: 1 addition & 1 deletion test3.pns
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fun prestejCrke (i:integer): integer = {
while (i < j[100/2]):
while (i < j[2]):
{
for i = 10, i < 100, i + 1:
{
Expand Down

0 comments on commit 1ee98c4

Please sign in to comment.