Implement associativity storage for operators.

This commit is contained in:
2018-02-17 16:00:39 -08:00
parent bf3c90bed2
commit b1aa2a4bf5
3 changed files with 11 additions and 6 deletions

View File

@@ -17,6 +17,10 @@ struct libab_operator_s {
* The precedence of the operator.
*/
int precedence;
/**
* The associativity of the operator.
*/
int associativity;
/**
* The functionality of the operator.
*/