Home | History | Annotate | Download | only in Chapter6

Lines Matching refs:operator

5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
89 (* If this is a unary operator, read it. *)
93 (* If the current token is not an operator, it must be a primary expr. *)
110 (* Parse the unary expression after the binary operator. *)
117 (* If BinOp binds less tightly with rhs than the operator after
118 * rhs, let the pending operator take rhs as its lhs. *)
162 'Token.Kwd op ?? "expected an operator";
171 (* Verify right number of arguments for operator. *)
173 then raise (Stream.Error "invalid number of operands for operator")