Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
187 views

Is there an haskell EDSL for writing lexers?

Mixing the lexer and parsing phases in one phase sometimes makes Parsec parsers less readable but also slows them down. One solution is to use Alex as a tokenizer and then Parsec as a parser of the ...
6
votes
2answers
458 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 ...
4
votes
3answers
326 views

Regular expressions versus lexical analyzers in Haskell

I'm getting started with Haskell and I'm trying to use the Alex tool to create regular expressions and I'm a little bit lost; my first inconvenience was the compile part. How I have to do to compile a ...
3
votes
1answer
107 views

Can't match single character in Alex grammar

I finally got back to fleshing out a GitCommit message mode that I want to add to YI but I seem to missing something basic. I can't seem to match a single character in a grammar, all my rules only ...
2
votes
1answer
156 views

Request for comments on simple Alex parser

I've been looking at contributing code to the Haskell Yi editor and I want to add Git commit and rebase modes to it. I've never done anything with Alex before so I decided to write a commit parser ...
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
154 views

How to match newlines with Alex/Haskell

I borrowed the example presented here http://www.haskell.org/alex/doc/html/introduction.html I am trying to make an interpreter for numerical expressions. (literals only, no variables) And I want to ...
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 ...
-1
votes
1answer
56 views

tilde accent marks alex

I'm building a compiler in Haskell. I have problems parsing characters with tilde accent marks. I'm using alex 2.3.3. I can't find a solution. Please help. Cheers, SM.