package org.nwapw.abacus.tree; /** * An abstract class that represents an expression tree node. */ public abstract class TreeNode { /** * The function that reduces a tree to a single vale. * * @param reducer the reducer used to reduce the tree. * @param the type the reducer produces. * @return the result of the reduction, or null on error. */ public abstract T reduce(Reducer reducer); }