Browse thread
camlp4 stream parser syntax
[
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: | -- (:) |
| From: | Matthieu Wipliez <mwipliez@y...> |
| Subject: | Re : Re : [Caml-list] Re: camlp4 stream parser syntax |
> > Well I just duplicated Static to Static1 (and added Camlp4.Struct.Grammar
> where necessary) and replaced:
> > module Structure = Camlp4.Struct.Grammar.Structure.Make Lexer;
> > by:
>
> Something like this you mean? I must be doing something wrong as I never see my
> printout from 'using'.
In the parser, did you replace
module Gram = Camlp4.Struct.Grammar.Static.Make(Lexer)
by
module Gram = Static1.Make(Lexer)
Because it works fine for me.
Cheers,
Matthieu