summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSon Ho2021-11-18 14:57:01 +0100
committerSon Ho2021-11-18 14:57:01 +0100
commit20ddbb9633ce9273ef6bf6e7e0381ddaef11b0fc (patch)
tree5110d38534949efea60b28c2195844a5f48cb1e2
parent5ff58d77f3aa64d05108919326bbd9d3a5e99bac (diff)
Cleanup more
Diffstat (limited to '')
-rw-r--r--src/main.ml14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main.ml b/src/main.ml
index 436355bf..b82485b2 100644
--- a/src/main.ml
+++ b/src/main.ml
@@ -1,19 +1,5 @@
-open Types
-open CfimAst
open CfimOfJson
-type declaration =
- | Type of TypeDefId.id
- | Fun of FunDefId.id
- | RecTypes of TypeDefId.id list
- | RecFuns of FunDefId.id list
-
-type rust_module = {
- declarations : declaration list;
- types : type_def TypeDefId.vector;
- functions : fun_def FunDefId.vector;
-}
-
let () =
let json = Yojson.Basic.from_file "../charon/charon/tests/test1.cfim" in
match cfim_module_of_json json with