Home | History | Annotate | Download | only in Chapter6

Lines Matching refs:expr

5 (* expr - Base type for all expression nodes. *)
6 type expr =
14 | Unary of char * expr
17 | Binary of char * expr * expr
20 | Call of string * expr array
23 | If of expr * expr * expr
26 | For of string * expr * expr * expr option * expr
36 type func = Function of proto * expr