Tagged Questions

ocamllex is the lexer generator for OCaml. It is based on lex (now better known as flex). It is used within the OCaml compiler, and thus, it is installed by the official OCaml distribution. ocamllex is powerful and nicely integrated within OCaml. For simple uses, a simple lexer generator is also ...

learn more… | top users | synonyms

5
votes
1answer
277 views

Lua long strings in fslex

I've been working on a Lua fslex lexer in my spare time, using the ocamllex manual as a reference. I hit a few snags while trying to tokenize long strings correctly. "Long strings" are delimited by ...
3
votes
1answer
259 views

Using Ocamllex for lexing strings (The Tiger Compiler)

I'm trying to follow Appel's "Modern Compiler Implementation in ML" and am writing the lexer using Ocamllex. The specification asks for the lexer to return strings after translating escape sequences. ...
3
votes
1answer
100 views

OCamllex matching beginning of line?

I am messing around writing a toy programming language in OCaml with ocamllex, and was trying to make the language sensitive to indentation changes, python-style, but am having a problem matching the ...
3
votes
1answer
219 views

Return multiple tokens in ocamllex

Is there any way to return multiple tokens in OCamlLex? I'm trying to write a lexer and parser for an indentation based language, and I would like my lexer to return multiple DEDENT tokens when it ...
1
vote
1answer
57 views

OCamllex syntax error

When defining some identifiers in the definition section of my lexer (as described at here), i'm trying to write something of the form: let op_char = ['+' '-' '*' '/'] let id_char = [^ ' ' ...
1
vote
1answer
187 views

Translation from Python to CIL(C Intermediate Language)

I have worked on the static analysis on Python source code recently. There is already a static analyzer written in Ocaml for CIL(C Intermediate Language) in our group. We want to reuse this analyzer, ...
1
vote
2answers
204 views

OCaml lex: doesn't work at all, whatsoever

I am at the end of my rope here. I cannot get anything to work in ocamllex, and it is driving me nuts. This is my .mll file: { open Parser } rule next = parse | (['a'-'z'] ['a'-'z']*) as id { ...