5 ms·
Hmm. So for people who don't know how to use Unix/flex/yacc? This is just reinventing an existing wheel.
by gopowerranger 11y ago
Hmm. So for people who don't know how to use Unix/flex/yacc?
This is just reinventing an existing wheel.
- gh02t 11y agoI dunno that that's a fair criticism... by that same argument you could say yacc/bison is for people who don't know how to use C to write a parser. This looks like an attempt to do something along the lines of Parsec from Haskell, but in C. Edit, because it looks like we hit the max reply depth: It's not like this is ever going to seriously replace Bison, I think it's just someone trying a different approach. It's not like flex/yacc/bison are the absolutely most perfect lexer/parser that can possibly exist. If people didn't try and reinvent the wheel every now and then, we'd still have stone wheels.
- gopowerranger 11y agoBut doing this in C already exists and works well. I don't understand the point of it. Although, in this day and age, rather than use the standard Unix toolset, people invent their own tools as if they are new. "Make" versus "npm" for example.
- slimsag 11y agoDo you really think Make could replace npm?
- gopowerranger 11y agoMake existed long before npm and make is the basis of all our package management in our company and our operating systems.
- sklogic 11y agoRecursive descent parsing can handle different class of languages from what yacc or bison can do. It is possible to build lexerless parsers this way (so scrap your old useless flex).
- gopowerranger 11y agoSo your trying to say this thing does a better job?
- gh02t 11y agoI seriously doubt it ever will, but you have to start somewhere. I've used Parsec before and it is certainly nice. Honestly I think it's a bit weird to try and shoehorn it into C, but hey maybe something interesting will come out of it. What bugs me is the suggestion that just because bison works well enough, nobody should try and make a new parser generator in C. They will probably not take over the wold, bison is big and battle tested after all, but bison is itself also a replacement for older tools. And hey, maybe mpc here will succeed and revolutionize parsing for the best; then we can have this discussion again in 20 years about someone attempting to replace it.
- gopowerranger 11y agoWhat you just said is this new thing isn't as good, and probably never will be, but you imply we should use it, even though the current tools are better. See my complaint? If they are going to introduce a new tool, it must be better than the current tool. It's not and it's worse and not as mature.
- sklogic 11y agoThis one may not be that good. But any Packrat-based library is definitely much better than anything Yacc can offer.
- gopowerranger 11y agoSaid no one who knows what they're talking about.
- gh02t 11y agoI didn't say you should use it, nor would I. Only that it isn't pointless/futile to attempt. No tool will be as mature as bison or what have you until it has also been battle tested for 25+ years, but 25 years ago bison was also new and upcoming. Not to mention that this is not even really a parser generator like bison or yacc... it's a combinator library. It's an entirely different way to write a parser. It's like me saying Python shouldn't exist because I know how to write C.
- MichaelMoser123 11y agoIn yacc the generator will tell you about shift reduce conflicts. Once you have debugged the grammar the parser is likely to work. With parser combinators you have no such assurance - you don't know if your grammar has loops, the parser might get stuck easily while parsing. However for a simple and regular input language like sexpr everything is fine.
- gopowerranger 11y agoSo your trying to say this thing does a better job?
- sklogic 11y agoIn recursive descent you simply do not have any shift/reduce conflicts.
- MichaelMoser123 11y agoyou can have left recursion, or implicit left recursion in your recursive descent grammar, if you have then the parser gets stuck while parsing a clause that contains left recursion.
- sklogic 11y agoFirstly, this have nothing to do with shift/reduce. Secondly, you can safely handle left-recursive grammars in Packrat (which, in turn, can be implemented with combinators).
- MichaelMoser123 11y agoI didn't say that left recursion has anything to do with shift reduce conflicts. Please read again.
- sklogic 11y agoI see, yes, you mentioned loops earlier. Anyway, it is not a problem for combinator-based parsing, just use Packrat with a left-recursive extension [1] [1] http://www.vpri.org/pdf/tr2007002_packrat.pdf http://www.vpri.org/pdf/tr2007002_packrat.pdf
- mveety 11y agoI know how to use lex/yacc. This is much better as lex/yacc are, frankly, miserable to use.