Re: C++: Pointer to non-const std::string in position and location should be a pointer to const std::string
Yuriy Solodkyy <[email protected]>
| Newsgroups | gmane.comp.parsers.bison.bugs |
|---|---|
| Message-ID | <[email protected]> |
I’m surviving with pull parser for now with early bail out, but ideally would have loved not to have to gather the source first. Does Bison have a GitHub repo or something? How do you guys collaborate on it? I have to admit I’ve yet never worked on any GNU projects, but given enough personal need in push parser I might look at it one day. > On Jun 27, 2020, at 01:40, Akim Demaille <[email protected]> wrote: > > > >> Le 27 juin 2020 à 10:33, Yuriy Solodkyy <[email protected]> a écrit : >> >> Hi Akim! >> >> Speaking of Bison documentation, I was wondering if there is a way to generate a C++ push parser? It seems like that is not the case at the moment, although I don’t see why given that all the machinery already exists for C. Can you confirm this please? > > Yes, I'm sorry to admit we don't have push support in C++, yet. Contributions are most welcome! Would you like to give it a shot? > > Victor has started working on this, but he was busy lately, I don't know if he made progress about it. (And the machinery will be somewhat different from that of C, it's not straightforward to port it. The Java implementation seems a better model, being already OO). > > Cheers!