Home | History | Annotate | Download | only in Chapter6

Lines Matching defs:For

5 (* expr - Base type for all expression nodes. *)
7 (* variant for numeric literals like "1.0". *)
10 (* variant for referencing a variable, like "a". *)
13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
19 (* variant for function calls. *)
22 (* variant for if/then/else. *)
25 (* variant for for/in. *)
26 | For of string * expr * expr * expr option * expr
28 (* proto - This type represents the "prototype" for a function, which captures