* parser-defs.h: Add comment about unary postfix operators.
This commit is contained in:
parent
576f97700b
commit
ddf54546c9
2 changed files with 5 additions and 1 deletions
|
@ -180,6 +180,9 @@ struct op_print
|
|||
enum exp_opcode opcode;
|
||||
/* Precedence of operator. These values are used only by comparisons. */
|
||||
enum precedence precedence;
|
||||
|
||||
/* For a binary operator: 1 iff right associate.
|
||||
For a unary operator: 1 iff postfix. */
|
||||
int right_assoc;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue