Browse thread
[Caml-list] start conditions in ocamllex
- Sean Proctor
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2004-02-25 (18:07) |
From: | Sean Proctor <sproctor@c...> |
Subject: | [Caml-list] start conditions in ocamllex |
Hi, Has anyone thought of implementing start conditions for ocamllex? I have some problems that require keeping some state. They would be very simply solved with start conditions. I don't know much about the internals of ocamllex, but if the implementor of it thinks this is a good idea, I would be interested in writing this. I was thinking a good syntax would be something like: regexp where condition ex: condition startcondition rule entrypoint = parse 'a' { start startcondition; A_TOKEN } | 'a' where startcondition { finish startcondition; B_TOKEN } so a string of a's would give alternating A_TOKEN and B_TOKEN. Sean ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners