Reformatted constant in AST2 to match that of Typecheck2

This commit is contained in:
Georges Dupéron 2019-03-14 18:45:38 +01:00
parent ea0198388e
commit 3bf5ad2819

View File

@ -79,8 +79,12 @@ module O = struct
| MapLookup
and constant =
Unit | Int of Z.t | String of string | Bytes of MBytes.t | False | True
| Null of type_expr | EmptySet of type_expr | CNone of type_expr
Unit
| Int of Z.t | String of string | Bytes of MBytes.t
| False | True
| Null of type_expr
| EmptySet of type_expr
| CNone of type_expr
and instr =
Assignment of { name: var_name; value: expr }