diff --git a/core/src/main/kotlin/org/nwapw/abacus/function/TreeValueOperator.kt b/core/src/main/kotlin/org/nwapw/abacus/function/TreeValueOperator.kt index 1087532..7c4eea7 100644 --- a/core/src/main/kotlin/org/nwapw/abacus/function/TreeValueOperator.kt +++ b/core/src/main/kotlin/org/nwapw/abacus/function/TreeValueOperator.kt @@ -13,4 +13,6 @@ import org.nwapw.abacus.tree.TreeNode * @param precedence the precedence of the operator. */ abstract class TreeValueOperator(associativity: OperatorAssociativity, type: OperatorType, - precedence: Int) : ReducerApplicable \ No newline at end of file + precedence: Int) : + Operator(associativity, type, precedence), + ReducerApplicable \ No newline at end of file