IELR(1) parser generator insights (branchtaken.com)
from armchair_progamer@programming.dev to programming_languages@programming.dev on 15 Jul 2024 16:12
https://programming.dev/post/16894233

IELR(1) a niche LR(1) parser generator. More well-known are LALR and Pager’s “minimal” LR(1) algorithm (PGM(1)), but IELR(1) can generate a parser for certain grammars that those cannot. This post by the same authors goes into more detail about the problem IELR(1) solves.

The linked post is about implementing IELR(1), in particular the challenges the authors faced doing so.

They’ve implemented IERL(1) in their own parser generator, hocc, that they’re writing for their own language, Hemlock: “a systems programming language that emphasizes reliable high performance parallel computation” that is (or at least very similar to) an ML dialect.

#programming_languages

threaded - newest

mryessir@lemmy.sdf.org on 15 Jul 2024 16:43 collapse

I’m stuck now for almost a year to implement a parser generator to my liking.

You just gave me a push and I appreciate it!!