[
[ "let";
var =
- [ LPAREN; id = IDENT; SYMBOL ":"; typ = term; RPAREN ->
- Ast.Ident(id,None), Some typ
+ [ LPAREN; id = single_arg; SYMBOL ":"; typ = term; RPAREN ->
+ id, Some typ
| id = IDENT; ty = OPT [ SYMBOL ":"; typ = term -> typ] ->
Ast.Ident(id,None), ty ];
SYMBOL <:unicode<def>> (* ≝ *);
with
| Stdpp.Exc_located (floc, Stream.Error msg) ->
raise (HExtlib.Localized (floc, Parse_error msg))
+ | Stdpp.Exc_located (floc, HExtlib.Localized (_,exn)) ->
+ raise (HExtlib.Localized (floc, (Parse_error (Printexc.to_string exn))))
| Stdpp.Exc_located (floc, exn) ->
raise (HExtlib.Localized (floc, (Parse_error (Printexc.to_string exn))))