Comment by remywang

10 hours ago

One cool factoid about PEGs is that it is an open problem if they can parse all context free languages.

I think language designers in general have realized that there's nothing particularly virtuous about a programming language with a syntax that's hard to parse.

Go and Rust (and Pascal) have cleaned up C's awful legacy enough that they're parseable with LL(X) parsers that don't have scary corner cases or polynomial behavior.