caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Romain Bardou <romain.bardou@inria.fr>
To: caml-list@inria.fr
Subject: Re: [Caml-list] Ocaml parser reports strange syntax-error position.
Date: Wed, 05 Jun 2013 11:52:49 +0200	[thread overview]
Message-ID: <51AF0A71.9020302@inria.fr> (raw)
In-Reply-To: <51AF09A1.2040002@gmail.com>

Le 05/06/2013 11:49, Matej Kosik a écrit :
> Hi,
> 
> If I type this to the Ocaml toplevel:
> 
>   Printf "%d" 10;;
> 
> The actual problem is that instead of "Printf" I should have typed "Printf.printf".
> 
> However, the parser complains about literal "10".
> 
> Is this the expected behavior or a bug (in parser's error-reporting routines)?
> 

I guess it believes Printf here is not a module name (there is no dot)
but a constructor (it is a capitalized identifier). But the syntax for
constructors is either:
  A
  A x
  A (x1, ..., xn)
In other words, if A is a constructor, "A x y" is never a valid
expression. It could also be a type error ("A x" is not a function, it
cannot be applied) but apparently it is catched by the parser.

So I would say it is the expected behavior, but that it could be
improved, as all error messages.

-- 
Romain Bardou

  reply	other threads:[~2013-06-05  9:52 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-05  9:49 Matej Kosik
2013-06-05  9:52 ` Romain Bardou [this message]
2013-07-09 20:50   ` Goswin von Brederlow

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=51AF0A71.9020302@inria.fr \
    --to=romain.bardou@inria.fr \
    --cc=caml-list@inria.fr \
    /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).