mirror of
https://github.com/LucasVbr/postscript-compiler.git
synced 2026-05-13 17:22:00 +00:00
16 lines
229 B
OCaml
16 lines
229 B
OCaml
(* Datatypes for Postscript instructions *)
|
|
|
|
|
|
open Lang
|
|
|
|
type instr =
|
|
IVal of value
|
|
| IVar of int
|
|
| IOper of string
|
|
| IBloc of instr
|
|
| ISeq of instr list
|
|
| ILoop of instr
|
|
| IDef of fname * instr
|
|
|
|
let string_of_instr instr = ""
|