-
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
negative character classes produce an ABNF output that kgt does not parse #317
Comments
Ah thank you! I think this is valid ABNF output, and re(1) is doing the right thing here (although of course it could be written more compactly without the subtraction). However kgt doesn't implement subtraction. It really ought to give a more helpful error message than "syntax error". The reason it's not implemented, is that subtraction for CFGs in general isn't well defined! It's bewildering that it's part of the ABNF spec. Any suggestions for how to proceed? |
Not a clue. You know a lot more about all of this than I do, I just stumbled on this as I was messing around. |
Sorry for potentially making this worse, but isn't subtraction only defined in ISO EBNF, rather than ABNF? If so, that would mean there's both an issue in libfsm for using subtraction in ABNF output, and an issue in kgt for not handling subtraction in ISO EBNF input. For the libfsm side: the libfsm parsers only generate trivial subtractions where both the LHS and RHS can only ever match a single character, right? If so, would it make sense to (re)define the subtraction operator to have that as a hard requirement? The printers could then make use of that to transform them to avoid the subtraction by rewriting |
This is tricky, because the AST node allows for subtracting sub-trees in general. The AST also allows unicode ranges here. @hvdijk you're right that we do only construct 8-bit values and we could emit this as a positive-only set. but I don't like special-casing this given the more general AST. Also I couldn't find a way to remove that AST node (it's there because of SQL99's dialect, which has explicit syntax for subtraction). But if there's a way to not have it in the first place, I'd much prefer that. Other ideas? |
This doesn't help for #317, but whatever the solution is there, asserting about it is the wrong thing to do. Spotted by @classabbyamp, thank you
Not sure if this should be here or on katef/kgt.
When converting a regex that includes a negative character class to ABNF form, it generates the output fine, but when passing this to
kgt
, it fails with1:11: Syntax error: expected production rule separator
Minimal Example:
The text was updated successfully, but these errors were encountered: