Skip to content
Snippets Groups Projects
Commit 4920f845 authored by Erwan Jahier's avatar Erwan Jahier
Browse files

Fix the string rule (that was very weird).

parent 58d00c8d
No related branches found
No related tags found
No related merge requests found
......@@ -245,7 +245,7 @@ rule lexer = parse
}
(* une chaine quelconque *)
| "\"" ['_' 'A'-'Z' 'a'-'z'] ['A'-'Z' '(' ')' '$' '/' 'a'-'z' '.' '-' '_'] * "\""
| "\"" ['A'-'Z' '(' ')' '$' '/' 'a'-'z' '.' '-' '_'] * "\""
{
let lxm = Lxm.make_string lexbuf in
TK_STRING (lxm)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment