Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
badw-it
DHParser
Commits
adb4e399
Commit
adb4e399
authored
Jun 20, 2021
by
Eckhart Arnold
Browse files
memoization optimization finished
parent
a07443ee
Changes
1
Show whitespace changes
Inline
Side-by-side
DHParser/ebnf.py
View file @
adb4e399
...
...
@@ -677,7 +677,7 @@ comments work as expected::
word S word S word
>>> syntax_tree = extended_parser('What{check this again!}is work?')
>>> print(syntax_tree.errors[0])
1:
5
: Error (1040): Parser "
EXCLAMATION_MARK
" did not match: »
{check this again!}i ...
«
1:
24
: Error (1040): Parser "
pure_S
" did not match: »
is work?
«
The last error was to be expected, because we did not allow comments
to serve a substitutes for whitespace. The error message might not be
...
...
@@ -982,14 +982,9 @@ this location) as the cause of the failure. This approach often works
surprisingly well for locating errors, unless the grammar relies to
heavy on regular exrpessions capturing large chunks of text, because
the error location works only on the level of the parsing expression
grammar not at that of the atomic regular expressions. It is not quite
a suitable for explaining the error or pinpointing which parser
really was the culprit.
As a remedy, DHParser allows to annotate a point in a sequence from
which onward any failure to match raises a parsing error instead of
just reporting a non-match. Cosinder a parser for simple arithmetic
expressions, for example:
grammar not at that of the atomic regular expressions. To see how
farthest fail word, consider a parser for simple arithmetic
expressions::
>>> arithmetic_grammar = '''@ literalws = right
... arithmetic = expression EOF
...
...
@@ -1000,8 +995,21 @@ expressions, for example:
... number = /
\\\\
d+/~
... EOF = /$/'''
>>> arithmetic = create_parser(arithmetic_grammar, "arithmetic")
>>> terms = arithmetic('(2 - 3
)
* (4 + 5)')
>>> terms = arithmetic('(2 - 3 * (4 + 5)')
>>> print(terms.errors[0])
1:17: Error (1040): Parser "term->:Text" did not match: »«
>>> terms = arithmetic('(2 - 3) * ( )')
>>> print(terms.errors[0])
1:13: Error (1040): Parser "number->:RegExp" did not match: »)«
The "farthest fail"-method is not quite as suitable for explaining
the error or pinpointing which parser really was the culprit.
As a remedy, DHParser allows to annotate a point in a sequence from
which onward any failure to match raises a parsing error instead of
just reporting a non-match::
Fail-tolerant Parsing
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment