1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* Automatique. Distributed only by permission. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
/* The parser definition */
|
|
|
|
|
|
|
|
%{
|
|
|
|
open Location
|
|
|
|
open Asttypes
|
|
|
|
open Longident
|
|
|
|
open Parsetree
|
|
|
|
|
|
|
|
let mktyp d =
|
|
|
|
{ ptyp_desc = d; ptyp_loc = symbol_loc() }
|
|
|
|
let mkpat d =
|
|
|
|
{ ppat_desc = d; ppat_loc = symbol_loc() }
|
|
|
|
let mkexp d =
|
|
|
|
{ pexp_desc = d; pexp_loc = symbol_loc() }
|
|
|
|
let mkmty d =
|
|
|
|
{ pmty_desc = d; pmty_loc = symbol_loc() }
|
1995-10-05 08:18:49 -07:00
|
|
|
let mksig d =
|
|
|
|
{ psig_desc = d; psig_loc = symbol_loc() }
|
1995-05-04 03:15:53 -07:00
|
|
|
let mkmod d =
|
|
|
|
{ pmod_desc = d; pmod_loc = symbol_loc() }
|
1995-10-05 08:18:49 -07:00
|
|
|
let mkstr d =
|
|
|
|
{ pstr_desc = d; pstr_loc = symbol_loc() }
|
1996-04-22 04:15:41 -07:00
|
|
|
let mkfield d =
|
|
|
|
{ pfield_desc = d; pfield_loc = symbol_loc() }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
let mkoperator name pos =
|
|
|
|
{ pexp_desc = Pexp_ident(Lident name); pexp_loc = rhs_loc pos }
|
|
|
|
|
1997-05-13 11:28:25 -07:00
|
|
|
let mkassert e =
|
|
|
|
let {loc_start = st; loc_end = en} = symbol_loc () in
|
|
|
|
let triple = mkexp (Pexp_tuple
|
1997-05-19 08:42:21 -07:00
|
|
|
[mkexp (Pexp_constant (Const_string !input_name));
|
|
|
|
mkexp (Pexp_constant (Const_int st));
|
|
|
|
mkexp (Pexp_constant (Const_int en))]) in
|
1997-05-13 11:28:25 -07:00
|
|
|
let ex = Ldot (Lident "Pervasives", "Assert_failure") in
|
1997-06-16 11:10:35 -07:00
|
|
|
let bucket = mkexp (Pexp_construct (ex, Some triple, false)) in
|
1997-05-13 11:28:25 -07:00
|
|
|
let ra = Ldot (Lident "Pervasives", "raise") in
|
|
|
|
let raiser = mkexp (Pexp_apply (mkexp (Pexp_ident ra), [bucket])) in
|
1997-06-16 11:10:35 -07:00
|
|
|
let un = mkexp (Pexp_construct (Lident "()", None, false)) in
|
1997-05-13 11:28:25 -07:00
|
|
|
match e with
|
1997-06-16 11:10:35 -07:00
|
|
|
| {pexp_desc = Pexp_construct (Lident "false", None, false) } -> raiser
|
1997-05-13 11:28:25 -07:00
|
|
|
| _ -> if !Clflags.noassert
|
|
|
|
then un
|
|
|
|
else mkexp (Pexp_ifthenelse (e, un, Some raiser))
|
|
|
|
;;
|
|
|
|
|
1997-10-14 06:17:48 -07:00
|
|
|
let mklazy e =
|
|
|
|
let f = mkexp (Pexp_ident (Ldot (Lident "Lazy", "_lazy"))) in
|
|
|
|
let void_pat = mkpat (Ppat_construct (Lident "()", None, false)) in
|
|
|
|
mkexp (Pexp_apply (f, [mkexp (Pexp_function ([void_pat, e]))]))
|
|
|
|
;;
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
let mkinfix arg1 name arg2 =
|
|
|
|
mkexp(Pexp_apply(mkoperator name 2, [arg1; arg2]))
|
|
|
|
|
|
|
|
let mkuminus name arg =
|
|
|
|
match arg.pexp_desc with
|
|
|
|
Pexp_constant(Const_int n) ->
|
|
|
|
mkexp(Pexp_constant(Const_int(-n)))
|
|
|
|
| Pexp_constant(Const_float f) ->
|
|
|
|
mkexp(Pexp_constant(Const_float("-" ^ f)))
|
|
|
|
| _ ->
|
|
|
|
mkexp(Pexp_apply(mkoperator ("~" ^ name) 1, [arg]))
|
|
|
|
|
|
|
|
let rec mklistexp = function
|
|
|
|
[] ->
|
1997-06-16 11:10:35 -07:00
|
|
|
mkexp(Pexp_construct(Lident "[]", None, false))
|
1995-05-04 03:15:53 -07:00
|
|
|
| e1 :: el ->
|
|
|
|
mkexp(Pexp_construct(Lident "::",
|
1997-06-16 11:10:35 -07:00
|
|
|
Some(mkexp(Pexp_tuple[e1; mklistexp el])),
|
|
|
|
false))
|
1995-05-04 03:15:53 -07:00
|
|
|
let rec mklistpat = function
|
|
|
|
[] ->
|
1997-06-16 11:10:35 -07:00
|
|
|
mkpat(Ppat_construct(Lident "[]", None, false))
|
1995-05-04 03:15:53 -07:00
|
|
|
| p1 :: pl ->
|
|
|
|
mkpat(Ppat_construct(Lident "::",
|
1997-06-16 11:10:35 -07:00
|
|
|
Some(mkpat(Ppat_tuple[p1; mklistpat pl])),
|
|
|
|
false))
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1995-10-05 08:18:49 -07:00
|
|
|
let mkstrexp e =
|
|
|
|
{ pstr_desc = Pstr_eval e; pstr_loc = e.pexp_loc }
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
let array_function str name =
|
|
|
|
Ldot(Lident str, (if !Clflags.fast then "unsafe_" ^ name else name))
|
|
|
|
|
|
|
|
let rec mkrangepat c1 c2 =
|
|
|
|
if c1 > c2 then mkrangepat c2 c1 else
|
|
|
|
if c1 = c2 then mkpat(Ppat_constant(Const_char c1)) else
|
|
|
|
mkpat(Ppat_or(mkpat(Ppat_constant(Const_char c1)),
|
|
|
|
mkrangepat (Char.chr(Char.code c1 + 1)) c2))
|
1996-04-22 04:15:41 -07:00
|
|
|
|
1997-08-22 01:55:41 -07:00
|
|
|
let unclosed opening_name opening_num closing_name closing_num =
|
|
|
|
raise(Syntaxerr.Error(Syntaxerr.Unclosed(rhs_loc opening_num, opening_name,
|
|
|
|
rhs_loc closing_num, closing_name)))
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
%}
|
|
|
|
|
|
|
|
/* Tokens */
|
|
|
|
|
1995-12-15 02:20:24 -08:00
|
|
|
%token AMPERAMPER
|
1995-05-04 03:15:53 -07:00
|
|
|
%token AMPERSAND
|
|
|
|
%token AND
|
|
|
|
%token AS
|
1997-05-13 11:28:25 -07:00
|
|
|
%token ASSERT
|
1995-05-04 03:15:53 -07:00
|
|
|
%token BAR
|
1995-12-15 02:20:24 -08:00
|
|
|
%token BARBAR
|
1995-05-04 03:15:53 -07:00
|
|
|
%token BARRBRACKET
|
|
|
|
%token BEGIN
|
|
|
|
%token <char> CHAR
|
1996-04-22 04:15:41 -07:00
|
|
|
%token CLASS
|
|
|
|
%token CLOSED
|
1995-05-04 03:15:53 -07:00
|
|
|
%token COLON
|
|
|
|
%token COLONCOLON
|
|
|
|
%token COLONEQUAL
|
1996-04-22 04:15:41 -07:00
|
|
|
%token COLONGREATER
|
1995-05-04 03:15:53 -07:00
|
|
|
%token COMMA
|
1996-04-22 04:15:41 -07:00
|
|
|
%token CONSTRAINT
|
1995-05-04 03:15:53 -07:00
|
|
|
%token DO
|
|
|
|
%token DONE
|
|
|
|
%token DOT
|
|
|
|
%token DOTDOT
|
|
|
|
%token DOWNTO
|
|
|
|
%token ELSE
|
|
|
|
%token END
|
|
|
|
%token EOF
|
|
|
|
%token EQUAL
|
|
|
|
%token EXCEPTION
|
|
|
|
%token EXTERNAL
|
|
|
|
%token FALSE
|
|
|
|
%token <string> FLOAT
|
|
|
|
%token FOR
|
|
|
|
%token FUN
|
|
|
|
%token FUNCTION
|
|
|
|
%token FUNCTOR
|
1996-04-30 07:53:58 -07:00
|
|
|
%token GREATER
|
1996-04-22 04:15:41 -07:00
|
|
|
%token GREATERRBRACE
|
1995-11-28 07:00:53 -08:00
|
|
|
%token GREATERRBRACKET
|
1995-05-04 03:15:53 -07:00
|
|
|
%token IF
|
|
|
|
%token IN
|
|
|
|
%token INCLUDE
|
1996-04-30 07:53:58 -07:00
|
|
|
%token <string> INFIXOP0
|
1995-05-04 03:15:53 -07:00
|
|
|
%token <string> INFIXOP1
|
|
|
|
%token <string> INFIXOP2
|
|
|
|
%token <string> INFIXOP3
|
|
|
|
%token <string> INFIXOP4
|
1996-04-22 04:15:41 -07:00
|
|
|
%token INHERIT
|
1995-05-04 03:15:53 -07:00
|
|
|
%token <int> INT
|
1997-10-14 06:17:48 -07:00
|
|
|
%token LAZY
|
1995-05-04 03:15:53 -07:00
|
|
|
%token LBRACE
|
1996-04-22 04:15:41 -07:00
|
|
|
%token LBRACELESS
|
1995-05-04 03:15:53 -07:00
|
|
|
%token LBRACKET
|
|
|
|
%token LBRACKETBAR
|
1995-11-28 07:00:53 -08:00
|
|
|
%token LBRACKETLESS
|
1996-04-30 07:53:58 -07:00
|
|
|
%token LESS
|
1995-05-04 03:15:53 -07:00
|
|
|
%token LESSMINUS
|
|
|
|
%token LET
|
|
|
|
%token <string> LIDENT
|
|
|
|
%token LPAREN
|
|
|
|
%token MATCH
|
1996-04-22 04:15:41 -07:00
|
|
|
%token METHOD
|
1995-05-04 03:15:53 -07:00
|
|
|
%token MINUSGREATER
|
|
|
|
%token MODULE
|
|
|
|
%token MUTABLE
|
1996-04-22 04:15:41 -07:00
|
|
|
%token NEW
|
1995-05-04 03:15:53 -07:00
|
|
|
%token OF
|
|
|
|
%token OPEN
|
|
|
|
%token OR
|
1995-11-09 03:08:48 -08:00
|
|
|
%token PARSER
|
1995-05-04 03:15:53 -07:00
|
|
|
%token <string> PREFIXOP
|
1996-04-22 04:15:41 -07:00
|
|
|
%token PRIVATE
|
1995-11-13 05:28:09 -08:00
|
|
|
%token QUESTION
|
1995-05-04 03:15:53 -07:00
|
|
|
%token QUOTE
|
|
|
|
%token RBRACE
|
|
|
|
%token RBRACKET
|
|
|
|
%token REC
|
|
|
|
%token RPAREN
|
|
|
|
%token SEMI
|
|
|
|
%token SEMISEMI
|
|
|
|
%token SHARP
|
|
|
|
%token SIG
|
|
|
|
%token STAR
|
|
|
|
%token <string> STRING
|
|
|
|
%token STRUCT
|
|
|
|
%token <string> SUBTRACTIVE
|
|
|
|
%token THEN
|
|
|
|
%token TO
|
|
|
|
%token TRUE
|
|
|
|
%token TRY
|
|
|
|
%token TYPE
|
|
|
|
%token <string> UIDENT
|
|
|
|
%token UNDERSCORE
|
|
|
|
%token VAL
|
1996-04-22 04:15:41 -07:00
|
|
|
%token VIRTUAL
|
1995-05-04 03:15:53 -07:00
|
|
|
%token WHEN
|
|
|
|
%token WHILE
|
|
|
|
%token WITH
|
|
|
|
|
|
|
|
/* Precedences and associativities. Lower precedences come first. */
|
|
|
|
|
|
|
|
%right prec_let /* let ... in ... */
|
1995-09-27 03:47:51 -07:00
|
|
|
%right prec_type_def /* = in type definitions */
|
1995-05-04 03:15:53 -07:00
|
|
|
%right SEMI /* e1; e2 (sequence) */
|
|
|
|
%right prec_fun prec_match prec_try /* match ... with ... */
|
|
|
|
%right prec_list /* e1; e2 (list, array, record) */
|
|
|
|
%right prec_if /* if ... then ... else ... */
|
|
|
|
%right COLONEQUAL LESSMINUS /* assignments */
|
|
|
|
%left AS /* as in patterns */
|
|
|
|
%left BAR /* | in patterns */
|
|
|
|
%left COMMA /* , in expressions, patterns, types */
|
|
|
|
%right prec_type_arrow /* -> in type expressions */
|
1995-12-15 02:20:24 -08:00
|
|
|
%right OR BARBAR /* or */
|
|
|
|
%right AMPERSAND AMPERAMPER /* & */
|
1996-04-30 07:53:58 -07:00
|
|
|
%left INFIXOP0 EQUAL LESS GREATER /* = < > etc */
|
|
|
|
%right INFIXOP1 /* @ ^ etc */
|
1995-05-04 03:15:53 -07:00
|
|
|
%right COLONCOLON /* :: */
|
|
|
|
%left INFIXOP2 SUBTRACTIVE /* + - */
|
|
|
|
%left INFIXOP3 STAR /* * / */
|
|
|
|
%right INFIXOP4 /* ** */
|
|
|
|
%right prec_unary_minus /* - unary */
|
|
|
|
%left prec_appl /* function application */
|
|
|
|
%right prec_constr_appl /* constructor application */
|
1997-05-11 14:48:21 -07:00
|
|
|
%left SHARP /* method call */
|
1997-06-13 08:53:14 -07:00
|
|
|
%left DOT /* record access, array access */
|
1995-05-04 03:15:53 -07:00
|
|
|
%right PREFIXOP /* ! */
|
|
|
|
|
|
|
|
/* Entry points */
|
|
|
|
|
|
|
|
%start implementation /* for implementation files */
|
|
|
|
%type <Parsetree.structure> implementation
|
|
|
|
%start interface /* for interface files */
|
|
|
|
%type <Parsetree.signature> interface
|
|
|
|
%start toplevel_phrase /* for interactive use */
|
|
|
|
%type <Parsetree.toplevel_phrase> toplevel_phrase
|
1995-11-01 10:12:24 -08:00
|
|
|
%start use_file /* for the #use directive */
|
|
|
|
%type <Parsetree.toplevel_phrase list> use_file
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
/* Entry points */
|
|
|
|
|
|
|
|
implementation:
|
1995-09-20 06:34:08 -07:00
|
|
|
structure EOF { $1 }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
interface:
|
|
|
|
signature EOF { List.rev $1 }
|
|
|
|
;
|
|
|
|
toplevel_phrase:
|
1997-03-04 02:21:07 -08:00
|
|
|
top_structure SEMISEMI { Ptop_def $1 }
|
1997-05-12 08:10:03 -07:00
|
|
|
| seq_expr SEMISEMI { Ptop_def[mkstrexp $1] }
|
1995-11-01 10:12:24 -08:00
|
|
|
| toplevel_directive SEMISEMI { $1 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| EOF { raise End_of_file }
|
|
|
|
;
|
1997-03-04 02:21:07 -08:00
|
|
|
top_structure:
|
|
|
|
structure_item { [$1] }
|
|
|
|
| structure_item top_structure { $1 :: $2 }
|
|
|
|
;
|
1995-11-01 10:12:24 -08:00
|
|
|
use_file:
|
|
|
|
use_file_tail { $1 }
|
1997-05-12 08:10:03 -07:00
|
|
|
| seq_expr use_file_tail { Ptop_def[mkstrexp $1] :: $2 }
|
1995-11-01 10:12:24 -08:00
|
|
|
;
|
|
|
|
use_file_tail:
|
|
|
|
EOF { [] }
|
|
|
|
| SEMISEMI EOF { [] }
|
1997-05-12 08:10:03 -07:00
|
|
|
| SEMISEMI seq_expr use_file_tail { Ptop_def[mkstrexp $2] :: $3 }
|
1995-11-01 10:12:24 -08:00
|
|
|
| SEMISEMI structure_item use_file_tail { Ptop_def[$2] :: $3 }
|
|
|
|
| SEMISEMI toplevel_directive use_file_tail { $2 :: $3 }
|
|
|
|
| structure_item use_file_tail { Ptop_def[$1] :: $2 }
|
|
|
|
| toplevel_directive use_file_tail { $1 :: $2 }
|
|
|
|
;
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
/* Module expressions */
|
|
|
|
|
|
|
|
module_expr:
|
|
|
|
mod_longident
|
|
|
|
{ mkmod(Pmod_ident $1) }
|
|
|
|
| STRUCT structure END
|
1995-09-20 06:34:08 -07:00
|
|
|
{ mkmod(Pmod_structure($2)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| STRUCT structure error
|
|
|
|
{ unclosed "struct" 1 "end" 3 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| FUNCTOR LPAREN UIDENT COLON module_type RPAREN MINUSGREATER module_expr
|
|
|
|
%prec prec_fun
|
|
|
|
{ mkmod(Pmod_functor($3, $5, $8)) }
|
1995-08-23 04:55:54 -07:00
|
|
|
| module_expr LPAREN module_expr RPAREN
|
|
|
|
{ mkmod(Pmod_apply($1, $3)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| module_expr LPAREN module_expr error
|
|
|
|
{ unclosed "(" 2 ")" 4 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| LPAREN module_expr COLON module_type RPAREN
|
|
|
|
{ mkmod(Pmod_constraint($2, $4)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LPAREN module_expr COLON module_type error
|
|
|
|
{ unclosed "(" 1 ")" 5 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| LPAREN module_expr RPAREN
|
|
|
|
{ $2 }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LPAREN module_expr error
|
|
|
|
{ unclosed "(" 1 ")" 3 }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
structure:
|
1995-09-20 06:34:08 -07:00
|
|
|
structure_tail { $1 }
|
1997-05-12 08:10:03 -07:00
|
|
|
| seq_expr structure_tail { mkstrexp $1 :: $2 }
|
1995-09-20 06:34:08 -07:00
|
|
|
;
|
|
|
|
structure_tail:
|
1995-05-04 03:15:53 -07:00
|
|
|
/* empty */ { [] }
|
1995-09-20 06:34:08 -07:00
|
|
|
| SEMISEMI { [] }
|
1997-05-12 08:10:03 -07:00
|
|
|
| SEMISEMI seq_expr structure_tail { mkstrexp $2 :: $3 }
|
1995-09-20 06:34:08 -07:00
|
|
|
| SEMISEMI structure_item structure_tail { $2 :: $3 }
|
|
|
|
| structure_item structure_tail { $1 :: $2 }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
structure_item:
|
1996-04-04 07:56:46 -08:00
|
|
|
LET rec_flag let_bindings
|
|
|
|
{ match $3 with
|
|
|
|
[{ppat_desc = Ppat_any}, exp] -> mkstr(Pstr_eval exp)
|
|
|
|
| _ -> mkstr(Pstr_value($2, List.rev $3)) }
|
1995-07-25 04:38:42 -07:00
|
|
|
| EXTERNAL val_ident COLON core_type EQUAL primitive_declaration
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mkstr(Pstr_primitive($2, {pval_type = $4; pval_prim = $6})) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| TYPE type_declarations
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mkstr(Pstr_type(List.rev $2)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| EXCEPTION UIDENT constructor_arguments
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mkstr(Pstr_exception($2, $3)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| MODULE UIDENT module_binding
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mkstr(Pstr_module($2, $3)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| MODULE TYPE ident EQUAL module_type
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mkstr(Pstr_modtype($3, $5)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| OPEN mod_longident
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mkstr(Pstr_open $2) }
|
1996-04-25 03:35:04 -07:00
|
|
|
| CLASS class_list END
|
1996-04-22 04:15:41 -07:00
|
|
|
{ mkstr(Pstr_class (List.rev $2)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| CLASS class_list error
|
|
|
|
{ unclosed "class" 1 "end" 3 }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
module_binding:
|
|
|
|
EQUAL module_expr
|
|
|
|
{ $2 }
|
|
|
|
| COLON module_type EQUAL module_expr
|
|
|
|
{ mkmod(Pmod_constraint($4, $2)) }
|
|
|
|
| LPAREN UIDENT COLON module_type RPAREN module_binding
|
|
|
|
{ mkmod(Pmod_functor($2, $4, $6)) }
|
|
|
|
;
|
|
|
|
|
|
|
|
/* Module types */
|
|
|
|
|
|
|
|
module_type:
|
|
|
|
mty_longident
|
|
|
|
{ mkmty(Pmty_ident $1) }
|
|
|
|
| SIG signature END
|
|
|
|
{ mkmty(Pmty_signature(List.rev $2)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| SIG signature error
|
|
|
|
{ unclosed "sig" 1 "end" 3 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| FUNCTOR LPAREN UIDENT COLON module_type RPAREN MINUSGREATER module_type
|
1995-10-03 07:06:01 -07:00
|
|
|
%prec prec_fun
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkmty(Pmty_functor($3, $5, $8)) }
|
1995-09-28 03:41:50 -07:00
|
|
|
| module_type WITH with_constraints
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkmty(Pmty_with($1, List.rev $3)) }
|
|
|
|
| LPAREN module_type RPAREN
|
|
|
|
{ $2 }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LPAREN module_type error
|
|
|
|
{ unclosed "(" 1 ")" 3 }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
signature:
|
|
|
|
/* empty */ { [] }
|
|
|
|
| signature signature_item { $2 :: $1 }
|
1995-09-20 06:34:08 -07:00
|
|
|
| signature signature_item SEMISEMI { $2 :: $1 }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
signature_item:
|
|
|
|
VAL val_ident COLON core_type
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mksig(Psig_value($2, {pval_type = $4; pval_prim = []})) }
|
1995-07-25 04:38:42 -07:00
|
|
|
| EXTERNAL val_ident COLON core_type EQUAL primitive_declaration
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mksig(Psig_value($2, {pval_type = $4; pval_prim = $6})) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| TYPE type_declarations
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mksig(Psig_type(List.rev $2)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| EXCEPTION UIDENT constructor_arguments
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mksig(Psig_exception($2, $3)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| MODULE UIDENT module_declaration
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mksig(Psig_module($2, $3)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| MODULE TYPE ident
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mksig(Psig_modtype($3, Pmodtype_abstract)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| MODULE TYPE ident EQUAL module_type
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mksig(Psig_modtype($3, Pmodtype_manifest $5)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| OPEN mod_longident
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mksig(Psig_open $2) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| INCLUDE module_type
|
1995-10-05 08:18:49 -07:00
|
|
|
{ mksig(Psig_include $2) }
|
1996-04-25 03:35:04 -07:00
|
|
|
| CLASS class_type_list END
|
1996-04-22 04:15:41 -07:00
|
|
|
{ mksig(Psig_class (List.rev $2)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
|
|
|
|
module_declaration:
|
|
|
|
COLON module_type
|
|
|
|
{ $2 }
|
|
|
|
| LPAREN UIDENT COLON module_type RPAREN module_declaration
|
|
|
|
{ mkmty(Pmty_functor($2, $4, $6)) }
|
|
|
|
;
|
|
|
|
|
|
|
|
/* Core expressions */
|
|
|
|
|
1997-05-12 08:10:03 -07:00
|
|
|
seq_expr:
|
|
|
|
| expr { $1 }
|
|
|
|
| expr SEMI { $1 }
|
|
|
|
| expr SEMI seq_expr { mkexp(Pexp_sequence($1, $3)) }
|
|
|
|
;
|
1995-05-04 03:15:53 -07:00
|
|
|
expr:
|
|
|
|
simple_expr
|
|
|
|
{ $1 }
|
|
|
|
| simple_expr simple_expr_list %prec prec_appl
|
|
|
|
{ mkexp(Pexp_apply($1, List.rev $2)) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| LET rec_flag let_bindings IN seq_expr %prec prec_let
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_let($2, List.rev $3, $5)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LET rec_flag let_bindings error %prec prec_let
|
|
|
|
{ unclosed "let" 1 "in" 4 }
|
1996-05-09 07:27:48 -07:00
|
|
|
| PARSER opt_pat opt_bar parser_cases %prec prec_fun
|
|
|
|
{ Pstream.cparser ($2, List.rev $4) }
|
1995-10-18 08:32:39 -07:00
|
|
|
| FUNCTION opt_bar match_cases %prec prec_fun
|
|
|
|
{ mkexp(Pexp_function(List.rev $3)) }
|
1995-09-11 01:09:22 -07:00
|
|
|
| FUN simple_pattern fun_def %prec prec_fun
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_function([$2, $3])) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| MATCH seq_expr WITH opt_bar match_cases %prec prec_match
|
1995-10-18 08:32:39 -07:00
|
|
|
{ mkexp(Pexp_match($2, List.rev $5)) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| MATCH seq_expr WITH PARSER opt_pat opt_bar parser_cases %prec prec_match
|
1996-05-09 07:27:48 -07:00
|
|
|
{ mkexp(Pexp_apply(Pstream.cparser ($5, List.rev $7), [$2])) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| TRY seq_expr WITH opt_bar match_cases %prec prec_try
|
1995-10-18 08:32:39 -07:00
|
|
|
{ mkexp(Pexp_try($2, List.rev $5)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| TRY seq_expr error %prec prec_try
|
|
|
|
{ unclosed "try" 1 "with" 3 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| expr_comma_list
|
|
|
|
{ mkexp(Pexp_tuple(List.rev $1)) }
|
|
|
|
| constr_longident simple_expr %prec prec_constr_appl
|
1997-06-16 11:10:35 -07:00
|
|
|
{ mkexp(Pexp_construct($1, Some $2, false)) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| IF seq_expr THEN expr ELSE expr %prec prec_if
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_ifthenelse($2, $4, Some $6)) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| IF seq_expr THEN expr %prec prec_if
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_ifthenelse($2, $4, None)) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| WHILE seq_expr DO seq_expr DONE
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_while($2, $4)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| WHILE seq_expr DO seq_expr error
|
|
|
|
{ unclosed "while" 1 "done" 5 }
|
1997-05-12 08:10:03 -07:00
|
|
|
| FOR val_ident EQUAL seq_expr direction_flag seq_expr DO seq_expr DONE
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_for($2, $4, $6, $5, $8)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| FOR val_ident EQUAL seq_expr direction_flag seq_expr DO seq_expr error
|
|
|
|
{ unclosed "for" 1 "done" 9 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| expr COLONCOLON expr
|
1997-06-16 11:10:35 -07:00
|
|
|
{ mkexp(Pexp_construct(Lident "::", Some(mkexp(Pexp_tuple[$1;$3])), false)) }
|
1996-04-30 07:53:58 -07:00
|
|
|
| expr INFIXOP0 expr
|
|
|
|
{ mkinfix $1 $2 $3 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| expr INFIXOP1 expr
|
|
|
|
{ mkinfix $1 $2 $3 }
|
|
|
|
| expr INFIXOP2 expr
|
|
|
|
{ mkinfix $1 $2 $3 }
|
|
|
|
| expr INFIXOP3 expr
|
|
|
|
{ mkinfix $1 $2 $3 }
|
|
|
|
| expr INFIXOP4 expr
|
|
|
|
{ mkinfix $1 $2 $3 }
|
|
|
|
| expr SUBTRACTIVE expr
|
|
|
|
{ mkinfix $1 $2 $3 }
|
|
|
|
| expr STAR expr
|
|
|
|
{ mkinfix $1 "*" $3 }
|
|
|
|
| expr EQUAL expr
|
|
|
|
{ mkinfix $1 "=" $3 }
|
1996-04-30 07:53:58 -07:00
|
|
|
| expr LESS expr
|
|
|
|
{ mkinfix $1 "<" $3 }
|
|
|
|
| expr GREATER expr
|
|
|
|
{ mkinfix $1 ">" $3 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| expr OR expr
|
|
|
|
{ mkinfix $1 "or" $3 }
|
1995-12-15 02:20:24 -08:00
|
|
|
| expr BARBAR expr
|
|
|
|
{ mkinfix $1 "||" $3 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| expr AMPERSAND expr
|
|
|
|
{ mkinfix $1 "&" $3 }
|
1995-12-15 02:20:24 -08:00
|
|
|
| expr AMPERAMPER expr
|
|
|
|
{ mkinfix $1 "&&" $3 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| expr COLONEQUAL expr
|
|
|
|
{ mkinfix $1 ":=" $3 }
|
|
|
|
| SUBTRACTIVE expr %prec prec_unary_minus
|
|
|
|
{ mkuminus $1 $2 }
|
|
|
|
| simple_expr DOT label_longident LESSMINUS expr
|
|
|
|
{ mkexp(Pexp_setfield($1, $3, $5)) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| simple_expr DOT LPAREN seq_expr RPAREN LESSMINUS expr
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_apply(mkexp(Pexp_ident(array_function "Array" "set")),
|
1996-04-22 04:15:41 -07:00
|
|
|
[$1; $4; $7])) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| simple_expr DOT LBRACKET seq_expr RBRACKET LESSMINUS expr
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_apply(mkexp(Pexp_ident(array_function "String" "set")),
|
1996-04-22 04:15:41 -07:00
|
|
|
[$1; $4; $7])) }
|
|
|
|
| label LESSMINUS expr
|
|
|
|
{ mkexp(Pexp_setinstvar($1, $3)) }
|
1997-05-13 11:28:25 -07:00
|
|
|
| ASSERT simple_expr %prec prec_appl
|
|
|
|
{ mkassert $2 }
|
1997-10-14 06:17:48 -07:00
|
|
|
| LAZY simple_expr %prec prec_appl
|
|
|
|
{ mklazy $2 }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
simple_expr:
|
|
|
|
val_longident
|
|
|
|
{ mkexp(Pexp_ident $1) }
|
|
|
|
| constant
|
|
|
|
{ mkexp(Pexp_constant $1) }
|
|
|
|
| constr_longident
|
1997-06-16 11:10:35 -07:00
|
|
|
{ mkexp(Pexp_construct($1, None, false)) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| LPAREN seq_expr RPAREN
|
1995-05-04 03:15:53 -07:00
|
|
|
{ $2 }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LPAREN seq_expr error
|
|
|
|
{ unclosed "(" 1 ")" 3 }
|
1997-05-12 08:10:03 -07:00
|
|
|
| BEGIN seq_expr END
|
1995-05-04 03:15:53 -07:00
|
|
|
{ $2 }
|
1997-08-22 01:55:41 -07:00
|
|
|
| BEGIN seq_expr error
|
|
|
|
{ unclosed "begin" 1 "end" 3 }
|
1997-05-12 08:10:03 -07:00
|
|
|
| LPAREN seq_expr type_constraint RPAREN
|
1996-04-22 04:15:41 -07:00
|
|
|
{ let (t, t') = $3 in mkexp(Pexp_constraint($2, t, t')) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LPAREN seq_expr type_constraint error
|
|
|
|
{ unclosed "(" 1 ")" 4 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| simple_expr DOT label_longident
|
|
|
|
{ mkexp(Pexp_field($1, $3)) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| simple_expr DOT LPAREN seq_expr RPAREN
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_apply(mkexp(Pexp_ident(array_function "Array" "get")),
|
1996-04-22 04:15:41 -07:00
|
|
|
[$1; $4])) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| simple_expr DOT LPAREN seq_expr error
|
|
|
|
{ unclosed "(" 3 ")" 5 }
|
1997-05-12 08:10:03 -07:00
|
|
|
| simple_expr DOT LBRACKET seq_expr RBRACKET
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_apply(mkexp(Pexp_ident(array_function "String" "get")),
|
1996-04-22 04:15:41 -07:00
|
|
|
[$1; $4])) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| simple_expr DOT LBRACKET seq_expr error
|
|
|
|
{ unclosed "[" 3 "]" 5 }
|
1997-05-12 08:10:03 -07:00
|
|
|
| LBRACE lbl_expr_list opt_semi RBRACE
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_record(List.rev $2)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LBRACE lbl_expr_list opt_semi error
|
|
|
|
{ unclosed "{" 1 "}" 4 }
|
1997-05-13 07:45:28 -07:00
|
|
|
| LBRACKETLESS stream_expr opt_semi GREATERRBRACKET
|
1995-11-09 03:08:48 -08:00
|
|
|
{ Pstream.cstream (List.rev $2) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LBRACKETLESS stream_expr opt_semi error
|
|
|
|
{ unclosed "[<" 1 ">]" 4 }
|
1995-11-28 07:00:53 -08:00
|
|
|
| LBRACKETLESS GREATERRBRACKET
|
1995-11-09 03:08:48 -08:00
|
|
|
{ Pstream.cstream [] }
|
1997-05-13 07:45:28 -07:00
|
|
|
| LBRACKETBAR expr_semi_list opt_semi BARRBRACKET
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_array(List.rev $2)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LBRACKETBAR expr_semi_list opt_semi error
|
|
|
|
{ unclosed "[|" 1 "|]" 4 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| LBRACKETBAR BARRBRACKET
|
|
|
|
{ mkexp(Pexp_array []) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| LBRACKET expr_semi_list opt_semi RBRACKET
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mklistexp(List.rev $2) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LBRACKET expr_semi_list opt_semi error
|
|
|
|
{ unclosed "[" 1 "]" 4 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| PREFIXOP simple_expr
|
|
|
|
{ mkexp(Pexp_apply(mkoperator $1 1, [$2])) }
|
1996-04-22 04:15:41 -07:00
|
|
|
| simple_expr SHARP label
|
|
|
|
{ mkexp(Pexp_send($1, $3)) }
|
|
|
|
| NEW class_longident
|
|
|
|
{ mkexp(Pexp_new($2)) }
|
1997-05-13 07:45:28 -07:00
|
|
|
| LBRACELESS label_expr_list opt_semi GREATERRBRACE
|
1996-04-22 04:15:41 -07:00
|
|
|
{ mkexp(Pexp_override(List.rev $2)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LBRACELESS label_expr_list opt_semi error
|
|
|
|
{ unclosed "{<" 1 ">}" 4 }
|
1996-04-22 04:15:41 -07:00
|
|
|
| LBRACELESS GREATERRBRACE
|
|
|
|
{ mkexp(Pexp_override []) }
|
1996-10-26 14:42:48 -07:00
|
|
|
| LPAREN SHARP label RPAREN
|
|
|
|
{ mkexp(Pexp_function [mkpat(Ppat_var "x"),
|
|
|
|
mkexp(Pexp_send(mkexp(Pexp_ident (Lident"x")), $3))]) }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
1995-05-04 03:15:53 -07:00
|
|
|
simple_expr_list:
|
|
|
|
simple_expr
|
|
|
|
{ [$1] }
|
|
|
|
| simple_expr_list simple_expr
|
|
|
|
{ $2 :: $1 }
|
|
|
|
;
|
|
|
|
let_bindings:
|
|
|
|
let_binding { [$1] }
|
|
|
|
| let_bindings AND let_binding { $3 :: $1 }
|
|
|
|
;
|
|
|
|
let_binding:
|
|
|
|
val_ident fun_binding
|
|
|
|
{ ({ppat_desc = Ppat_var $1; ppat_loc = rhs_loc 1}, $2) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| pattern EQUAL seq_expr %prec prec_let
|
1995-05-05 03:05:18 -07:00
|
|
|
{ ($1, $3) }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
fun_binding:
|
1997-05-12 08:10:03 -07:00
|
|
|
EQUAL seq_expr %prec prec_let
|
1995-05-04 03:15:53 -07:00
|
|
|
{ $2 }
|
1997-05-12 08:10:03 -07:00
|
|
|
| type_constraint EQUAL seq_expr %prec prec_let
|
1996-04-22 04:15:41 -07:00
|
|
|
{ let (t, t') = $1 in mkexp(Pexp_constraint($3, t, t')) }
|
1995-09-11 01:09:22 -07:00
|
|
|
| simple_pattern fun_binding
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkexp(Pexp_function[$1,$2]) }
|
|
|
|
;
|
1995-11-09 03:08:48 -08:00
|
|
|
parser_cases:
|
1995-11-10 07:14:14 -08:00
|
|
|
parser_case { [$1] }
|
|
|
|
| parser_cases BAR parser_case { $3 :: $1 }
|
1995-11-09 03:08:48 -08:00
|
|
|
;
|
|
|
|
parser_case:
|
1997-05-13 07:45:28 -07:00
|
|
|
LBRACKETLESS stream_pattern opt_semi GREATERRBRACKET opt_pat
|
|
|
|
MINUSGREATER seq_expr
|
|
|
|
{ (List.rev $2, $5, $7) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LBRACKETLESS stream_pattern opt_semi error
|
|
|
|
{ unclosed "[<" 1 ">]" 4 }
|
1997-05-12 08:10:03 -07:00
|
|
|
| LBRACKETLESS GREATERRBRACKET opt_pat MINUSGREATER seq_expr
|
1995-11-10 07:14:14 -08:00
|
|
|
{ ([], $3, $5) }
|
1995-11-09 03:08:48 -08:00
|
|
|
;
|
|
|
|
stream_pattern:
|
1995-11-10 07:14:14 -08:00
|
|
|
stream_pattern_component opt_err { [($1, $2)] }
|
|
|
|
| stream_pattern SEMI stream_pattern_component opt_err { ($3, $4) :: $1 }
|
1995-11-09 03:08:48 -08:00
|
|
|
;
|
1995-11-10 07:14:14 -08:00
|
|
|
stream_pattern_component:
|
|
|
|
QUOTE pattern
|
|
|
|
{ Pstream.Spat_term ($2, None) }
|
|
|
|
| QUOTE pattern WHEN expr %prec prec_list
|
|
|
|
{ Pstream.Spat_term ($2, Some $4) }
|
|
|
|
| pattern EQUAL expr
|
|
|
|
{ Pstream.Spat_nterm ($1, $3) }
|
|
|
|
| pattern
|
|
|
|
{ Pstream.Spat_sterm $1 }
|
1995-11-09 03:08:48 -08:00
|
|
|
;
|
1995-11-10 07:14:14 -08:00
|
|
|
opt_pat:
|
|
|
|
/* empty */ { None }
|
1996-05-09 07:27:48 -07:00
|
|
|
| simple_pattern { Some $1 }
|
1995-11-09 03:08:48 -08:00
|
|
|
;
|
1995-11-10 07:14:14 -08:00
|
|
|
opt_err:
|
|
|
|
/* empty */ { None }
|
1995-11-13 05:28:09 -08:00
|
|
|
| QUESTION expr %prec prec_list { Some $2 }
|
1995-11-09 03:08:48 -08:00
|
|
|
;
|
|
|
|
stream_expr:
|
1995-11-10 07:14:14 -08:00
|
|
|
stream_expr_component { [$1] }
|
|
|
|
| stream_expr SEMI stream_expr_component { $3 :: $1 }
|
1995-11-09 03:08:48 -08:00
|
|
|
;
|
|
|
|
stream_expr_component:
|
1995-11-10 07:14:14 -08:00
|
|
|
QUOTE expr %prec prec_list { Pstream.Sexp_term $2 }
|
|
|
|
| expr %prec prec_list { Pstream.Sexp_nterm $1 }
|
1995-11-09 03:08:48 -08:00
|
|
|
;
|
1995-05-04 03:15:53 -07:00
|
|
|
match_cases:
|
|
|
|
pattern match_action { [$1, $2] }
|
|
|
|
| match_cases BAR pattern match_action { ($3, $4) :: $1 }
|
|
|
|
;
|
|
|
|
fun_def:
|
|
|
|
match_action { $1 }
|
1995-09-11 01:09:22 -07:00
|
|
|
| simple_pattern fun_def { mkexp(Pexp_function[$1,$2]) }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
match_action:
|
1997-05-12 08:10:03 -07:00
|
|
|
MINUSGREATER seq_expr { $2 }
|
|
|
|
| WHEN seq_expr MINUSGREATER seq_expr { mkexp(Pexp_when($2, $4)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
expr_comma_list:
|
|
|
|
expr_comma_list COMMA expr { $3 :: $1 }
|
|
|
|
| expr COMMA expr { [$3; $1] }
|
|
|
|
;
|
|
|
|
lbl_expr_list:
|
|
|
|
label_longident EQUAL expr %prec prec_list
|
|
|
|
{ [$1,$3] }
|
|
|
|
| lbl_expr_list SEMI label_longident EQUAL expr %prec prec_list
|
|
|
|
{ ($3, $5) :: $1 }
|
|
|
|
;
|
1996-04-22 04:15:41 -07:00
|
|
|
label_expr_list:
|
|
|
|
label EQUAL expr %prec prec_list
|
|
|
|
{ [$1,$3] }
|
|
|
|
| label_expr_list SEMI label EQUAL expr %prec prec_list
|
|
|
|
{ ($3, $5) :: $1 }
|
|
|
|
;
|
1995-05-04 03:15:53 -07:00
|
|
|
expr_semi_list:
|
|
|
|
expr %prec prec_list { [$1] }
|
|
|
|
| expr_semi_list SEMI expr %prec prec_list { $3 :: $1 }
|
|
|
|
;
|
1996-04-22 04:15:41 -07:00
|
|
|
type_constraint:
|
1997-05-13 11:28:25 -07:00
|
|
|
COLON core_type { (Some $2, None) }
|
|
|
|
| COLON core_type COLONGREATER core_type { (Some $2, Some $4) }
|
|
|
|
| COLONGREATER core_type { (None, Some $2) }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
/* Patterns */
|
|
|
|
|
|
|
|
pattern:
|
1995-09-11 01:09:22 -07:00
|
|
|
simple_pattern
|
|
|
|
{ $1 }
|
|
|
|
| pattern AS val_ident
|
|
|
|
{ mkpat(Ppat_alias($1, $3)) }
|
|
|
|
| pattern_comma_list
|
|
|
|
{ mkpat(Ppat_tuple(List.rev $1)) }
|
|
|
|
| constr_longident pattern %prec prec_constr_appl
|
1997-06-16 11:10:35 -07:00
|
|
|
{ mkpat(Ppat_construct($1, Some $2, false)) }
|
1995-09-11 01:09:22 -07:00
|
|
|
| pattern COLONCOLON pattern
|
1997-06-16 11:10:35 -07:00
|
|
|
{ mkpat(Ppat_construct(Lident "::", Some(mkpat(Ppat_tuple[$1;$3])),
|
|
|
|
false)) }
|
1995-09-11 01:09:22 -07:00
|
|
|
| pattern BAR pattern
|
|
|
|
{ mkpat(Ppat_or($1, $3)) }
|
|
|
|
;
|
|
|
|
simple_pattern:
|
1995-05-04 03:15:53 -07:00
|
|
|
val_ident
|
|
|
|
{ mkpat(Ppat_var $1) }
|
|
|
|
| UNDERSCORE
|
|
|
|
{ mkpat(Ppat_any) }
|
|
|
|
| signed_constant
|
|
|
|
{ mkpat(Ppat_constant $1) }
|
|
|
|
| CHAR DOTDOT CHAR
|
|
|
|
{ mkrangepat $1 $3 }
|
|
|
|
| constr_longident
|
1997-06-16 11:10:35 -07:00
|
|
|
{ mkpat(Ppat_construct($1, None, false)) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| LBRACE lbl_pattern_list opt_semi RBRACE
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mkpat(Ppat_record(List.rev $2)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LBRACE lbl_pattern_list opt_semi error
|
|
|
|
{ unclosed "{" 1 "}" 4 }
|
1997-05-12 08:10:03 -07:00
|
|
|
| LBRACKET pattern_semi_list opt_semi RBRACKET
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mklistpat(List.rev $2) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LBRACKET pattern_semi_list opt_semi error
|
|
|
|
{ unclosed "{" 1 "}" 4 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| LPAREN pattern RPAREN
|
|
|
|
{ $2 }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LPAREN pattern error
|
|
|
|
{ unclosed "(" 1 ")" 3 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| LPAREN pattern COLON core_type RPAREN
|
|
|
|
{ mkpat(Ppat_constraint($2, $4)) }
|
1997-08-22 01:55:41 -07:00
|
|
|
| LPAREN pattern COLON core_type error
|
|
|
|
{ unclosed "(" 1 ")" 5 }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
1995-09-11 01:09:22 -07:00
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
pattern_comma_list:
|
|
|
|
pattern_comma_list COMMA pattern { $3 :: $1 }
|
|
|
|
| pattern COMMA pattern { [$3; $1] }
|
|
|
|
;
|
|
|
|
pattern_semi_list:
|
|
|
|
pattern { [$1] }
|
|
|
|
| pattern_semi_list SEMI pattern { $3 :: $1 }
|
|
|
|
;
|
|
|
|
lbl_pattern_list:
|
|
|
|
label_longident EQUAL pattern { [($1, $3)] }
|
|
|
|
| lbl_pattern_list SEMI label_longident EQUAL pattern { ($3, $5) :: $1 }
|
|
|
|
;
|
|
|
|
|
1995-07-25 04:38:42 -07:00
|
|
|
/* Primitive declarations */
|
|
|
|
|
|
|
|
primitive_declaration:
|
|
|
|
STRING { [$1] }
|
|
|
|
| STRING primitive_declaration { $1 :: $2 }
|
|
|
|
;
|
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
/* Class definitions */
|
|
|
|
|
|
|
|
class_list:
|
1997-05-13 11:28:25 -07:00
|
|
|
class_list AND class_def { $3 :: $1 }
|
|
|
|
| class_def { [$1] }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
class_def:
|
|
|
|
virtual_flag closed_flag
|
1997-05-11 14:48:21 -07:00
|
|
|
class_type_parameters LIDENT simple_pattern_list self self_type EQUAL
|
1996-04-25 03:35:04 -07:00
|
|
|
constraints class_fields
|
1997-05-11 14:48:21 -07:00
|
|
|
{ { pcl_name = $4; pcl_param = $3; pcl_args = List.rev $5;
|
|
|
|
pcl_self = $6; pcl_self_ty = $7; pcl_cstr = List.rev $9;
|
|
|
|
pcl_field = List.rev $10;
|
|
|
|
pcl_kind = $1; pcl_closed = $2;
|
|
|
|
pcl_loc = symbol_loc () } }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
1996-05-26 06:42:34 -07:00
|
|
|
class_type_parameters:
|
1997-05-13 11:28:25 -07:00
|
|
|
type_parameters { $1, symbol_loc () }
|
1996-05-26 06:42:34 -07:00
|
|
|
;
|
1996-04-22 04:15:41 -07:00
|
|
|
simple_pattern_list:
|
1997-05-13 11:28:25 -07:00
|
|
|
simple_pattern { [$1] }
|
|
|
|
| simple_pattern_list simple_pattern { $2::$1 }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
self:
|
1997-05-13 11:28:25 -07:00
|
|
|
AS LIDENT { Some $2 }
|
|
|
|
| /* empty */ { None }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
class_fields:
|
1997-05-13 11:28:25 -07:00
|
|
|
/* empty */ { [] }
|
|
|
|
| class_fields INHERIT ancestor { Pcf_inher $3 :: $1 }
|
|
|
|
| class_fields VAL value { Pcf_val $3 :: $1 }
|
|
|
|
| class_fields virtual_method { Pcf_virt $2 :: $1 }
|
|
|
|
| class_fields method_def { Pcf_meth $2 :: $1 }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
ancestor:
|
|
|
|
LPAREN core_type_comma_list RPAREN class_longident simple_expr_list
|
1997-05-11 14:48:21 -07:00
|
|
|
self
|
1996-04-22 04:15:41 -07:00
|
|
|
{ $4, List.rev $2, List.rev $5, $6, symbol_loc () }
|
|
|
|
| LPAREN core_type RPAREN class_longident simple_expr_list self
|
1997-05-11 14:48:21 -07:00
|
|
|
{ $4, [$2], List.rev $5, $6, symbol_loc () }
|
1996-04-22 04:15:41 -07:00
|
|
|
| class_longident simple_expr_list self
|
1997-05-11 14:48:21 -07:00
|
|
|
{ $1, [], List.rev $2, $3, symbol_loc () }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
value:
|
1997-05-12 08:10:03 -07:00
|
|
|
private_flag mutable_flag label EQUAL seq_expr
|
1997-05-11 14:48:21 -07:00
|
|
|
{ $3, $1, $2, Some $5, symbol_loc () }
|
1996-04-22 04:15:41 -07:00
|
|
|
| private_flag mutable_flag label
|
1997-05-11 14:48:21 -07:00
|
|
|
{ $3, $1, $2, None, symbol_loc () }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
1997-05-11 14:48:21 -07:00
|
|
|
virtual_method:
|
|
|
|
private_flag VIRTUAL label COLON core_type
|
|
|
|
{ $3, $1, $5, symbol_loc () }
|
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
method_def :
|
1997-05-11 14:48:21 -07:00
|
|
|
private_flag METHOD label fun_binding
|
|
|
|
{ $3, $1, $4, symbol_loc () }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
|
|
|
|
/* Class type definitions */
|
|
|
|
|
|
|
|
class_type_list:
|
1997-05-13 11:28:25 -07:00
|
|
|
class_type_list AND class_type { $3 :: $1 }
|
|
|
|
| class_type { [$1] }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
class_type:
|
1996-05-26 06:42:34 -07:00
|
|
|
virtual_flag closed_flag class_type_parameters LIDENT type_list
|
|
|
|
self_type
|
1997-05-11 14:48:21 -07:00
|
|
|
EQUAL
|
1996-04-25 03:35:04 -07:00
|
|
|
constraints class_type_fields
|
1997-05-11 14:48:21 -07:00
|
|
|
{ { pcty_name = $4; pcty_param = $3; pcty_args = $5;
|
|
|
|
pcty_self = $6; pcty_cstr = List.rev $8;
|
1996-04-25 03:35:04 -07:00
|
|
|
pcty_field = List.rev $9;
|
1997-05-11 14:48:21 -07:00
|
|
|
pcty_kind = $1; pcty_closed = $2;
|
|
|
|
pcty_loc = symbol_loc () } }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
type_list:
|
1997-05-13 11:28:25 -07:00
|
|
|
LPAREN core_type RPAREN type_list { $2 :: $4 }
|
|
|
|
| LPAREN core_type RPAREN { [$2] }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
self_type:
|
1997-05-13 11:28:25 -07:00
|
|
|
COLON type_parameter { Some $2 }
|
|
|
|
| /* empty */ { None }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
constraints:
|
1997-05-13 11:28:25 -07:00
|
|
|
constraints CONSTRAINT constrain { $3 :: $1 }
|
|
|
|
| /* empty */ { [] }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
constrain:
|
1997-05-13 11:28:25 -07:00
|
|
|
type_parameter EQUAL core_type { $1, $3, symbol_loc () }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
class_type_fields:
|
1997-05-13 11:28:25 -07:00
|
|
|
/* empty */ { [] }
|
|
|
|
| class_type_fields INHERIT ancestor_type { Pctf_inher $3 :: $1 }
|
|
|
|
| class_type_fields VAL value_type { Pctf_val $3 :: $1 }
|
|
|
|
| class_type_fields virtual_method { Pctf_virt $2 :: $1 }
|
|
|
|
| class_type_fields method_type { Pctf_meth $2 :: $1 }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
ancestor_type:
|
|
|
|
LPAREN core_type_comma_list RPAREN class_longident
|
|
|
|
{ $4, List.rev $2, symbol_loc () }
|
|
|
|
| LPAREN core_type RPAREN class_longident
|
1997-05-11 14:48:21 -07:00
|
|
|
{ $4, [$2], symbol_loc () }
|
1996-04-22 04:15:41 -07:00
|
|
|
| class_longident
|
1997-05-11 14:48:21 -07:00
|
|
|
{ $1, [], symbol_loc () }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
value_type :
|
|
|
|
private_flag mutable_flag label COLON core_type
|
1997-05-11 14:48:21 -07:00
|
|
|
{ $3, $1, $2, Some $5, symbol_loc () }
|
1996-04-22 04:15:41 -07:00
|
|
|
| private_flag mutable_flag label
|
1997-05-11 14:48:21 -07:00
|
|
|
{ $3, $1, $2, None, symbol_loc () }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
method_type :
|
1997-05-11 14:48:21 -07:00
|
|
|
private_flag METHOD label COLON core_type
|
|
|
|
{ $3, $1, $5, symbol_loc () }
|
|
|
|
| private_flag METHOD label
|
|
|
|
{ $3, $1, mktyp(Ptyp_any), symbol_loc () }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
/* Type declarations */
|
|
|
|
|
|
|
|
type_declarations:
|
|
|
|
type_declaration { [$1] }
|
|
|
|
| type_declarations AND type_declaration { $3 :: $1 }
|
|
|
|
;
|
|
|
|
type_declaration:
|
1997-02-20 12:39:02 -08:00
|
|
|
type_parameters LIDENT type_kind constraints
|
1995-09-26 13:23:29 -07:00
|
|
|
{ let (kind, manifest) = $3 in
|
1997-02-20 12:39:02 -08:00
|
|
|
($2, {ptype_params = $1;
|
|
|
|
ptype_cstrs = List.rev $4;
|
1995-09-26 13:23:29 -07:00
|
|
|
ptype_kind = kind;
|
|
|
|
ptype_manifest = manifest;
|
|
|
|
ptype_loc = symbol_loc()}) }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
type_kind:
|
|
|
|
/*empty*/
|
1995-09-26 13:23:29 -07:00
|
|
|
{ (Ptype_abstract, None) }
|
1995-09-27 03:47:51 -07:00
|
|
|
| EQUAL core_type %prec prec_type_def
|
1995-09-26 13:23:29 -07:00
|
|
|
{ (Ptype_abstract, Some $2) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| EQUAL constructor_declarations
|
1995-09-26 13:23:29 -07:00
|
|
|
{ (Ptype_variant(List.rev $2), None) }
|
1995-10-18 08:32:39 -07:00
|
|
|
| EQUAL BAR constructor_declarations
|
|
|
|
{ (Ptype_variant(List.rev $3), None) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| EQUAL LBRACE label_declarations opt_semi RBRACE
|
1995-09-26 13:23:29 -07:00
|
|
|
{ (Ptype_record(List.rev $3), None) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| EQUAL core_type EQUAL opt_bar constructor_declarations %prec prec_type_def
|
1995-10-18 08:32:39 -07:00
|
|
|
{ (Ptype_variant(List.rev $5), Some $2) }
|
1997-05-12 08:10:03 -07:00
|
|
|
| EQUAL core_type EQUAL LBRACE label_declarations opt_semi RBRACE
|
|
|
|
%prec prec_type_def
|
1995-09-26 13:23:29 -07:00
|
|
|
{ (Ptype_record(List.rev $5), Some $2) }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
type_parameters:
|
|
|
|
/*empty*/ { [] }
|
|
|
|
| type_parameter { [$1] }
|
|
|
|
| LPAREN type_parameter_list RPAREN { List.rev $2 }
|
|
|
|
;
|
|
|
|
type_parameter:
|
|
|
|
QUOTE ident { $2 }
|
|
|
|
;
|
|
|
|
type_parameter_list:
|
|
|
|
type_parameter { [$1] }
|
|
|
|
| type_parameter_list COMMA type_parameter { $3 :: $1 }
|
|
|
|
;
|
|
|
|
constructor_declarations:
|
|
|
|
constructor_declaration { [$1] }
|
|
|
|
| constructor_declarations BAR constructor_declaration { $3 :: $1 }
|
|
|
|
;
|
|
|
|
constructor_declaration:
|
|
|
|
constr_ident constructor_arguments { ($1, $2) }
|
|
|
|
;
|
|
|
|
constructor_arguments:
|
|
|
|
/*empty*/ { [] }
|
|
|
|
| OF core_type_list { List.rev $2 }
|
|
|
|
;
|
|
|
|
label_declarations:
|
|
|
|
label_declaration { [$1] }
|
|
|
|
| label_declarations SEMI label_declaration { $3 :: $1 }
|
|
|
|
;
|
|
|
|
label_declaration:
|
|
|
|
mutable_flag LIDENT COLON core_type { ($2, $1, $4) }
|
|
|
|
;
|
|
|
|
|
1995-09-28 03:41:50 -07:00
|
|
|
/* "with" constraints (additional type equations over signature components) */
|
|
|
|
|
|
|
|
with_constraints:
|
|
|
|
with_constraint { [$1] }
|
|
|
|
| with_constraints AND with_constraint { $3 :: $1 }
|
|
|
|
;
|
|
|
|
with_constraint:
|
1997-02-20 12:39:02 -08:00
|
|
|
TYPE type_parameters label_longident EQUAL core_type constraints
|
1995-10-01 06:39:43 -07:00
|
|
|
{ ($3, Pwith_type {ptype_params = $2;
|
1997-02-20 12:39:02 -08:00
|
|
|
ptype_cstrs = List.rev $6;
|
1995-10-01 06:39:43 -07:00
|
|
|
ptype_kind = Ptype_abstract;
|
|
|
|
ptype_manifest = Some $5;
|
|
|
|
ptype_loc = symbol_loc()}) }
|
1995-09-28 03:41:50 -07:00
|
|
|
/* used label_longident instead of type_longident to disallow
|
|
|
|
functor applications in type path */
|
1995-10-01 06:39:43 -07:00
|
|
|
| MODULE mod_longident EQUAL mod_ext_longident
|
|
|
|
{ ($2, Pwith_module $4) }
|
1995-09-28 03:41:50 -07:00
|
|
|
;
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
/* Core types */
|
|
|
|
|
|
|
|
core_type:
|
|
|
|
simple_core_type
|
|
|
|
{ $1 }
|
|
|
|
| core_type MINUSGREATER core_type %prec prec_type_arrow
|
|
|
|
{ mktyp(Ptyp_arrow($1, $3)) }
|
|
|
|
| core_type_tuple
|
|
|
|
{ mktyp(Ptyp_tuple(List.rev $1)) }
|
1997-03-07 14:26:29 -08:00
|
|
|
| core_type AS type_parameter
|
|
|
|
{ mktyp(Ptyp_alias($1, $3)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
1996-04-22 04:15:41 -07:00
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
simple_core_type:
|
|
|
|
QUOTE ident
|
|
|
|
{ mktyp(Ptyp_var $2) }
|
1997-02-11 10:24:47 -08:00
|
|
|
| UNDERSCORE
|
|
|
|
{ mktyp(Ptyp_any) }
|
1997-03-07 14:26:29 -08:00
|
|
|
| type_longident
|
|
|
|
{ mktyp(Ptyp_constr($1, [])) }
|
|
|
|
| simple_core_type type_longident %prec prec_constr_appl
|
|
|
|
{ mktyp(Ptyp_constr($2, [$1])) }
|
|
|
|
| LPAREN core_type_comma_list RPAREN type_longident
|
1996-04-22 04:15:41 -07:00
|
|
|
%prec prec_constr_appl
|
1997-03-07 14:26:29 -08:00
|
|
|
{ mktyp(Ptyp_constr($4, List.rev $2)) }
|
1995-05-04 03:15:53 -07:00
|
|
|
| LPAREN core_type RPAREN
|
|
|
|
{ $2 }
|
1997-03-07 14:26:29 -08:00
|
|
|
| LESS meth_list GREATER
|
|
|
|
{ mktyp(Ptyp_object $2) }
|
|
|
|
| LESS GREATER
|
|
|
|
{ mktyp(Ptyp_object []) }
|
|
|
|
| SHARP class_longident
|
|
|
|
{ mktyp(Ptyp_class($2, [])) }
|
|
|
|
| simple_core_type SHARP class_longident %prec prec_constr_appl
|
|
|
|
{ mktyp(Ptyp_class($3, [$1])) }
|
|
|
|
| LPAREN core_type_comma_list RPAREN SHARP class_longident
|
1996-04-22 04:15:41 -07:00
|
|
|
%prec prec_constr_appl
|
1997-03-07 14:26:29 -08:00
|
|
|
{ mktyp(Ptyp_class($5, List.rev $2)) }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
1995-05-04 03:15:53 -07:00
|
|
|
core_type_tuple:
|
1997-05-13 07:45:28 -07:00
|
|
|
simple_core_type STAR simple_core_type { [$3; $1] }
|
|
|
|
| core_type_tuple STAR simple_core_type { $3 :: $1 }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
core_type_comma_list:
|
|
|
|
core_type COMMA core_type { [$3; $1] }
|
|
|
|
| core_type_comma_list COMMA core_type { $3 :: $1 }
|
|
|
|
;
|
|
|
|
core_type_list:
|
|
|
|
simple_core_type { [$1] }
|
|
|
|
| core_type_list STAR simple_core_type { $3 :: $1 }
|
|
|
|
;
|
1996-04-22 04:15:41 -07:00
|
|
|
meth_list:
|
1997-05-13 07:45:28 -07:00
|
|
|
field SEMI meth_list { $1 :: $3 }
|
|
|
|
| field opt_semi { [$1] }
|
|
|
|
| DOTDOT { [mkfield Pfield_var] }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
field:
|
1997-05-13 07:45:28 -07:00
|
|
|
label COLON core_type { mkfield(Pfield($1, $3)) }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
label:
|
1997-05-13 07:45:28 -07:00
|
|
|
LIDENT { $1 }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
/* Constants */
|
|
|
|
|
|
|
|
constant:
|
|
|
|
INT { Const_int $1 }
|
|
|
|
| CHAR { Const_char $1 }
|
|
|
|
| STRING { Const_string $1 }
|
|
|
|
| FLOAT { Const_float $1 }
|
|
|
|
;
|
|
|
|
signed_constant:
|
|
|
|
constant { $1 }
|
|
|
|
| SUBTRACTIVE INT { Const_int(- $2) }
|
|
|
|
| SUBTRACTIVE FLOAT { Const_float("-" ^ $2) }
|
|
|
|
;
|
|
|
|
/* Identifiers and long identifiers */
|
|
|
|
|
|
|
|
ident:
|
|
|
|
UIDENT { $1 }
|
|
|
|
| LIDENT { $1 }
|
|
|
|
;
|
|
|
|
val_ident:
|
|
|
|
LIDENT { $1 }
|
|
|
|
| LPAREN operator RPAREN { $2 }
|
|
|
|
;
|
|
|
|
operator:
|
|
|
|
PREFIXOP { $1 }
|
1996-04-30 07:53:58 -07:00
|
|
|
| INFIXOP0 { $1 }
|
1995-05-04 03:15:53 -07:00
|
|
|
| INFIXOP1 { $1 }
|
|
|
|
| INFIXOP2 { $1 }
|
|
|
|
| INFIXOP3 { $1 }
|
|
|
|
| INFIXOP4 { $1 }
|
|
|
|
| SUBTRACTIVE { $1 }
|
|
|
|
| STAR { "*" }
|
|
|
|
| EQUAL { "=" }
|
1996-04-30 07:53:58 -07:00
|
|
|
| LESS { "<" }
|
|
|
|
| GREATER { ">" }
|
1995-05-04 03:15:53 -07:00
|
|
|
| OR { "or" }
|
1995-12-15 02:20:24 -08:00
|
|
|
| BARBAR { "||" }
|
1995-05-04 03:15:53 -07:00
|
|
|
| AMPERSAND { "&" }
|
1995-12-15 02:20:24 -08:00
|
|
|
| AMPERAMPER { "&&" }
|
1995-05-04 03:15:53 -07:00
|
|
|
| COLONEQUAL { ":=" }
|
|
|
|
;
|
|
|
|
constr_ident:
|
|
|
|
UIDENT { $1 }
|
|
|
|
| LBRACKET RBRACKET { "[]" }
|
|
|
|
| LPAREN RPAREN { "()" }
|
|
|
|
| COLONCOLON { "::" }
|
|
|
|
| FALSE { "false" }
|
|
|
|
| TRUE { "true" }
|
|
|
|
;
|
|
|
|
|
|
|
|
val_longident:
|
|
|
|
val_ident { Lident $1 }
|
|
|
|
| mod_longident DOT val_ident { Ldot($1, $3) }
|
|
|
|
;
|
|
|
|
constr_longident:
|
|
|
|
mod_longident { $1 }
|
|
|
|
| LBRACKET RBRACKET { Lident "[]" }
|
|
|
|
| LPAREN RPAREN { Lident "()" }
|
|
|
|
| FALSE { Lident "false" }
|
|
|
|
| TRUE { Lident "true" }
|
|
|
|
;
|
|
|
|
label_longident:
|
|
|
|
LIDENT { Lident $1 }
|
|
|
|
| mod_longident DOT LIDENT { Ldot($1, $3) }
|
|
|
|
;
|
|
|
|
type_longident:
|
|
|
|
LIDENT { Lident $1 }
|
1995-08-23 04:55:54 -07:00
|
|
|
| mod_ext_longident DOT LIDENT { Ldot($1, $3) }
|
1995-05-04 03:15:53 -07:00
|
|
|
;
|
|
|
|
mod_longident:
|
|
|
|
UIDENT { Lident $1 }
|
|
|
|
| mod_longident DOT UIDENT { Ldot($1, $3) }
|
|
|
|
;
|
1995-08-23 04:55:54 -07:00
|
|
|
mod_ext_longident:
|
|
|
|
UIDENT { Lident $1 }
|
|
|
|
| mod_ext_longident DOT UIDENT { Ldot($1, $3) }
|
|
|
|
| mod_ext_longident LPAREN mod_ext_longident RPAREN { Lapply($1, $3) }
|
|
|
|
;
|
1995-05-04 03:15:53 -07:00
|
|
|
mty_longident:
|
|
|
|
ident { Lident $1 }
|
1995-08-23 04:55:54 -07:00
|
|
|
| mod_ext_longident DOT ident { Ldot($1, $3) }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
class_longident:
|
|
|
|
LIDENT { Lident $1 }
|
1997-05-11 14:48:21 -07:00
|
|
|
| mod_longident DOT LIDENT { Ldot($1, $3) }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1995-11-01 10:12:24 -08:00
|
|
|
/* Toplevel directives */
|
|
|
|
|
|
|
|
toplevel_directive:
|
|
|
|
SHARP ident { Ptop_dir($2, Pdir_none) }
|
|
|
|
| SHARP ident STRING { Ptop_dir($2, Pdir_string $3) }
|
|
|
|
| SHARP ident INT { Ptop_dir($2, Pdir_int $3) }
|
|
|
|
| SHARP ident val_longident { Ptop_dir($2, Pdir_ident $3) }
|
|
|
|
;
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
/* Miscellaneous */
|
|
|
|
|
|
|
|
rec_flag:
|
|
|
|
/* empty */ { Nonrecursive }
|
|
|
|
| REC { Recursive }
|
|
|
|
;
|
|
|
|
direction_flag:
|
|
|
|
TO { Upto }
|
|
|
|
| DOWNTO { Downto }
|
|
|
|
;
|
1996-04-22 04:15:41 -07:00
|
|
|
private_flag:
|
1997-05-11 14:48:21 -07:00
|
|
|
/* empty */ { Public }
|
|
|
|
| PRIVATE { Private }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
1995-05-04 03:15:53 -07:00
|
|
|
mutable_flag:
|
|
|
|
/* empty */ { Immutable }
|
|
|
|
| MUTABLE { Mutable }
|
|
|
|
;
|
1996-04-22 04:15:41 -07:00
|
|
|
virtual_flag:
|
1997-05-11 14:48:21 -07:00
|
|
|
/* empty */ { Concrete }
|
|
|
|
| VIRTUAL { Virtual }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
|
|
|
closed_flag:
|
1997-05-11 14:48:21 -07:00
|
|
|
/* empty */ { Open }
|
|
|
|
| CLOSED { Closed }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
1995-10-18 08:32:39 -07:00
|
|
|
opt_bar:
|
1997-05-11 14:48:21 -07:00
|
|
|
/* empty */ { () }
|
|
|
|
| BAR { () }
|
1996-04-22 04:15:41 -07:00
|
|
|
;
|
1997-05-12 08:10:03 -07:00
|
|
|
opt_semi:
|
|
|
|
| /* empty */ { () }
|
|
|
|
| SEMI { () }
|
|
|
|
;
|
1995-05-04 03:15:53 -07:00
|
|
|
%%
|