e0/lib/lowering.ml

12 lines
214 B
OCaml
Raw Normal View History

open Ast
open Ir
(* Processing state for this particular scope *)
type state =
{ parent : state option
}
let lower (func:func) : (irexpr list, unit) result =
let { name = _; body = _ } = func in
Error ()