e0/lib/lowering.ml
Michael Zhang 4ea1071ca1
a
2022-03-23 01:12:37 -05:00

10 lines
212 B
OCaml

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 ()