Tagged Questions

Happy is a YACC-like parse generator for Haskell

learn more… | top users | synonyms

15
votes
4answers
602 views

What is the advantage of using a parser generator like happy as opposed to using parser combinators?

To learn how to write and parse a context-free grammar I want to choose a tool. For Haskell, there are two big options: Happy, which generates a parser from a grammar description and *Parsec, which ...
6
votes
2answers
457 views

Are there any tutorials on building a simple interpreter using Alex + Happy?

I'm working on a school project where I have to build an interpreter for a simple language using Alex + Happy in Haskell. After looking through the documentation I understand most of it, but would ...
5
votes
0answers
106 views

Overriding “Internal Happy Error” - notHappyAtAll

I am using Happy to generate a parser. I have found that when I give it tokens which match part of the grammar at a lower level than the top level (such as giving it an expression on it's own, that ...
5
votes
2answers
162 views

Grammar ambiguity: why? (problem is: “(a)” vs “(a-z)”)

So I am trying to implement a pretty simple grammar for one-line statements: # Grammar c : Character c [a-z0-9-] (v) : Vowel (= [a,e,u,i,o]) (c) : ...
4
votes
1answer
92 views

What's the %% for in Happy?

I'm building a parser with Happy and noticed this is the online documentation: Like yacc, we include %% here, for no real reason. %% There must be a reason though, even if it's trivial. ...
3
votes
2answers
118 views

What goes in between { and } when writing BNF?

I'm having some trouble with BNF. I can't tell what seems to be the standard way of doing things (if there is one), and whether or not there are types like char or int or whatever already built in. ...
3
votes
4answers
911 views

Generate Fortran 77 parser from a yacc grammar using Happy (Haskell)

I have stumbled upon the following F77 yacc grammar: http://yaxx.cvs.sourceforge.net/viewvc/yaxx/yaxx/fortran/fortran.y?revision=1.3&view=markup. How can I make a Fortran 77 parser out of this ...
2
votes
1answer
181 views

Nested parsers in happy / infinite loop?

I'm trying to write a parser for a simple markup language with happy. Currently, I'm having some issues with infinit loops and nested elements. My markup language basicly consists of two elements, ...
2
votes
1answer
503 views

Using alex/happy with Cabal

I'm writing a compiler for a class I'm taking. The class isn't specifically Haskell but I'm using Haskell to write my compiler and interpreter. I have a cabal package setup to hopefully make it easy ...
2
votes
1answer
141 views

How do we keep multiple semantic values during parsing with Happy/Haskell

I'm trying to build a simple lexer/parser with Alex/Happy in Haskell, and I would like to keep some localisation information from the text file into my final AST. I managed to build a lexer using ...
2
votes
3answers
203 views

Parser in Happy

I'm trying to do a parser with Happy (Haskell Tool) But I'm getting a message error: "unused ruled: 11 and unused terminals: 10" and I don't know what this means. In other hand I'm really not sure ...
1
vote
1answer
115 views

How to get nice syntax error messages with Happy?

I am currently playing with the happy parser generator. Other parser generators can give nice messages like "unexpected endline, expected 'then'". With happy I just get the current Tokens and the ...
1
vote
1answer
126 views

Happy parser rule order

I ran into a case using Happy (a Haskell parsing package) where the order of seemingly independent rules affects its behavior in a strange way. { module Parser where } %name constFoo %name constBar ...
0
votes
1answer
79 views

Parsing switch statements with Happy

So, I'm trying to parse code containg switch statements like this function (a : Boolean) equals (b : Boolean) : Boolean { switch (a) { case true: switch (b) { ...
0
votes
1answer
82 views

Happy/YACC reducing when it should shift

I'm working on a parser and I'm really frustrated. In the language, we can have an expression like: new int[3][][] or new int[3] Most of it parses correctly, except for the empty arrays at the ...