Parsing With Haskell (Part 2): Parsing With Happy
Parsing with Haskell (Part 2): Parsing with Happy This is the second and final part of the Parsing with Haskell series. If you haven’t read the first part yet, you can find it here. In this article, we will use Happy to generate a parser that will consume the token stream from the lexer created by Alex. As with Alex, our goal is to provide enough information to be productive. Hence, we won’t cover all the features of […]