Tagged Questions
1
vote
1answer
152 views
ocaml parser and lexer
Hi I have the 3 files nano.ml which is the type, and a paser and lexer file. I have no idea how to write the rules for parser, and i try to write the rules but it gives me erro saying that does not ...
2
votes
1answer
116 views
Parse a string by Lexing.from_string
I have implemented this example, and it works well.
Now, I want to read from a string instead of reading from stdin, so I change the calc.ml:
let _ =
try
let lexbuf = Lexing.from_string "1+3" ...
2
votes
1answer
72 views
Translate one term differently in one program
I try to make a frontend for a kind of programs... there are 2 particularities:
1) When we meet a string beginning with =, I want to read the rest of the string as a formula instead of a string ...
3
votes
2answers
80 views
Parse further an expression in a special case
At the moment my frontend can parse such normal expressions as 123, "abcd", "=123", "=TRUE+123"... The following are related code:
(* in `syntax.ml`: *)
and expression =
| E_integer of int
| ...
0
votes
1answer
85 views
A space is needed to let line_terminator be recognized
In my lexer.mll I have declared EOS as follows:
let line_feed = '\n' (* %x200A *)
let carriage_return = '\r' (* %x200D *)
let line_terminator = line_feed | carriage_return | carriage_return line_feed ...
2
votes
2answers
113 views
External definitions for ocamllex regular expressions
I have implemented the usual combination of lexer/parser/pretty-printer for reading-in/printing a type in my code. I find there is redundancy among the lexer and the pretty-printer when it comes to ...
5
votes
2answers
154 views
Define <LINE-START> and <LINE-END> in a lexer
I am trying to implement a front end which attempts to conform to a subset of this specification.
It seems that many things are clearly defined in the reference, except <LINE-START> and ...
2
votes
2answers
112 views
Regular expression for “not belonging to” in OCaml
I would like to define non-line-termination-character = <any character other than %x000D / %x000A> in lexer.mll. I have tried let non_line_termination_character = [^('\x0D' '\x0A')], but it gave ...
0
votes
2answers
110 views
Represent a character in lexer
I am writing a lexer in OCaml for a small language, I have a part of its grammar as follows:
tab-character = %x0009
eom-character = %x0019
space-character = %x0020
underscore = %x005F
single-quote = ...
7
votes
3answers
926 views
OCaml + Menhir Compiling/Writing
I'm a complete newbie when it comes to OCaml. I've only recently started using the language (about 2 weeks ago), but unfortunately, I've been tasked with making a syntax analyzer (parser + lexer, ...
1
vote
1answer
99 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 = [^ ' ' ...