vote up 1 vote down star

The translator could be in boost::spirit too. I couldn't find any in the Internet. Maybe I should make one?

flag

75% accept rate

1 Answer

vote up 1 vote down

From the spirit introduction:

Expression templates allow us to approximate the syntax of Extended Backus-Normal Form (EBNF) completely in C++.

So you can almost write plain EBNF, no need for a translator.

I'm not so familiar with spirit to know how exactly the syntax is different, but if the differences of spirit C++ EBNF and real EBNF are minor a simple sed script may suffice.
If not you are right, you could write a spirit parser that understands EBNF and then use the AST to create C++ code that is a spirit representation of that AST.

link|flag
For large EBNFs (grammatica.percederberg.net/grammar/asn1/…), even thou it's almost identical, it's still a pain. It's not necessary to have one, but it would be helpful. – chila May 29 at 1:01
If your Grammar is that large, you probably don't want to use Spirit for it ;) – BillyONeal May 31 at 4:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.