Parser no longer skips token after an argument level phrase

This commit is contained in:
2022-09-03 12:54:41 -04:00
parent f592e1cc43
commit 257d22b6f7
3 changed files with 1 additions and 3 deletions

View File

@@ -291,7 +291,6 @@ func (argument *Argument) ToString (indent int, breakLine bool) (output string)
stringValue = "^"
case lexer.TokenKindBinaryXorAssignment:
stringValue = "^="
}
output += doIndent(indent, stringValue)
if breakLine { output += "\n" }