blob: dfa4025c5ab031f27930834915f46925cf1df24c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
open CfimOfJson
open Logging
open Print
module T = Types
module A = CfimAst
(*let print_type_definition =*)
(* This is necessary to have a backtrace when raising exceptions - for some
* reason, the -g option doesn't work *)
let () = Printexc.record_backtrace true
let () =
let json = Yojson.Basic.from_file "../charon/charon/tests/test1.cfim" in
match cfim_module_of_json json with
| Error s -> Printf.printf "error: %s\n" s
| Ok _ast -> print_endline "Ok"
|