We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
~> cat q.abnf quoted-pair = "\" (%x00-09 / %x0B-0C / %x0E-7F)
~> ./abnf2pegtl q.abnf struct quoted_pair : pegtl::seq< pegtl::one< '\' >, pegtl::sor< pegtl::range< 0x00, 0x09 >, pegtl::range< 0x0B, 0x0C >, pegtl::range< 0x0E, 0x7F > > > {};
Note that "\" from abnf was converted to '\' with just one backslash, i.e. malformed char.
The text was updated successfully, but these errors were encountered:
3d74e23
Thanks for catching this, I guess I really need to add some unit-tests before moving it from example/ to some more official place/state :)
example/
Sorry, something went wrong.
d-frey
No branches or pull requests
~> cat q.abnf
quoted-pair = "\" (%x00-09 / %x0B-0C / %x0E-7F)
~> ./abnf2pegtl q.abnf
struct quoted_pair : pegtl::seq< pegtl::one< '\' >, pegtl::sor< pegtl::range< 0x00, 0x09 >, pegtl::range< 0x0B, 0x0C >, pegtl::range< 0x0E, 0x7F > > > {};
Note that "\" from abnf was converted to '\' with just one backslash, i.e. malformed char.
The text was updated successfully, but these errors were encountered: