caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Gerd Stolpmann <info@gerd-stolpmann.de>
To: Matej Kosik <5764c029b688c1c0d24a2e97cd764f@gmail.com>
Cc: Alain Frisch <alain.frisch@lexifi.com>,
	OCaml <caml-list@inria.fr>,
	 Gabriel Scherer <gabriel.scherer@gmail.com>
Subject: Re: [Caml-list] exception Foo = Bar.Baz
Date: Tue, 26 Jul 2016 14:13:41 +0200	[thread overview]
Message-ID: <1469535221.26353.12.camel@e130.lan.sumadev.de> (raw)
In-Reply-To: <c254b710-b1eb-1123-585c-cd7bdab5fb7d@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 4419 bytes --]

Am Dienstag, den 26.07.2016, 11:02 +0200 schrieb Matej Kosik:
> On 07/25/2016 10:02 PM, Alain Frisch wrote:
> > On 25/07/2016 16:34, Matej Kosik wrote:
> >> That means that, at present, one can put something like:
> >>
> >>   exception Foo = Bar.Baz
> >>
> >> inside a _module structure_.
> >>
> >> I am currently wondering why we are not allowed (also) to put this into a _module signature_ ?
> >> Is this a deliberate decision (why?) or merely an omission?
> > 
> > What would be the use of putting that in a module signature instead of just "exception Foo"?
> 
> AFAIK, if I put:
> 
>   exception Foo
> 
> to some module signature, I am saying that:
> - a given module defines a *new* exception
> - a given module exports that new exception
> 
> That is not what I want to say, which is:
> - a given module defines an alternative name for some *existing* exception
> - a given module exports this new alternative name of an existing exception.

This is an interesting comment. I wonder from where this expectation
comes. In OCaml, exceptions are only values, not types. For other
values, we cannot assume that we get a new value, only because we find

val foo : t

in a signature.

Does this expectation come from other languages where exceptions are
usually classes (e.g. Java), and hence every exception defines a new
subtype? I'm just wondering.

Gerd


> ──────────────────────────────────────────────────────────────────────────────
> 
> The motivation is the same as in case of our ability to define alternative names to existing
> - sum-types
> - record-types
> where we can put something like
> 
>   type a = B.c = C1 | C2 | ... | Cn
>   (* where C1, C2, C2, ..., Cn are all the constructors of sum-type B.c *)
> 
> or
> 
>   type a = B.c = {f1:t1; f2:t2; ... ; fn:tn}
>   (* where f1,...,fn are all the fields of the record-type B.c *)
> 
> in module signature. Recently, I realized that this is actually useful but I lack this kind of mechanism for exceptions.
> There may be workarounds but I would like to understand why this kind of mechanism is not available
> (is this intentional or just nobody needed it so there was no motivation to implement it).
> 
> ──────────────────────────────────────────────────────────────────────────────
> 
> Some more (although embarassing) details:
> 
> At present, individual files of Coq plugins are compiled with the following options passed to ocamlc
> 
>   -I config -I lib -I kernel -I kernel/byterun -I library -I proofs -I tactics -I pretyping -I interp -I stm -I toplevel -I parsing -I printing -I intf -I engine -I ltac -I tools -I tools/coqdoc -I
> plugins/omega -I plugins/romega -I plugins/micromega -I plugins/quote -I plugins/setoid_ring -I plugins/extraction -I plugins/fourier -I plugins/cc -I plugins/funind -I plugins/firstorder -I
> plugins/derive -I plugins/rtauto -I plugins/nsatz -I plugins/syntax -I plugins/decl_mode -I plugins/btauto -I plugins/ssrmatching -I "/home/me/.opam/4.02.3/lib/camlp5"
> 
> and I am currently trying to whether it is possible to compile them instead with just something like:
> 
>   -I lib -I API -I $THE_PLUGIN_DIRECTORY
> 
> where API/API.mli is the thing I am trying to (1) identify
> 
>   https://github.com/matej-kosik/coq/blob/API/API/API.mli
>   https://github.com/matej-kosik/coq/blob/API/API/API.ml
> 
> if I succeed, then (2) clean up, then (3) document.
> 
> Obviously, in the API, I do not want to define new exceptions, only aliases to existing ones.
> (so that plugins can catch the relevant exceptions not fake ones)
> 
> > (This could perhaps allow the compiler to report more pattern as being useless, but this is of limit
> > benefit.)
> 

-- 
------------------------------------------------------------
Gerd Stolpmann, Darmstadt, Germany    gerd@gerd-stolpmann.de
My OCaml site:          http://www.camlcity.org
Contact details:        http://www.camlcity.org/contact.html
Company homepage:       http://www.gerd-stolpmann.de
------------------------------------------------------------


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

      reply	other threads:[~2016-07-26 12:13 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-25 14:34 Matej Kosik
2016-07-25 20:02 ` Alain Frisch
2016-07-25 20:05   ` Gabriel Scherer
2016-07-26  9:36     ` Leo White
2016-07-26 12:37       ` Gabriel Scherer
2016-07-26 16:27         ` Alain Frisch
2016-07-26 16:32           ` Gabriel Scherer
2016-07-27  8:07             ` Alain Frisch
2016-07-27  8:27               ` Gabriel Scherer
2016-07-27  8:38                 ` Alain Frisch
2016-07-27  8:19           ` Leo White
2016-07-26  9:02   ` Matej Kosik
2016-07-26 12:13     ` Gerd Stolpmann [this message]

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=1469535221.26353.12.camel@e130.lan.sumadev.de \
    --to=info@gerd-stolpmann.de \
    --cc=5764c029b688c1c0d24a2e97cd764f@gmail.com \
    --cc=alain.frisch@lexifi.com \
    --cc=caml-list@inria.fr \
    --cc=gabriel.scherer@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).