summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSon Ho2021-11-29 21:25:45 +0100
committerSon Ho2021-11-29 21:25:45 +0100
commit39129adbf858b533127b19e46d6e33a29e5858b2 (patch)
treee3f4cde3825d286791e93dd867a714f0a0e1d61c /src
parent2b7145a8c7678d9b5c3a3d872434ab1ded233e8c (diff)
Start cleaning up CfimOfJson
Diffstat (limited to 'src')
-rw-r--r--src/CfimOfJson.ml16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/CfimOfJson.ml b/src/CfimOfJson.ml
index 55362bda..8caa6c5a 100644
--- a/src/CfimOfJson.ml
+++ b/src/CfimOfJson.ml
@@ -13,7 +13,7 @@ open Identifiers
open Types
open OfJsonBasic
open Scalars
-open Modules
+module M = Modules
let name_of_json (js : json) : (name, string) result =
combine_error_msgs js "name_of_json" (list_of_json string_of_json js)
@@ -580,24 +580,24 @@ let fun_def_of_json (js : json) : (fun_def, string) result =
Ok { def_id; name; signature; divergent; arg_count; locals; body }
| _ -> Error "")
-let declaration_of_json (js : json) : (declaration, string) result =
+let declaration_of_json (js : json) : (M.declaration, string) result =
combine_error_msgs js "declaration_of_json"
(match js with
| `Assoc [ ("Type", id) ] ->
let* id = TypeDefId.id_of_json id in
- Ok (Type id)
+ Ok (M.Type id)
| `Assoc [ ("Fun", id) ] ->
let* id = FunDefId.id_of_json id in
- Ok (Fun id)
+ Ok (M.Fun id)
| `Assoc [ ("RecTypes", ids) ] ->
let* ids = list_of_json TypeDefId.id_of_json ids in
- Ok (RecTypes ids)
+ Ok (M.RecTypes ids)
| `Assoc [ ("RecFuns", ids) ] ->
let* ids = list_of_json FunDefId.id_of_json ids in
- Ok (RecFuns ids)
+ Ok (M.RecFuns ids)
| _ -> Error "")
-let cfim_module_of_json (js : json) : (cfim_module, string) result =
+let cfim_module_of_json (js : json) : (M.cfim_module, string) result =
combine_error_msgs js "cfim_module_of_json"
(match js with
| `Assoc
@@ -609,5 +609,5 @@ let cfim_module_of_json (js : json) : (cfim_module, string) result =
let* declarations = list_of_json declaration_of_json declarations in
let* types = TypeDefId.vector_of_json type_def_of_json types in
let* functions = FunDefId.vector_of_json fun_def_of_json functions in
- Ok { declarations; types; functions }
+ Ok { M.declarations; types; functions }
| _ -> Error "")