I've been using fslex/fsyacc to generate a tentative grammar to comprehend semi-structured data. After getting some guidance to look into a GLR parser for the problem space, my search for a tool that can used as frictionlessly as possible from within a Visual Studio toolchain has turned up nothing.

Are there any (preferably OSS) tools built in .Net to generate a GLR parser?

link|improve this question

72% accept rate
feedback

2 Answers

Part of the Oslo CTP released by Microsoft was the "M" language, and part of that was "M Grammar" which is a GLR parser generator.

It's not clear to me that M is available at this point, and it was probably never usable in production systems, but it was indeed a GLR parser generator/engine. See Don Box's comment here about it.

link|improve this answer
That fact that after being drowned in M hype for over three years, there was not a single mention of it during PDC 2010 (nor during the last couple of months) speaks volumes. They had already dumped several of the cool parts (e.g. Quadrant). AFAICT, they had the exact same problem the users had: they never figured out WTH M was supposed to be/do. – Jörg W Mittag Nov 9 '10 at 3:03
@Jörg W Mittag: Don Box recently wrote (2010/09/22) that "We are continuing our investment in this technology and will share our plans for productization once they are concrete." See blogs.msdn.com/b/modelcitizen/archive/2010/09/22/… – Mark Nov 9 '10 at 15:20
feedback
up vote 1 down vote accepted

There's this, which is fairly new, but it works.

http://himeparser.codeplex.com/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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