Working on #98 : Persist attribute value when global_truth is set to true

This commit is contained in:
2021-08-03 11:26:57 +02:00
parent e69745adc8
commit c798c2c570
22 changed files with 496 additions and 106 deletions
+2 -2
View File
@@ -11,10 +11,10 @@ class BnfDefinitionParser(BaseParser):
"""
Parser used to transform literal into ParsingExpression
example :
a | b, c -> Sequence(OrderedChoice(a, b) ,c)
a | b c -> Sequence(OrderedChoice(a, b), c)
'|' (pipe) is used for OrderedChoice
',' (comma) is used for Sequence
' ' space is used for Sequence
'?' (question mark) is used for Optional
'*' (star) is used for ZeroOrMore
'+' (plus) is used for OneOrMore