A lexical analyser generator for Haskell
1
vote
1answer
54 views
How to tokenize a string with an embedded string?
I am learning how to use the Haskell lexical analyzer tool called Alex 1.
I am trying to implement a lexical analyzer for this string (an email "From:" header):
From: "John Doe" <john@doe.org>
...
3
votes
1answer
38 views
Alex right_ctx end-of-line ($) chokes on end of file
In Alex I have a rule that looks like this
^@ident\:$ {TLabel (init s)}
So, a single line that starts with an identifier followed by a colon and then the end of the line.
This works fine unless ...
5
votes
1answer
137 views
Are there any off-the-shelf solutions for lexical analysis in Haskell that allow for a run-time dynamic lexicon?
I'm working on a small Haskell project that needs to be able to lex a very small subset of strictly formed English in to tokens for semantic parsing. It's a very naïve natural language interface to a ...
0
votes
0answers
15 views
To enable line wrap in syntax highlighter?
I would like to enable code line wrap in Alex Gorbachev syntax highlighter.
Read a thread here to do it..
But I am not able to bring it into action.
Anyone knows how to?
2
votes
1answer
278 views
Haskell Alex - regex matches wrong string?
I'm trying to write lexer for an indentation-based grammar and I'm having trouble matching the indentation.
Here's my code:
{
module Lexer ( main ) where
import System.IO.Unsafe
}
%wrapper ...
4
votes
1answer
260 views
Haskell Alex - error in wrapper template
I'm trying to understand Alex and lexers in general but I'm having trouble to run my lexer.
I wrote lexers in "basic" and "posn" wrappers but I couldn't in "monad" wrapper. I think I have to use ...
2
votes
1answer
167 views
How to compile BNF Converter?
Did anyone succeed in building BNFC with ghc-7.2.1 and alex-3? I was trying to fix it manually, but there are lots of errors. Does anybody know where can I find some patches that will help me to get ...
-1
votes
1answer
174 views
[af]?lex regular expression difference
I don't know how to do this, and I've found no good resources online for how to perform this operation[.] I'm trying to take an annotated EBNF production rule which is a difference between two ...
0
votes
2answers
140 views
Haskell data type pattern matching in Alex
Suppose I have a data type in Haskell like this:
data Token = THEN AlexPosn
| ELSE AlexPosn
from Alex, I get that:
data AlexPosn = AlexPn !Int !Int !Int
deriving (Eq,Show)
I am ...
-1
votes
1answer
127 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.
9
votes
2answers
480 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 ...
3
votes
1answer
144 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
393 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 ...
5
votes
2answers
1k 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
2answers
237 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
195 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 ...
7
votes
4answers
1k 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
472 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 ...