1. 32
  1.  

  2. 2

    I think bottom up parsers have actually a lot of potential if you try to build them like you would build a PEG parser, by focusing on the programmatic building of the grammar and integrating runtime rule modification. The best thing about bottom up is that you can precaculate and cache a lot for relatively cheap. It’s great to see people exploring this field again.

    1. 1

      Wow, I didn’t know you could do that.