1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-06-25 12:16:23 -07:00
Abacus/src/org/nwapw/abacus/tree/OperatorAssociativity.java

9 lines
149 B
Java

package org.nwapw.abacus.tree;
/**
* Enum to represent the associativity of an operator.
*/
public enum OperatorAssociativity {
LEFT, RIGHT
}