Home | History | Annotate | Download | only in Chapter5

Lines Matching refs:expr

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