Fixed BNF parsing issues

This commit is contained in:
2020-03-10 18:28:11 +01:00
parent b5d56e13f9
commit c9acfa99a1
4 changed files with 77 additions and 15 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ class NameNode(DefaultParserNode):
if not first:
name += " "
name += token.value[1:-1] if token.type == TokenKind.STRING else token.value
name += token.value[1:-1] if token.type == TokenKind.STRING else str(token.value)
first = False
return name