Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. assign_op: ASSIGN | ASSIGN_ADD | ASSIGN_SUBTRACT;
  2. cond_op: AND | OR;
  3. eq_op: EQUALS | NOT_EQUALS;
  4. rel_op: LESS_THAN | LESS_THAN_OR_EQUAL_TO | GREATER_THAN_OR_EQUAL_TO | GREATER_THAN;
  5. arith_op: MULTIPLY | DIVIDE | MOD | ADD | SUBTRACT;
  6. bin_op: arith_op | rel_op | eq_op | cond_op;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement