From b98b08b872cf9f70c3e0131979f61fab31b324c9 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Fri, 25 Aug 2017 19:49:15 -0700 Subject: [PATCH] Make sure TreeValueOperator extends Operator. --- .../kotlin/org/nwapw/abacus/function/TreeValueOperator.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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