-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathag_biniou.ml
55 lines (44 loc) · 1.05 KB
/
ag_biniou.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
(*
Mapping from ATD to biniou
*)
type biniou_int =
[ `Svint | `Uvint | `Int8 | `Int16 | `Int32 | `Int64 ]
type biniou_list = [ `Array | `Table ]
type biniou_field = { biniou_unwrapped : bool }
type biniou_repr =
[
| `Unit
| `Bool
| `Int of biniou_int
| `Float
| `String
| `Sum
| `Record
| `Tuple
| `List of biniou_list
| `Option
| `Shared
| `External
| `Cell
| `Field of biniou_field
| `Variant
| `Def
]
let biniou_int_of_string s : biniou_int option =
match s with
"svint" -> Some `Svint
| "uvint" -> Some `Uvint
| "int8" -> Some `Int8
| "int16" -> Some `Int16
| "int32" -> Some `Int32
| "int64" -> Some `Int64
| _ -> None
let biniou_list_of_string s : biniou_list option =
match s with
"array" -> Some `Array
| "table" -> Some `Table
| _ -> None
let get_biniou_int an =
Atd_annot.get_field biniou_int_of_string `Svint ["biniou"] "repr" an
let get_biniou_list an =
Atd_annot.get_field biniou_list_of_string `Array ["biniou"] "repr" an