ligo/src/main/compile/of_mini_c.ml

13 lines
467 B
OCaml
Raw Normal View History

2019-09-10 15:19:15 +02:00
open Trace
open Mini_c
open Tezos_utils
let compile_value : value -> type_value -> Michelson.t result =
Compiler.Program.translate_value
let compile_expression : expression -> Michelson.t result = fun e ->
Compiler.Program.translate_expression e Compiler.Environment.empty
let compile_function : anon_function -> type_value -> type_value -> Compiler.Program.compiled_program result = fun f in_ty out_ty ->
Compiler.Program.translate_entry f (in_ty , out_ty)