caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: "Till Varoquaux" <till.varoquaux@gmail.com>
To: "Nicolas Pouillard" <nicolas.pouillard@gmail.com>
Cc: "Jake Donham" <jake@donham.org>, caml-list <caml-list@inria.fr>
Subject: Re: [Caml-list] camlp4 parser accepts more than its grammar?
Date: Fri, 27 Jun 2008 09:42:19 +0100	[thread overview]
Message-ID: <9d3ec8300806270142y3a80c3deo47b2cf4dbaeddafe@mail.gmail.com> (raw)
In-Reply-To: <1214554558-sup-9348@ausone.inria.fr>

2008/6/27 Nicolas Pouillard <nicolas.pouillard@gmail.com>:
> Excerpts from Jake Donham's message of Thu Jun 26 23:10:20 +0200 2008:
>> Hi list,
>>
>> I expected the following program to fail with a parse error, but it
>> happily ignores the extra '+'. I would be grateful if someone could
>> point out what I'm doing wrong. Thanks,
>
> Nothing wrong from you, that's a camlp4 known bug (PR#4551, PR#4513...).
>
>> open Camlp4.PreCast;;
>>
>> let expr = Gram.Entry.mk "expr";;
>> let stmt = Gram.Entry.mk "stmt";;
>>
>> EXTEND Gram
>>   expr: [[
>>     x = expr; "+"; y = expr -> x + y
>>   | x = INT -> int_of_string x
>>   ]];
>>   stmt:
>>   [[ e = expr; ";"; `EOI -> e ]];
>> END;;
>>
>> prerr_endline (string_of_int (Gram.parse_string stmt Loc.ghost "2 + 1 + ;"))
>>
>
> --
> Nicolas Pouillard aka Ertai
>
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
>
>


Note that you might even have suprises when using the standard Ocaml
parser: I consider grammar more like a guideline then an actual
specification.

type t = A of int | false of float

Till


  reply	other threads:[~2008-06-27  8:42 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-26 21:10 Jake Donham
2008-06-27  8:29 ` [Caml-list] " Nicolas Pouillard
2008-06-27  8:42   ` Till Varoquaux [this message]
2008-07-01  0:01     ` Arthur Chan
2008-07-01  7:02       ` blue storm

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9d3ec8300806270142y3a80c3deo47b2cf4dbaeddafe@mail.gmail.com \
    --to=till.varoquaux@gmail.com \
    --cc=caml-list@inria.fr \
    --cc=jake@donham.org \
    --cc=nicolas.pouillard@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).