mirror of
https://github.com/LucasVbr/postscript-compiler.git
synced 2026-05-13 17:22:00 +00:00
16 lines
330 B
OCaml
16 lines
330 B
OCaml
(* Compilation functions *)
|
|
|
|
open Lang
|
|
open Instrs
|
|
open Typing
|
|
|
|
(* ************************************************************ *)
|
|
(* **** Compilation of expressions / statements **** *)
|
|
(* ************************************************************ *)
|
|
|
|
|
|
let gen_prog (Prog (fundecls, fundefns)) =
|
|
ISeq []
|
|
|
|
|