Indentation
This commit is contained in:
parent
fc7317b2d0
commit
5b7784184d
14
structs.ml
14
structs.ml
@ -11,16 +11,16 @@ let tvarRegex = Str.regexp "^([A-Z]+)([0-9]*)$";;
|
|||||||
|
|
||||||
(* Type complexe *)
|
(* Type complexe *)
|
||||||
type ty =
|
type ty =
|
||||||
| TSimple of var_type
|
| TSimple of var_type
|
||||||
| TImpl of ty * ty
|
| TImpl of ty * ty
|
||||||
| TFalse;;
|
| TFalse;;
|
||||||
|
|
||||||
(* λ-terme *)
|
(* λ-terme *)
|
||||||
type lam =
|
type lam =
|
||||||
| LFun of var_lambda * ty * lam
|
| LFun of var_lambda * ty * lam
|
||||||
| LApp of lam * lam
|
| LApp of lam * lam
|
||||||
| LVar of var_lambda
|
| LVar of var_lambda
|
||||||
| LExf of lam * ty;;
|
| LExf of lam * ty;;
|
||||||
|
|
||||||
(* Environnement de typage *)
|
(* Environnement de typage *)
|
||||||
type gam = (var_type * ty) list;;
|
type gam = (var_type * ty) list;;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user